  :root {
            --primary: #FF9E2D;
            --secondary: #FF4B3A;
            --dark: #333333;
            --light: #f8f9fa;
            --gray: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
      .btn {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FF9E2D, #FF4B3A); /* Usando a propriedade 'background' */
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 67, 101, 0.3);
}

        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 67, 101, 0.4);
        }
        
          /* Header */
        header {
            background-color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fff 0%, #f3f4f6 100%);
            padding: 102px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        
        .hero-text {
            flex: 1;
            margin-top: 20px; /* Ajuste para aproximar o texto do topo */
            
        }
        .hero-text h1 {
            font-size: 48px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .hero-text h1 span {
            color: var(--primary);
        }
        
        .hero-text p {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 30px;
            line-height: 1.6;
        }
        
        .hero-image {
            flex: 1;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
        }
        
          .changing-text {
             font-size: 48px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .feature-card p {
            font-size: 16px;
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* How It Works Section */
        .how-it-works {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .how-it-works-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .how-it-works-text {
            flex: 1;
        }
        
        .how-it-works-text h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .how-it-works-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .step-icon {
            background-color: var(--primary);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .step-text {
            flex: 1;
        }
        
        .step-text h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .step-text p {
            font-size: 16px;
            color: var(--gray);
            line-height: 1.6;
        }
        
        .how-it-works-slider {
            flex: 1;
            position: relative;
            overflow: hidden;
                background-color: transparent;
        
        }
        
        .slider-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slider-item {
            flex: 0 0 100%;
        }
        
       .slider-item img {
    width: 100%;
    height: auto;
    display: block;
    background-color: transparent; /* Remover fundo branco */
}

        
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
                  background-color: transparent;
        }
        
        .slider-dot {
            width: 10px;
            height: 10px;
         
                 background-color: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: white;
            transform: scale(1.2);
        }
        
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: transparent;
     
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .slider-arrow:hover {
            background-color: transparent
        }
        
        .slider-arrow.prev {
            left: 20px;
        }
        
        .slider-arrow.next {
            right: 20px;
        }
        
        /* Plans Section */
        .plans {
            padding: 100px 0;
            background-color: white;
        }
        
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .plan-card {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            padding: 40px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .plan-card.featured {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 2px solid var(--primary);
        }
        
        .plan-card.featured::before {
            content: "Mais Popular";
            position: absolute;
            top: 20px;
            right: -50px;
            background-color: var(--primary);
            color: white;
            padding: 5px 50px;
            transform: rotate(45deg);
            font-size: 14px;
            font-weight: 600;
        }
        
        .plan-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .plan-price {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .plan-price span {
            font-size: 16px;
            font-weight: 400;
            color: var(--gray);
        }
        
        .plan-features {
            margin-bottom: 30px;
        }
        
        .plan-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 16px;
            color: var(--gray);
        }
        
        .plan-feature i {
            color: var(--primary);
            margin-right: 10px;
        }
        
        .plan-btn {
            width: 100%;
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
      
        
        .faq-question h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .faq-question i {
            font-size: 16px;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .featured {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.2);
    border: 2px solid var(--primary);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background-color: var(--primary);
    color: white;
    padding: 5px 50px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 600;
}

/* Animação suave para abrir e fechar FAQ */
.faq-answer {
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}

        
      .faq-answer {
    display: none; /* Esconder as respostas inicialmente */
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 4px solid var(--primary);
    margin-top: 5px;
    border-radius: 5px;
}
.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background-color: #f1f1f1;
}

.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.2);
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background-color: var(--primary);
    color: white;
    padding: 5px 50px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: 600;
}


        
        .faq-answer p {
            padding: 20px 0;
            font-size: 16px;
            color: var(--gray);
            line-height: 1.6;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            padding: 50px 0;
            color: white;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-col h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: white;
        }
        
        .footer-bottom {
            margin-top: 50px;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .how-it-works-content {
                flex-direction: column;
            }
            
            .plan-card.featured {
                transform: scale(1);
            }
        }

           .logo img {
            height: 50px;
            width: auto;
        }

       .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.login-btn {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #FF9E2D, #FF4B3A); /* Usando a propriedade 'background' */
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

        
        .login-btn:hover {
            background-color: var(--secondary);
        }
        
        
        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 36px;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .plans-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Estilos gerais */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
}

/* Menu de navegação */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #FF6B8A;
}

/* Botões */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Botão Teste Grátis */
.teste-gratis {
      background: linear-gradient(135deg, #FF9E2D, #FF4B3A); /* Usando a propriedade 'background' */
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.teste-gratis:hover {
     background: linear-gradient(135deg, #FF9E2D, #FF4B3A); /* Usando a propriedade 'background' */
}

/* Botão Entrar (Sem cor, apenas borda) */
.login-btn {
    color: #FF9E2D;
    border: 2px solid #FF9E2D;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
    background: transparent;
}

.login-btn:hover {
    background: #FF9E2D;
    color: white;
}

/* Ícones nos botões */
.btn i {
    font-size: 14px;
}

/* Estilo do menu mobile */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Menu Mobile */
.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    width: 250px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 5px;
    flex-direction: column;
    align-items: center;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu nav ul li {
    margin-bottom: 15px;
}

.mobile-menu nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* Responsivo */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* Quando o menu mobile estiver ativo */
.mobile-menu.active {
    display: flex;
}



/* Sessão de Vídeo */
.video-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.video-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.video-text {
    flex: 1;
}

.video-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #111;
    margin-bottom: 20px;
}

.video-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.video-btn {
      background: linear-gradient(135deg, #FF9E2D, #FF4B3A); /* Usando a propriedade 'background' */
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

.video-frame {
    flex: 1;
    max-width: 600px;
}

.video-frame video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Sessão de Áudio */
.audio-section {
    background: white;
    padding: 80px 0;
}

.audio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.audio-image {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.audio-image img {
    width: 100%;
    max-width: 400px;
    height: 400px; /* Define altura igual à largura */
    border-radius: 50%; /* Garante um círculo perfeito */
    object-fit: cover; /* Ajusta a imagem dentro do círculo */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.audio-text {
    flex: 1;
}

.audio-text h2 {
    font-size: 28px;
    font-weight: bold;
    color: #111;
    margin-bottom: 20px;
}

.audio-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

audio {
    width: 100%;
    max-width: 300px;
    margin-right: 10px;
}

.alert-text {
    font-size: 14px;
    color: #FF4365;
    margin-top: 10px;
}

/* Responsivo */
@media (max-width: 992px) {
    .video-content,
    .audio-content {
        flex-direction: column;
        text-align: center;
    }

    .video-frame,
    .audio-image img {
        max-width: 100%;
    }
}


/* Faixa de redes sociais */
.social-media-bar {
    background: linear-gradient(135deg, #FF9E2D, #FF4B3A);
    padding: 15px 0;
    text-align: center;
}

.social-icons {
    display: inline-flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Estilo para os ícones das redes sociais */
.social-icon {
    background-color: white;
    padding: 12px;
    border-radius: 50%; /* Garante o ícone redondo */
    color: #FF4365;
    font-size: 24px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px; /* Tamanho do círculo */
    height: 50px; /* Tamanho do círculo */
    text-decoration: none; /* Remove qualquer sublinhado que possa aparecer */
    border: none; /* Remover borda indesejada */
}

/* Efeito ao passar o mouse */
.social-icon:hover {
    background-color: #FF4365;
    color: white;
}

/* Botão flutuante do WhatsApp */
/* Botão Flutuante do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    text-decoration: none; /* Remover qualquer sublinhado ou linha embaixo */
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}
