        @import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
        
        :root {
            --primary: #0047ba;
            --primary-dark: #1d4ed8;
            --primary-light: #93c5fd;
            --secondary: #93c5fd;
            --accent: #f97316;
            --light: #f8fafc;
            --dark: #1e293b;
            --success: #22c55e;
            --gray: #94a3b8;
            --gray-light: #e2e8f0;
            --transition: all 0.3s ease;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            min-height: 100vh;
        }

         .rnk-componente-whatsapp a.rnk-wp-link {
            position: fixed;
            right: 15px;
            bottom: 15px;
            display: grid;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            justify-items: center;
            place-items: center;
            width: 70px;
            height: 70px;
            background-color: #25d366;
            background-size: 30px;
            border-radius: 40px;
            text-decoration: none;
            z-index: 15;
        }

        .rnk-componente-whatsapp a.rnk-wp-link i {
                    font-size: 30px;
                    color: #fff;
                }

        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navbar */
        nav {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow);      
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Exo 2', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary);
            text-decoration: none;
        }

        .logo i {
            font-size: 2rem;
        }

        .nav-links {
            display: flex;
            gap: 32px;
        }

        .nav-links a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            font-family: 'Exo 2', sans-serif;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Hero Section */
        .hero {
            padding: 80px 0 60px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            background-image: url('../img/background.png');
            background-position: center center;
            background-size: cover;
            background-repeat: no-repeat;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        /* Left Content */
        .left-content h1 {
            font-family: 'Exo 2', sans-serif;
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 24px;
            color: #8abfff;
            font-weight: 700;
        }

        .left-content p {
            font-size: 1.25rem;
            color: #fff;
            margin-bottom: 20px;
            opacity: 0.9;
            max-width: 90%;
        }

        .price-tag {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 20px 30px;
            border-radius: 16px;
            margin-bottom: 40px;
            display: inline-block;
            box-shadow: var(--shadow);
        }

        .price-tag .label {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 5px;
        }

        .price-tag .price {
            font-family: 'Exo 2', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .price-tag .period {
            font-size: 1rem;
            opacity: 0.9;
        }

        .benefits {
            display: flex;
            flex-direction: column;
            gap: 28px;
            margin-bottom: 40px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            width: 48%;
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: var(--shadow);
        }

        .benefit-content h3 {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--primary-dark);
        }

        .benefit-content p {
            font-size: 1.05rem;
            color: var(--dark);
            opacity: 0.9;
            margin-bottom: 0;
            max-width: 100%;
        }

        /* Form Section */
        .form-container {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: #8abfff;
        }

        .form-container:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .form-title {
            font-family: 'Exo 2', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 28px;
            color: var(--primary);
            text-align: center;
            font-weight: 700;
        }

        .input-group {
            margin-bottom: 24px;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary);
            font-family: 'Exo 2', sans-serif;
        }

        .input-group input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--gray-light);
            border-radius: 12px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .input-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
        }

        .btn {
            display: block;
            width: 100%;
            padding: 18px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Exo 2', sans-serif;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }

        .form-footer {
            margin-top: 24px;
            text-align: center;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .form-footer a {
            color: var(--primary);
            text-decoration: none;
        }

        .form-footer a:hover {
            text-decoration: underline;
        }

        .imgmain{
            width: 100%;
        }

        .imgmain img{
            width: 85%;
        }

        .sec-benefits{
            padding: 90px 0px;
        }

        .benefit-flex{
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-start;
            flex-direction: column;
            align-items: baseline;
            gap: 25px;
            padding: 0 !important;;
        }

        .benefit-left{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 55px 0px;
            background-color: #f3f8ff;
            border-radius: 20px;
            gap: 20px;
        }

         .benefit-right{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 55px 0px;
            background-color: #f3f8ff;
            border-radius: 20px;
            gap: 20px;
        }

        .sorteios{
            background-color: #3c95ff;
            margin-top: 20px;
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
        }

        
        .sorteios p{
            font-size: 25px;
        }

        .benefit-img{
            width: 33%;
        }

        
        .benefit-img img{
            width: 100%;
        }

        .bene-cards{
            display: flex;
            flex-wrap: wrap;
            gap: 0px 20px;
        }

        .benefit-card{
            background-color: #e0edff;
            border-radius: 8px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            margin: 20px 0px 0px 0px;
        }

        .benefit-card img{
            width: 30px;
            margin-right: 20px;
            
        }

        .benefit-text{
            width: 60%;
            padding: 50px;
        }

        .benefit-text h1{
            font-size: 35px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .text-benefit h1{
            font-family: 'Exo 2', sans-serif;
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 8px;
            color: var(--primary);
            font-weight: 600;
            text-align: center;
        }

        
        .text-benefit p{
            font-size: 1.25rem;
            margin-bottom: 45px;
            text-align: center;
        }

        
        .imgmain img {
            animation: flutuar 5s ease-in-out infinite;
            opacity: 1 !important;
        }

        .fajuste{
            color: var(--primary);
            margin-right: 8px;
        }

         .fajuste-nav{
            color: var(--primary);
            margin: 0px 8px;
        }

        .green-fill{
            color: #22c55e !important;
        }

        .green-fill-border{
            border: 2px solid #9cdbb3 !important;
        }

        .logo img{
            width: 150px;
        }

    .sec-vantagens{
        background-color: #f4f6ff;
        padding: 100px 0px;
    }

    
    .video{
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        height: 300px;
    }

    .div-video{
        width: 50%;
        display: flex;
        justify-content: end;
    }

    .div-video2{
        width: 50%;
        display: flex;
        justify-content: start;
    }

    .div-video-text{
        width: 50%;
    }

    .div-video-text h4{
        font-size: 45px;
        line-height: 45px;
        margin-bottom: 30px;
        font-weight: 600;
        color: var(--primary);
    }

    .div-video-text p{
        font-size: 20px;
        font-weight: 300;
        line-height: 32px;
    }

    .div-video-text b{
        font-weight: 600;
    }

    .site-footer.light-footer {
        padding-top: 90px;
        background-color: #ffffff;
        color: #333;
        border-top: 1px solid #eaeaea;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.03);
    }
    
    .light-footer .footer-slogan {
        color: #666;
        max-width: 332px;
    }
    
    .light-footer .social-links a {
        color: #555;
        background-color: #f5f5f5;
        border: 1px solid #e0e0e0;
    }
    
    .light-footer .social-links a:hover {
        background-color: var(--primary);
        color: white;
    }
    
    .light-footer .footer-title {
        color: #2c3e50;
    }
    
    .light-footer .footer-title::after {
        background-color: var(--primary);
    }
    
    .light-footer .footer-links a {
        color: #555;
        text-decoration: none;
    }
    
    .light-footer .footer-links a:hover {
        color: var(--primary);
        transition: .3s;
    }
    
    .light-footer .contact-item i {
        color: var(--primary);
    }
    
    .light-footer .contact-item p {
        color: #555;
        font-size: 14px;
    }
    
    .light-footer .footer-bottom {
        border-top: 1px solid #eaeaea;
    }
    
    .light-footer .copyright {
        color: #777;
    }
    
    .light-footer .payment-methods img {
        filter: grayscale(100%) brightness(70%);
    }
    
    .light-footer .payment-methods img:hover {
        filter: grayscale(0%) brightness(100%);
    }
    
    /* Mantendo a estrutura responsiva original */
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 0px;
    }
    
    .footer-column {
        flex: 1;
        min-width: 250px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .footer-logo img {
        max-width: 200px;
        margin-bottom: 15px;
        margin-right: 15px;
    }
    
    .social-links {
        display: flex;
        gap: 15px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .contact-info {
        margin-top: 20px;
    }
    
    .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 15px;
    }
    
    .contact-item i {
        margin-right: 10px;
        margin-top: 3px;
        font-size: 16px;
    }
    
    .footer-bottom {
        padding: 20px 0px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .video-container{
        width: 40%;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
    }

    .video-produto-1{
        max-width: 100%;
        min-height: 32.4rem;
        object-fit: cover;
        border-radius: 0px;
        overflow-clip-margin: content-box;
        overflow: clip;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

        .video-produto-2{
        max-width: 100%;
        min-height: 32.4rem;
        object-fit: cover;
        border-radius: 0px;
        overflow-clip-margin: content-box;
        overflow: clip;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    /* Adicione isso ao seu CSS existente */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 10px 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* Garantir que o botão do menu mobile só apareça em mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
    
}
    
    

        @keyframes flutuar {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(5px, 8px) rotate(0.5deg);
            }
            50% {
                transform: translate(0, 15px) rotate(0deg);
            }
            75% {
                transform: translate(-5px, 8px) rotate(-0.5deg);
            }
            100% {
                transform: translate(0, 0) rotate(0deg);
            }
        }

        /* Responsividade */
        @media (max-width: 992px) {
            .hero-container {
                gap: 40px;
            }
            
            .left-content h1 {
                font-size: 2.5rem;
            }
            .video-container {
                width: 100%;
                min-height: 0;
                height: 100%;
            }
            .video-produto-1 {
                width: 100%;
                min-height: 0;
                height: 100%;
                border-top-left-radius: 20px;
                border-top-right-radius: 20px;
                border-bottom-left-radius: 0px;
                border-bottom-right-radius: 0px;

            }
            .video-produto-2 {
                width: 100%;
                min-height: 0;
                height: 100%;
                border-top-left-radius: 20px;
                border-top-right-radius: 20px;
                border-bottom-left-radius: 0px;
                border-bottom-right-radius: 0px;
            }
            .benefit-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .benefit-content h3 {
                font-size: 1.3rem;
            }
            .input-group label{
                text-align: left;
            }
            .video{
                flex-direction: column-reverse;
                height: 100%;
            }
            .div-video-text {
                width: 100%;
            }
            .div-video{
                width: 100%;
                justify-content: center;
                align-items: center;
            }
            .benefit-right{
                flex-direction: column-reverse;
            }
            .benefit-left{
                flex-direction: column;
            }
            .benefit-text{
                width: 95%;
            }
            .benefit-img{
                width: 60%;
            }
            .benefit-img img{
                margin-top: 50px;
            }
            .benefit-text h1{
                text-align: center;
            }
            .benefit-text p {
                text-align: center;
            }
            .bene-cards{
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
            }
            nav{
                padding-bottom: 0px;
            }
            .mobile-menu a {
                padding: 20px 25px;
            }
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .left-content, .form-container {
                text-align: center;
            }
            
            .left-content p {
                max-width: 100%;
                font-size: 1.1rem;
            }
            .text-benefit h1{
                font-size: 40px;
                text-align: center;
                font-weight: 600;
            }
            .text-benefit p{
                text-align: center;
                font: 1.1rem;
                margin-top: 30px;
            }
            .div-video-text p{
                text-align: center;
                margin-bottom: 40px;
                font-size: 19px;
            }
            .div-video-text h4{
                font-size: 40px;
                text-align: center;
                font-weight: 600;
            }
            
            .benefit-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 15px;
                width: 100%;
            }
            
            .price-tag {
                text-align: center;
                width: 100%;
            }
            .benefit-text{
                width: 95%;
            }
            .benefit-img{
                width: 80%;
                margin-top: 50px;
            }
         
        }

        
        @media (max-width: 550px) {
            .benefit-card{
                width: 100%;
            }
            .sorteios p {
                font-size: 25px;
            }
            .hero{
                padding: 55px 0 60px;
            }
        }

          @media (max-width: 490px) {
            .benefit-card{
                width: 80%;
                text-align: center;
            }
            .benefit-img{
                width: 90%;
            }
            .benefit-text {
                width: 95%;
                display: flex;
                justify-content: center;
                flex-direction: column;
                align-items: center;
                padding: 30px 10px 50px 10px;
            }
            .video-produto-1{
                max-height: 220px;
            }
            .video-produto-2{
                max-height: 220px;
            }
            .benefit-text h1{
                font-size: 30px;
                line-height: normal;
            }
            .sorteios p {
                font-size: 25px;
            }
            .video-container {
                width: 100%;
            }
            .video-produto-1{
                width: 100%;
            }
          }

        /* Animações */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
            transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
            opacity: 1;
            transform: scale(1);
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }

        /* Badge de segurança */
        .security-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
            font-size: 0.9rem;
            color: var(--gray);
        }

        .security-badge i {
            color: var(--success);
        }