 body {
            background-color: #0074b6;
        }

        .hero {
            border-radius: 20px;
            overflow: hidden;
        }

        .splide__slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        .sobre {
            margin-top: 2em;
        }

        #texto-sobre {
            padding-top: 4em;
        }

        .sobre p {
            font-size: 20px;
            color: #ffffff;
        }

        .sobre img {
            width: 100%;
            border-radius: 10px
        }

        .btn-primary-custom {
            background-color: #f4b000;
            border: none;
            padding: 15px 30px;
            font-size: 20px;
            border-radius: 10px;
            transition: 0.3s;
        }

        .btn-primary-custom:hover {
            background-color: #d89900;
        }

        .beneficio-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 0 15px rgba(0,0,0,.2);
            transition: .3s;
        }

        .beneficio-card:hover {
            transform: scale(1.05);
        }

        #btnAssinatura {
            width: 300px;
            background-color: #0074b6;
            border-color: #0074b6;
        }

        #btnAssinatura:hover {
            background-color: #126da1ff;
            border-color: #126da1ff;
        }

        span {
            color: #ffc107;
        }

        footer p {
            color: #ffffff;
        }

        /* Mantém proporção bonita no mobile */
        @media (max-width: 768px) {
            .splide__slide img {
                object-fit: cover;
            }
            
            .sobre img {
            width: 300px;
            border-radius: 10px;
            margin-top: 1em;
            }

            #texto-sobre {
            padding-top: 0px;
        }

        }