         {
             margin: 0;
             padding: 0;
             box-sizing: border-box;
         }

         :root {
             /* Colors */
             --primary: #072270;
             --primary-dark: #112b76;
             --accent: #FF6015;
             --accent-hover: #E55513;
             --white: #FFFFFF;
             --light: #F8F9FC;
             --dark: #1A1A1A;
             --gray: #666666;

             /* Layout */
             --max-width: 900px;
             --section-padding: clamp(0rem, 0vw, 0rem);
             --container-padding: clamp(0rem, 0vw, 0rem);

             /* Typography */
             --h1: clamp(2rem, 5vw, 3.2rem);
             --h2: clamp(1.8rem, 4vw, 2.8rem);
             --h3: clamp(1.2rem, 3vw, 1.8rem);
             --body: clamp(1rem, 2vw, 1.1rem);

             /* Effects */
             --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
             --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
             --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
             --radius-sm: 8px;
             --radius-md: 12px;
             --radius-lg: 20px;
             --transition: all 0.3s ease;
         }

         body {
             font-family: 'Poppins', sans-serif;
             line-height: 1.6;
             color: var(--dark);
             background: var(--light);
         }

         .container {
             max-width: var(--max-width);
             margin: 0 auto;
             padding: 0 var(--container-padding);
             padding: 3rem 0rem;
         }

         /*Popup do video
         
          .video-popup {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8); 
            z-index: 1000;
          }

         .video-popup.active {
            display: flex;
            align-items: center;
           justify-content: center;
          }

         .video-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            background: white;
            border-radius: 0px;
            padding: 20px;
          }

         .close-popup {
            position: absolute;
            top: -15px;
            right: -15px;
            background: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
          }

        .video-wrapper {
           position: relative;
           padding-bottom: 56.25%;
           height: 0;
          }

        .video-wrapper iframe {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          border: none; 
        } */

         .video-popup {
             display: none;
             position: absolute;
             /* Mudado de absolute para fixed */
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             z-index: 1000;
         }

         .video-popup.active {
             display: flex;
             align-items: center;
             justify-content: center;
         }

         .video-container {
             position: relative;
             width: 100%;
             max-width: 100%;
             /* Largura máxima definida */
             padding: 0px;
             /* Removido padding */
             background: transparent;
             /* Removido fundo branco */
         }

         .close-popup {
             position: absolute;
             top: -30px;
             right: -25px;
             background: white;
             border: none;
             width: 30px;
             height: 30px;
             border-radius: 50%;
             cursor: pointer;
             box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
         }

         .video-wrapper {
             position: relative;
             padding-bottom: 56.25%;
             height: 0;
         }

         .video-wrapper iframe {
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             border: none;
         }




         /* Hero Section */
         .hero {
             background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
             min-height: 100vh;
             display: flex;
             align-items: center;
             position: relative;
             overflow: hidden;
         }

         .hero::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
             opacity: 0.1;
         }

         .hero-content {
             position: relative;
             z-index: 1;
             text-align: center;
             color: var(--white);
             padding: var(--section-padding) 0;
         }

         .logo-container {
             margin-bottom: clamp(1rem, 2vw, 1rem);
         }

         .logo {
             width: 18%;
             /* Ajuste esta porcentagem conforme necessário */
             height: auto;
         }

         .badge {
             /* background: var(--accent);*/
             color: var(--white);
             font-weight: 500;
             padding: 0.8em 1.6em;
             border-radius: 100px;
             display: inline-block;
             margin-bottom: 1.5rem;
             font-size: clamp(0.9rem, 2vw, 1rem);
             transform: translateY(20px);
             opacity: 0;
             animation: fadeInUp 0.6s forwards;
             border: 1px solid white;
             /* Adiciona uma borda branca sólida de 2px */
             font-size: clamp(0.7rem, 1.5vw, 0.8rem);
         }

         .hero h1 {
             font-size: var(--h3);
             /* aqui diminui a headline */
             font-weight: 700;
             line-height: 1.3;
             margin-bottom: 1.5rem;
             transform: translateY(20px);
             opacity: 0;
             animation: fadeInUp 0.6s 0.2s forwards;
         }

         .hero h1 span {
             color: var(--accent);
             white-space: nowrap;
         }

         .hero p {
             font-size: var(--body);
             opacity: 0.9;
             max-width: 800px;
             margin: 0 auto 3rem;
             transform: translateY(20px);
             opacity: 0;
             animation: fadeInUp 0.6s 0.4s forwards;
             /* margin: 0 auto 1.5rem;  Reduzindo de 3rem para 1.5rem */
         }

         .btn-group {
             display: flex;
             justify-content: center;
             gap: 1rem;
             transform: translateY(20px);
             opacity: 0;
             animation: fadeInUp 0.6s 0.6s forwards;
             /* max-width: 500px; /* Add max-width container */

         }

         .btn {
             display: inline-flex;
             align-items: center;
             gap: 0.5rem;
             padding: 1em 2em;
             border-radius: 20px;
             font-weight: 600;
             text-decoration: none;
             transition: var(--transition);
             font-size: clamp(0.9rem, 2vw, 1rem);
             justify-content: center;
         }

         .btn-primary {
             background: var(--accent);
             color: var(--white);
             box-shadow: 0 4px 20px rgba(255, 96, 21, 0.3);
         }

         .btn-primary:hover {
             background: var(--accent-hover);
             transform: translateY(-2px);
         }

         .btn-secondary {
             background: rgba(255, 255, 255, 0.1);
             color: var(--white);
             border: 1px solid rgba(255, 255, 255, 0.2);
         }

         .btn-secondary:hover {
             background: rgba(255, 255, 255, 0.2);
             transform: translateY(-2px);
         }

         /* Stats Section */
         .stats {
             margin-top: 4rem;
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
             gap: 2rem;
             opacity: 0;
             transform: translateY(20px);
             animation: fadeInUp 0.6s 0.8s forwards;
         }

         .stat-card {
             background: rgba(255, 255, 255, 0.1);
             padding: 2rem;
             border-radius: var(--radius-md);
             text-align: center;
             backdrop-filter: blur(10px);
             border: 1px solid rgba(255, 255, 255, 0.1);
         }

         .stat-number {
             font-size: clamp(2rem, 4vw, 2.5rem);
             font-weight: 800;
             color: var(--accent);
             line-height: 1;
             margin-bottom: 0.5rem;
         }

         .stat-label {
             font-size: var(--body);
             opacity: 0.9;
         }

         /* Animations */
         @keyframes fadeInUp {
             from {
                 opacity: 0;
                 transform: translateY(20px);
             }

             to {
                 opacity: 1;
                 transform: translateY(0);
             }
         }

         /* Responsive Design */
         @media (max-width: 768px) {
             .btn-group {
                 flex-direction: column;
             }

             .btn {
                 width: 100%;
                 justify-content: center;
             }

             .stats {
                 grid-template-columns: 1fr;
             }

             .stats {
                 margin-top: 1.9rem;
                 /* Ainda menos espaço em mobile */
             }

             .hero-content {
                 padding: var(--section-padding) var(--container-padding);
                 padding: 1.5rem var(--container-padding);
             }

             .badge {
                 font-size: 0.5rem;
                 /* Tamanho específico para mobile */
             }


         }

         @media (min-width: 1024px) {
             .hero-content {
                 padding: calc(var(--section-padding) * 0.5) 0;
             }

             .btn {
                 padding: 1.2em 2.4em;
             }
         }


         /* ... (estilos anteriores permanecem) ... */

         /* Hero Image Styles */
         .hero-image-container {
             margin: 0 auto;
             max-width: 900px;
             position: relative;
             transform: translateY(0px);
             opacity: 0;
             animation: fadeInUp 0.6s 0.3s forwards;

         }

         .hero-image-wrapper {
             position: relative;
             /* border-radius: var(--radius-lg);*/
             overflow: hidden;
             /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
             /* background: var(--primary-dark);*/
         }

         .hero-image {
             width: 100%;
             height: auto;
             display: block;
             transition: var(--transition);
             margin-top: -2.8rem;
             /* Reduz espaço em cima */
             margin-bottom: 0rem;
             /* Mantém espaço embaixo */
             margin-left: 0rem;
             /* Mantém margem lateral negativa */
             margin-right: 0rem;
             /* Mantém margem lateral negativa */

         }

         /* Efeito de brilho nas bordas 
    .hero-image-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: var(--radius-lg);
        padding: 2px;
        background: linear-gradient(
            45deg,
            rgba(255, 96, 21, 0.5),
            rgba(78, 47, 145, 0.5)
        );
        -webkit-mask: 
            linear-gradient(#fff 0 0) content-box, 
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }*/

         /* Decorações de fundo */
         .image-decoration {
             position: absolute;
             border-radius: 50%;
             filter: blur(40px);
             opacity: 0.15;
             z-index: -1;
         }

         .decoration-1 {
             background: var(--accent);
             width: 200px;
             height: 200px;
             top: -40px;
             left: -40px;
         }

         .decoration-2 {
             background: var(--primary);
             width: 250px;
             height: 250px;
             bottom: -60px;
             right: -60px;
         }


         /* Responsive Adjustments */
         @media (max-width: 768px) {
             .hero-image-container {
                 margin-top: -0.1rem;
                 /* Reduz espaço em cima */
                 margin-bottom: -1rem;
                 /* Mantém espaço embaixo */
                 margin-left: -1rem;
                 /* Mantém margem lateral negativa */
                 margin-right: -1rem;
                 /* Mantém margem lateral negativa */
             }
         }

         .hero-image-wrapper {
             border-radius: var(--radius-md);
         }

         .browser-frame {
             padding: 0.75rem;
         }

         .browser-dot {
             width: 10px;
             height: 10px;
         }
         }

         @media (min-width: 1024px) {
             .hero-image-container {
                 margin: 4rem auto;
             }
         }

         /* Benefits Section */
         .benefits {
             padding: var(--section-padding) 0;
             background: var(--white);
         }

         .section-header {
             text-align: center;
             margin-bottom: clamp(3rem, 6vw, 4rem);
         }

         .section-badge {
             background: var(--primary);
             color: var(--white);
             padding: 0.6em 1.2em;
             border-radius: 100px;
             font-size: 0.9rem;
             font-weight: 600;
             display: inline-block;
             margin-bottom: 1rem;
         }

         .section-title {
             font-size: var(--h2);
             color: var(--dark);
             font-weight: 700;
             margin-bottom: 1rem;
         }

         .section-subtitle {
             font-size: var(--body);
             color: var(--gray);
             max-width: 700px;
             margin: 0 auto;
         }

         .benefits .container {
             max-width: 1200px;
         }

         .benefits-grid {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
             gap: clamp(1.5rem, 4vw, 2.5rem);
         }

         .benefit-card {
             background: #0b236a;
             border-radius: var(--radius-lg);
             padding: 1.5rem;
             transition: var(--transition);
             position: relative;
             overflow: hidden;
             border: 0px solid rgba(78, 47, 145, 0.1);
             text-align: center;
         }

         .benefit-card::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 4px;
             height: 100%;
             background: var(--primary);
             transition: var(--transition);
         }

         .benefit-card:hover {
             transform: translateY(-5px);
             box-shadow: var(--shadow-lg);
         }

         .benefit-card:hover::before {
             background: var(--accent);
         }

         .benefit-icon {
             width: 48px;
             height: 48px;
             background: var(--light);
             border-radius: var(--radius-md);
             display: flex;
             align-items: center;
             justify-content: center;
             margin: 0 auto 1rem;
             color: var(--primary);
             font-size: 1.4rem;
             transition: var(--transition);
         }

         .benefit-card:hover .benefit-icon {
             background: var(--primary);
             color: var(--white);
             transform: scale(1.1);
         }

         .benefit-title {
             font-size: 1.25rem;
             font-weight: 600;
             margin-bottom: 0.5rem;
             color: #fff;
         }

         .benefit-description {
             font-size: 0.9rem;
             color: #fff;
             margin-bottom: 0rem;
         }

         .features-list {
             list-style: none;
         }

         .features-list li {
             display: flex;
             align-items: center;
             gap: 0.75rem;
             margin-bottom: 0.75rem;
             color: #fff;
         }

         .features-list i {
             color: var(--accent);
             font-size: 1.1rem;
         }

         /* Pricing Section 
        
        .pricing {
            padding: var(--section-padding) 0;
            background: var(--light);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(2rem, 2vw, 2rem);
            max-width: 700px;
            margin: 0 auto;
        }

        .price-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }

        .price-card.featured {
            transform: scale(1.05);
            border: 0px solid var(--accent); /*Retirada da borda do plano laranja
            box-shadow: var(--shadow-lg);
        }*/

         .price-card.featured .price-header {
             background: var(--accent);
         }

         /* .price-badge {
            position: absolute;
            top: 0.5rem;
            right: 1.9rem;
            background: #4E2F91;
            color: var(--white);
            padding: 0.5em 1em;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 600;
        } */

         .price-badge {
             position: absolute;
             top: 1.5rem;
             /* Ajuste a posição vertical */
             right: -2rem;
             /* Faz o selo sair para fora do card */
             background: #4E2F91;
             color: var(--white);
             padding: 0.5em 2em;
             /* Aumenta o padding horizontal */
             font-size: 0.7rem;
             font-weight: 600;
             transform: rotate(45deg);
             /* Rotaciona o selo */
             transform-origin: center;
             /* Define o ponto de rotação */
             box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
             /* Adiciona sombra suave */
             z-index: 1;
             /* Garante que fique acima do card */
             width: 150px;
             /* Largura fixa para o selo */
             text-align: center;
         }

         /* Adicione overflow: hidden ao container do card se necessário */
         .price-card {
             overflow: hidden;
             /* Importante para o efeito */
             position: relative;
             /* Mantém o posicionamento absoluto do selo */
         }

         .price-header {
             background: var(--primary);
             color: var(--white);
             padding: 2rem;
             text-align: center;
         }

         .price-title {
             font-size: 1.4rem;
             font-weight: 500;
             margin-bottom: 1rem;
         }

         .price-amount {
             font-size: 3.5rem;
             font-weight: 600;
             line-height: 1;
             margin-bottom: 0.5rem;
         }

         .price-period {
             font-size: 1rem;
             opacity: 0.9;
         }

         .price-body {
             padding: 2rem;
         }

         .price-features {
             list-style: none;
             margin-bottom: 2rem;
         }

         .price-features li {
             display: flex;
             align-items: center;
             gap: 1rem;
             margin-bottom: 1rem;
             color: var(--gray);
             font-size: 1rem;
         }

         .price-features i {
             color: var(--primary);
             font-size: 1.2rem;
         }

         /* CTA Section */
         .cta {
             padding: var(--section-padding) 0;
             background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
             color: var(--white);
             text-align: center;
             position: relative;
             overflow: hidden;
         }

         .cta::before {
             content: '';
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
             opacity: 0.1;
         }

         .cta-content {
             position: relative;
             max-width: 800px;
             margin: 0 auto;
         }

         .cta-title {
             font-size: var(--h2);
             font-weight: 700;
             margin-bottom: 1.5rem;
         }

         .cta-description {
             font-size: var(--body);
             opacity: 0.9;
             margin-bottom: 2rem;
         }

         .guarantee {
             display: flex;
             align-items: center;
             justify-content: center;
             gap: 0.75rem;
             margin-top: 2rem;
             padding: 1rem;
             background: rgba(255, 255, 255, 0.1);
             border-radius: var(--radius-md);
             font-size: 1rem;
         }

         .guarantee i {
             font-size: 1.5rem;
             color: var(--accent);
         }

         /* Footer */
         .footer {
             background: var(--dark);
             color: var(--white);
             padding: 2rem 0;
             text-align: center;
             font-size: 0.9rem;
         }

         /* Responsive Adjustments */
         @media (max-width: 768px) {
             .price-card.featured {
                 transform: scale(1);
             }

             .benefit-card {
                 padding: 2rem;
             }
         }

         @media (max-width: 768px) {
             .logo {
                 width: 50%;
                 /* Porcentagem maior para telas menores */

             }
         }

         @media (max-width: 480px) {
             .logo {
                 width: 50%;
                 /* Ainda maior para telas muito pequenas */

             }
         }

         @media (max-width: 768px) {
             .hero p {
                 margin: 0 auto 1.9rem;
                 /* Ainda menos espaço em mobile */
             }
         }

         < !-- Adicione estes estilos ao seu CSS -->.testimonials {
             padding: var(--section-padding) 0;
             background: var(--light);
         }

         .testimonials-grid {
             display: grid;
             grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
             gap: clamp(1.5rem, 4vw, 2.5rem);
             margin-top: 3rem;
         }

         .testimonial-card {
             background: var(--white);
             padding: 2rem;
             border-radius: var(--radius-lg);
             box-shadow: var(--shadow-md);
             text-align: center;
             transition: var(--transition);
         }

         .testimonial-card:hover {
             transform: translateY(-5px);
             box-shadow: var(--shadow-lg);
         }

         .testimonial-avatar {
             width: 80px;
             height: 80px;
             margin: -60px auto 1rem;
             border-radius: 50%;
             overflow: hidden;
             border: 4px solid var(--white);
             box-shadow: var(--shadow-md);
         }

         .testimonial-avatar img {
             width: 100%;
             height: 100%;
             object-fit: cover;
         }

         .testimonial-stars {
             color: var(--accent);
             margin-bottom: 1rem;
             font-size: 1.2rem;
         }

         .testimonial-text {
             color: var(--gray);
             font-size: var(--body);
             margin-bottom: 1.5rem;
             font-style: italic;
         }

         .testimonial-author {
             display: flex;
             flex-direction: column;
             gap: 0.25rem;
         }

         .testimonial-author strong {
             color: var(--dark);
             font-weight: 600;
         }

         .testimonial-author span {
             color: var(--gray);
             font-size: 0.9rem;
         }

         @media (max-width: 768px) {
             .testimonial-card {
                 padding: 1.5rem;
             }

             .testimonial-avatar {
                 width: 60px;
                 height: 60px;
                 margin: -45px auto 1rem;
             }
         }

         /* Todo o CSS anterior mantido igual */
         * {
             margin: 0;
             padding: 0;
             box-sizing: border-box;
             font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
         }

         :root {
             --purple-primary: #0a1a48;
             --purple-light: #052890;
             --purple-vibrant: #052890;
             --green: #22C55E;
             --green-hover: #16A34A;
             --white: #FFFFFF;
         }

         /* body {
            background: linear-gradient(to bottom, #F9FAFB, #FFFFFF);
            min-height: 100vh;
        } */

         /* .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 4rem 1rem;
        }*/

         .section-header {
             text-align: center;
             margin-bottom: 4rem;
         }

         /* .badge {
            background: var(--purple-primary);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 1rem;
        } */

         .section-title {
             font-size: 2.5rem;
             font-weight: 700;
             color: #1F2937;
             margin-bottom: 1rem;
         }

         .section-subtitle {
             color: #6B7280;
             max-width: 36rem;
             margin: 0 auto;
         }

         .pricing-grid {
             display: grid;
             grid-template-columns: minmax(280px, 350px);
             gap: 2rem;
             justify-content: center;
             margin: 0 auto;
         }

         .pricing-card {
             position: relative;
             padding: 2rem;
             border-radius: 1rem;
             transition: all 0.3s ease;
             width: 100%;
             display: flex;
             flex-direction: column;
             overflow: hidden;
         }

         .pricing-card.basic {
             background: linear-gradient(135deg, var(--purple-light), var(--purple-primary));
             border: 1px solid rgba(139, 92, 246, 0.3);
         }

         .pricing-card.premium {
             background: linear-gradient(135deg, var(--purple-vibrant), var(--purple-primary));
             transform: scale(1);
             border: 1px solid rgba(139, 92, 246, 0.3);
         }

         .pricing-card.premium:hover {
             transform: scale(1.05);
         }

         .popular-badge {
             position: absolute;
             top: -30px;
             right: -55px;
             background: var(--purple-primary);
             color: var(--white);
             padding: 35px 55px 8px;
             font-size: 0.875rem;
             font-weight: 600;
             transform: rotate(45deg);
             transform-origin: center;
             box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
             z-index: 1;
             text-align: center;
             width: 170px;
             display: flex;
             justify-content: center;
             align-items: flex-end;
             min-height: 80px;
         }

         /* Resto do CSS mantido igual */
         .plan-name {
             font-size: 1.5rem;
             font-weight: 700;
             color: var(--white);
             margin-bottom: 1rem;
         }

         .price-container {
             margin-bottom: 0.5rem;
         }

         .price {
             font-size: 3rem;
             font-weight: 700;
             color: var(--white);
         }

         .price-period {
             color: rgba(255, 255, 255, 0.9);
             margin-left: 0.5rem;
         }

         .price-details {
             color: rgba(255, 255, 255, 0.9);
             font-size: 0.875rem;
             margin-bottom: 2rem;
         }

         .installment {
             color: var(--white);
             font-weight: 500;
             margin-top: 0.25rem;
         }

         .savings {
             color: var(--green);
             font-weight: 500;
             margin-top: 0.5rem;
         }

         .features-list {
             list-style: none;
             margin-bottom: 2rem;
             flex-grow: 1;
         }

         .feature-item {
             display: flex;
             align-items: flex-start;
             gap: 0.75rem;
             color: var(--white);
             margin-bottom: 1.25rem;
             font-size: 0.95rem;
         }

         .feature-item i {
             color: var(--green);
             font-size: 1rem;
             min-width: 20px;
             padding-top: 3px;
         }

         .feature-content {
             display: flex;
             flex-direction: column;
         }

         .feature-title {
             font-weight: 600;
             margin-bottom: 0.2rem;
             color: #fff;
         }

         .feature-description {
             font-size: 0.85rem;
             opacity: 0.9;
             line-height: 1.4;
             color: #fff;
         }

         .btn-container {
             margin-top: auto;
             padding-top: 2rem;
             display: flex;
             justify-content: center;
             width: 100%;
         }

         .btn {
             width: 100%;
             max-width: 250px;
             padding: 1rem;
             border-radius: 0.75rem;
             font-weight: 600;
             text-align: center;
             transition: all 0.3s ease;
             cursor: pointer;
             border: none;
             font-size: 1rem;
         }

         .btn-white {
             background: var(--white);
             color: var(--purple-primary);
         }

         .btn-white:hover {
             background: rgba(255, 255, 255, 0.9);
         }

         .btn-green {
             background: var(--green);
             color: var(--white);
         }

         .btn-green:hover {
             background: var(--green-hover);
         }

         .guarantee {
             text-align: center;
             margin-top: 3rem;
         }

         .guarantee-badge {
             display: inline-flex;
             align-items: center;
             gap: 0.5rem;
             background: var(--white);
             padding: 0.75rem 1.5rem;
             border-radius: 9999px;
             box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
         }

         .guarantee-badge i {
             color: var(--purple-primary);
         }

         .guarantee-text {
             color: #6B7280;
         }

         @media (max-width: 768px) {
             .container {
                 padding: 2rem 1rem;
             }

             .section-title {
                 font-size: 2rem;
             }

             .pricing-grid {
                 grid-template-columns: 1fr;
                 max-width: 350px;
             }

             .pricing-card.premium:hover {
                 transform: scale(1);
             }
         }


         /* Container principal do carrossel */
         .hero-image-container1 {
             margin: 0 auto;
             max-width: 100%;
             width: 100%;
             position: relative;
             transform: translateY(0);
             opacity: 0;
             animation: fadeInUp 0.6s 0.3s forwards;
             padding: 0;
             overflow: hidden;
         }

         .video-wrapper {
             position: relative;
             width: 100%;
             padding-bottom: 56.25%;
             /* 16:9 Aspect Ratio */
             height: 0;
             overflow: hidden;
             border-radius: 12px;
             box-shadow: var(--shadow-lg);
         }

         .video-wrapper iframe {
             position: absolute;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             border: none;
         }

         @media (max-width: 768px) {
             .hero-image-container1 {
                 margin: 0;
                 padding: 0;
                 width: 100%;
                 max-width: 100%;
                 overflow: hidden;
             }

             .video-wrapper {
                 border-radius: 0;
             }
         }

         /* Remove old carousel styles */

         /* Rating Section Styles */
         .rating-section {
             display: flex;
             flex-direction: column;
             align-items: center;
             margin-top: 1.5rem;
             color: var(--white);
             opacity: 0;
             transform: translateY(20px);
             animation: fadeInUp 0.6s 0.7s forwards;
         }

         .stars {
             display: flex;
             gap: 0.25rem;
             margin-bottom: 0.5rem;
         }

         .star {
             color: #FFD700;
             font-size: 1.5rem;
         }

         .rating-text {
             font-size: 0.9rem;
             opacity: 0.9;
             text-align: center;
         }

         .rating-count {
             font-weight: 600;
             color: var(--accent);
         }

         @media (max-width: 768px) {
             .rating-section {
                 margin-top: 1rem;
             }

             .stars {
                 gap: 0.2rem;
             }

             .star {
                 font-size: 1.2rem;
             }

             .rating-text {
                 font-size: 0.8rem;
             }
         }


         .footer-link {
             text-decoration: none;
             color: #fff;
             /* Texto branco */
             font-weight: Semibold;
         }

         .footer-link:hover {
             text-decoration: underline;
         }

         .separator {
             margin: 0 10px;
             color: #fff;
             /* Barra separadora branca */
         }

         /* FAQ Section Styles */
         .faq {
             padding: var(--section-padding) 0;
             background: var(--light);
         }

         .faq-grid {
             max-width: 1200px;
             margin: 0 auto;
             display: grid;
             grid-template-columns: repeat(2, 1fr);
             gap: 1.5rem;
         }

         .faq-item {
             background: var(--white);
             border-radius: var(--radius-md);
             overflow: hidden;
             box-shadow: var(--shadow-sm);
             transition: var(--transition);
         }

         .faq-item:hover {
             box-shadow: var(--shadow-md);
         }

         .faq-question {
             padding: 1.5rem;
             display: flex;
             justify-content: space-between;
             align-items: center;
             cursor: pointer;
             background: var(--white);
             transition: var(--transition);
         }

         .faq-question h3 {
             font-size: 1rem;
             font-weight: 600;
             color: var(--dark);
             margin: 0;
             flex: 1;
         }

         .faq-question i {
             color: var(--primary);
             font-size: 1.2rem;
             transition: transform 0.3s ease;
         }

         .faq-item.active .faq-question i {
             transform: rotate(180deg);
         }

         .faq-answer {
             padding: 0 1.5rem;
             max-height: 0;
             overflow: hidden;
             transition: all 0.3s ease;
             background: var(--white);
         }

         .faq-item.active .faq-answer {
             padding: 0 1.5rem 1.5rem;
             max-height: 500px;
         }

         .faq-answer p {
             color: var(--gray);
             line-height: 1.6;
             margin: 0;
         }

         @media (max-width: 768px) {
             .faq-grid {
                 grid-template-columns: 1fr;
             }

             .faq-question h3 {
                 font-size: 0.9rem;
             }

             .faq-question {
                 padding: 1.2rem;
             }

             .faq-item.active .faq-answer {
                 padding: 0 1.2rem 1.2rem;
             }
         }

         /* Footer */
         .footer {
             background: var(--dark);
             color: var(--white);
             padding: 2rem 0;
             text-align: center;
             font-size: 0.9rem;
         }

         /* Screenshots Section */
         .screenshots {
             padding: var(--section-padding) 0;
             background: #082370;
         }

         .screenshot-swiper {
             max-width: 1000px;
             margin: 3rem auto;
             padding: 0 1rem;
         }

         .screenshot-swiper .swiper-slide {
             display: flex;
             justify-content: center;
             align-items: center;
             background: var(--white);
             border-radius: var(--radius-lg);
             overflow: hidden;
             box-shadow: var(--shadow-md);
             transition: var(--transition);
         }

         .screenshot-swiper .swiper-slide img {
             width: 100%;
             height: auto;
             display: block;
         }

         .screenshot-swiper .swiper-button-next,
         .screenshot-swiper .swiper-button-prev {
             color: var(--primary);
             background: var(--white);
             width: 40px;
             height: 40px;
             border-radius: 50%;
             box-shadow: var(--shadow-md);
         }

         .screenshot-swiper .swiper-button-next:after,
         .screenshot-swiper .swiper-button-prev:after {
             font-size: 1.2rem;
         }

         .screenshot-swiper .swiper-pagination-bullet {
             background: var(--primary);
         }

         .screenshot-swiper .swiper-pagination-bullet-active {
             background: var(--accent);
         }

         @media (max-width: 768px) {
             .screenshot-swiper {
                 margin: 2rem auto;
             }

             .screenshot-swiper .swiper-button-next,
             .screenshot-swiper .swiper-button-prev {
                 display: none;
             }
         }

         /* Business Metrics Section */
         .business-metrics {
             padding: var(--section-padding) 0;
             background: var(--light);
         }

         .metrics-grid {
             display: grid;
             grid-template-columns: repeat(3, 1fr);
             gap: 20px;
             margin-top: 50px;
             max-width: 1200px;
             margin-left: auto;
             margin-right: auto;
         }

         .metric-card {
             background: var(--white);
             padding: 30px 20px;
             border-radius: var(--radius-lg);
             text-align: center;
             transition: all 0.3s ease;
             box-shadow: var(--shadow-md);
             border: 1px solid rgba(0, 0, 0, 0.05);
         }

         .metric-card:hover {
             transform: translateY(-10px);
             box-shadow: var(--shadow-lg);
         }

         .metric-icon {
             width: 80px;
             height: 80px;
             margin: 0 auto 25px;
             background: var(--primary);
             border-radius: 50%;
             display: flex;
             align-items: center;
             justify-content: center;
             transition: all 0.3s ease;
         }

         .metric-card:hover .metric-icon {
             background: var(--accent);
             transform: scale(1.1);
         }

         .metric-icon i {
             font-size: 35px;
             color: var(--white);
         }

         .metric-card h3 {
             color: var(--dark);
             margin-bottom: 15px;
             font-size: 1.2em;
             font-weight: 600;
         }

         .metric-card p {
             color: var(--gray);
             line-height: 1.5;
             margin: 0;
             font-size: 0.9em;
         }

         @media (max-width: 768px) {
             .metrics-grid {
                 grid-template-columns: 1fr;
                 gap: 20px;
             }

             .metric-card {
                 padding: 30px 20px;
             }

             .metric-icon {
                 width: 60px;
                 height: 60px;
                 margin-bottom: 20px;
             }

             .metric-icon i {
                 font-size: 25px;
             }

             .metric-card h3 {
                 font-size: 1.1em;
             }

             .metric-card p {
                 font-size: 0.85em;
             }
         }