/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background: #000;
    overflow-x: hidden;
}

/* Variáveis para cores */
:root {
    --primary-red: #EE3236;
    --dark-red: #C8282D;
    --black: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

/* Container geral */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Hero Section */
.header {
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(0, 0, 0, 0.9) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navegação */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 1px;
}

.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Content */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    flex-grow: 1;
}

.headline {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subheadline {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Call to Action */
.cta-container {
    margin: 30px 0;
}

.cta-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    padding: 16px 24px;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 50, 54, 0.4);
}

.cta-btn:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(238, 50, 54, 0.6);
}

/* Animação de pulso para o botão */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(238, 50, 54, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(238, 50, 54, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(238, 50, 54, 0.4);
    }
}

/* Contador regressivo */
.countdown-container {
    margin: 20px 0;
    width: 100%;
}

.countdown-text {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 10px;
    min-width: 60px;
}

.countdown-item span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Social Proof */
.social-proof {
    margin-top: 30px;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-proof i {
    color: var(--primary-red);
    margin-right: 8px;
}


/* Seção 2: Problema/Dor */
.pain-section {
    background-color: var(--light-gray);
    color: var(--black);
    padding: 60px 0;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--black);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

/* Pain Points */
.pain-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.pain-point {
    display: flex;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pain-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.pain-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--black);
}

.pain-content p {
    color: #555;
    font-size: 1rem;
}

/* Comparison Container */
.comparison-container {
    margin: 40px 0;
}

.comparison-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.compare-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.compare-vs {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-red);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.compare-before {
    border-top: 5px solid #ff6666;
}

.compare-after {
    border-top: 5px solid #4CAF50;
}

.compare-label {
    text-align: center;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.compare-before .compare-label {
    color: #ff6666;
}

.compare-after .compare-label {
    color: #4CAF50;
}

.compare-list {
    list-style: none;
    padding: 0;
}

.compare-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
    color: #555;
}

.compare-list li:last-child {
    border-bottom: none;
}

.compare-before .compare-list li:before {
    content: "✖";
    color: #ff6666;
    position: absolute;
    left: 5px;
}

.compare-after .compare-list li:before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 5px;
}

/* Identification Banner */
.identification-banner {
    background: var(--primary-red);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.fa-arrow-down.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* Animações de entrada */
.pain-point, .compare-item, .identification-banner {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pain-point.animated, .compare-item.animated, .identification-banner.animated {
    opacity: 1;
    transform: translateY(0);
}

.pain-point:nth-child(1) { transition-delay: 0.1s; }
.pain-point:nth-child(2) { transition-delay: 0.2s; }
.pain-point:nth-child(3) { transition-delay: 0.3s; }
.pain-point:nth-child(4) { transition-delay: 0.4s; }


/* Animações para os elementos da seção de solução */
.benefit-item, .preview-card, .authority-tag {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-item.animated, .preview-card.animated, .authority-tag.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Seção 3: Solução e Promessa - Versão Revisada */
.solution-section {
    background: #000; /* Fundo todo preto como na sua imagem */
    color: var(--white);
    padding: 60px 0;
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.solution-section .container {
    position: relative;
    z-index: 1;
}

.solution-header {
    text-align: center;
    margin-bottom: 40px;
}

.solution-section .section-title {
    color: var(--white);
    margin-bottom: 15px;
}

.solution-section .section-subtitle {
    color: #ddd;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Substituto do Vídeo: Banner de Solução */
.solution-banner {
    margin: 30px auto 40px;
    max-width: 850px;
}

.solution-image {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(238, 50, 54, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(238, 50, 54, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.solution-message {
    text-align: center;
    padding: 30px;
    max-width: 90%;
}

.solution-message i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.solution-message h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.solution-message p {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Estatísticas */
.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0 50px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Promise Container */
.promise-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promise-headline {
    text-align: center;
    margin-bottom: 30px;
}

.promise-headline h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.promise-headline h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-red);
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid var(--primary-red);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.benefit-content p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Authority Tag */
.authority-tag {
    text-align: center;
    margin: 25px 0;
}

.authority-tag span {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(238, 50, 54, 0.3);
}

.authority-tag i {
    margin-right: 8px;
}

/* CTA Secondary */
.cta-secondary {
    text-align: center;
    margin: 40px 0 20px;
}

.solution-section .cta-btn {
    background: var(--primary-red);
    padding: 16px 32px;
    font-size: 1rem;
    display: inline-block;
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(238, 50, 54, 0.4);
    transition: all 0.3s ease;
}

.solution-section .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 50, 54, 0.6);
    background: var(--dark-red);
}


/* Seção 3: Solução e Promessa */
.solution-section {
    background: linear-gradient(to bottom, #111, #000);
    color: var(--white);
    padding: 60px 0;
    position: relative;
}

.solution-section .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.solution-section .section-subtitle {
    color: #ddd;
    margin-bottom: 40px;
}

.solution-header {
    text-align: center;
    margin-bottom: 50px;
}

.solution-content {
    display: flex;
    flex-direction: column; /* Em mobile começa como coluna */
    gap: 40px;
    margin-bottom: 30px;
    background: #111; /* Fundo ligeiramente mais claro para o container */
    border-radius: 10px;
    overflow: hidden;
    padding: 0; /* Remove o padding para a imagem ir até a borda */
}

/* Imagem da solução */
.solution-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

.main-image {
    width: 100%;
    display: block;
    height: auto;
}


/* Tag "EXCLUSIVO" */
.exclusivo-tag {
    position: absolute;
    top: 50px;
    right: 0;
    background: var(--primary-red);
    color: white;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}


.overlay-text {
    position: absolute;
    top: 20px;
    right: 0;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transform: rotate(0);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.overlay-text span {
    display: block;
    transform: skewX(-10deg);
}

/* Features - caixa da direita */
.solution-features {
    background: #1a1a1a; /* Fundo escuro mas não totalmente preto */
    padding: 25px;
    width: 100%;
}


.feature-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-heading i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.feature-heading h3 {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

/* Item da lista de features */
.features-list li {
    background: #222; /* Fundo mais escuro para os itens da lista */
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
}


.features-list li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.07);
}

.features-list li i {
    color: var(--primary-red);
    margin-right: 15px;
}

.features-list li span {
    font-size: 1rem;
    line-height: 1.4;
}

/* Badge de especialistas */
.authority-badge {
    background: var(--primary-red);
    border-radius: 5px;
    padding: 15px;
    display: flex;
    align-items: center;
    margin-top: 20px;
}


.badge-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 1.5rem;
    color: white;
}

.badge-text p {
    font-weight: 600;
    line-height: 1.4;
    font-size: 1rem;
}

/* Preview de transformação */
.transformation-preview {
    margin: 40px 0;
}

.preview-heading {
    text-align: center;
    margin-bottom: 30px;
}

.preview-heading h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.preview-heading h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-red);
}

.preview-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preview-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.preview-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.preview-icon i {
    font-size: 1.5rem;
    color: white;
}

.preview-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.preview-text p {
    font-size: 0.95rem;
    color: #aaa;
}

/* CTA da solução */
.solution-cta {
    text-align: center;
    margin-top: 50px;
}

.solution-cta .cta-btn {
    background: var(--primary-red);
    font-size: 1.1rem;
    padding: 18px 30px;
}

/* Animações para a seção de solução */
.solution-image, .solution-features, .preview-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.solution-image.fade-in, .solution-features.fade-in, .preview-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.preview-item:nth-child(1) { transition-delay: 0.1s; }
.preview-item:nth-child(2) { transition-delay: 0.2s; }
.preview-item:nth-child(3) { transition-delay: 0.3s; }



/* Seção 4: Detalhamento dos Módulos */
.modules-section {
    background-color: var(--black);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.modules-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.modules-section .section-title {
    color: var(--white);
    margin-bottom: 15px;
}

.modules-section .section-subtitle {
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
}

/* Slider de Módulos */
.modules-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    z-index: 1;
}

.modules-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 20px 0;
    width: 100%;
    scrollbar-width: none; /* Firefox */
}

.modules-slider::-webkit-scrollbar {
    display: none; /* Chrome e Safari */
}

/* Setas de navegação */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-red);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: var(--dark-red);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* Cards de Módulos */
.module-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: linear-gradient(135deg, var(--primary-red) 0%, #1a1a1a 25%);
    border-radius: 15px;
    padding: 25px;
    color: var(--white);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    min-height: 400px;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(238, 50, 54, 0.2);
}

.module-icon {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-red);
}

.module-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.module-description {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 20px;
    flex-grow: 1;
}

.module-topics {
    list-style: none;
    padding: 0;
}

.module-topics li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #fff;
}

.module-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Pontos indicadores do slider */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

/* CTA dos Módulos */
.modules-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.curiosity-trigger {
    margin-bottom: 20px;
    background: rgba(238, 50, 54, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-block;
}

.curiosity-trigger p {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.curiosity-trigger i {
    color: var(--primary-red);
}


/* Seção 5: Especialistas */
.experts-section {
    background-color: var(--light-gray);
    padding: 80px 0;
    position: relative;
}

.experts-section .section-title,
.experts-section .section-subtitle {
    color: var(--black);
}

.experts-section .section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Carrossel de Especialistas */
.experts-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.experts-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 20px 0;
    width: 100%;
    scrollbar-width: none;
}

.experts-carousel::-webkit-scrollbar {
    display: none;
}

/* Cards de Especialistas */
.expert-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.expert-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.expert-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(238, 50, 54, 0.8) 100%);
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.expert-card:hover .expert-image img {
    transform: scale(1.05);
}

.expert-info {
    padding: 20px;
    background: var(--black);
    color: var(--white);
}

.expert-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.expert-specialty {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.expert-bio {
    font-size: 0.9rem;
    color: #ddd;
    line-height: 1.4;
}

/* Pontos indicadores para especialistas */
.experts-section .slider-dots {
    margin-bottom: 40px;
}

/* Credenciais dos especialistas */
.experts-credentials {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto 0;
}

.credential-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.credential-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-red);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.credential-icon i {
    color: white;
    font-size: 1.5rem;
}

.credential-info h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 5px;
}

.credential-info p {
    font-size: 0.9rem;
    color: #555;
}


/* Seção 6: Segurança e Garantia */
.security-section {
    background: linear-gradient(to bottom, #111, #000);
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 0;
}

.security-section .section-title {
    color: var(--white);
}

.security-section .section-subtitle {
    color: #aaa;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Showcase de Garantia */
.guarantee-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.guarantee-seal {
    width: 150px;
    height: 150px;
    position: relative;
    margin-bottom: 30px;
}

.seal-inner {
    width: 110%;
    height: 110%;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0 0 0 5px rgba(238, 50, 54, 0.3),
                0 0 0 10px rgba(238, 50, 54, 0.1);
    animation: pulse-seal 2s infinite;
}

@keyframes pulse-seal {
    0% {
        box-shadow: 0 0 0 0 rgba(238, 50, 54, 0.7),
                    0 0 0 10px rgba(238, 50, 54, 0.1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(238, 50, 54, 0),
                    0 0 0 20px rgba(238, 50, 54, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(238, 50, 54, 0),
                    0 0 0 0 rgba(238, 50, 54, 0);
    }
}

.seal-inner i {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.seal-inner span {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.seal-inner p {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 5px;
}

.guarantee-text {
    text-align: center;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.guarantee-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 15px;
}

.highlight-text {
    font-weight: 700;
    color: var(--primary-red);
    font-size: 1.1rem !important;
}

/* Informações de Pagamento Seguro */
.secure-payment {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.secure-payment h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.secure-payment p {
    font-size: 0.95rem !important;
    opacity: 0.8;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.payment-methods i {
    font-size: 2rem;
    color: #aaa;
}

/* Cards de Confiança */
.trust-elements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.trust-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.trust-icon i {
    font-size: 1.8rem;
    color: white;
}

.trust-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.trust-card p {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.5;
}

/* Hotmart Segura */
.hotmart-secure {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hotmart-secure img {
    max-width: 200px;
    height: auto;
}

.hotmart-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.hotmart-text p {
    font-size: 0.95rem;
    color: #ddd;
    max-width: 600px;
}

/* Banner de Confiança */
.confidence-banner {
    background: linear-gradient(45deg, var(--dark-red), var(--primary-red));
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(238, 50, 54, 0.3);
}

.confidence-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.confidence-banner p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.confidence-banner .cta-btn {
    background: white;
    color: var(--primary-red);
    font-size: 1.1rem;
    padding: 16px 30px;
}

.confidence-banner .cta-btn:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
}



/* Seção 7: Perguntas Frequentes (FAQ) */
.faq-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.faq-section .section-title,
.faq-section .section-subtitle {
    color: var(--black);
}

.faq-section .section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Container de FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Item de FAQ */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Pergunta do FAQ */
.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    padding-right: 40px;
}

.toggle-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-icon i {
    color: var(--primary-red);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.toggle-icon .fa-minus {
    display: none;
}

/* Resposta do FAQ */
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 20px;
}

/* Estado ativo do FAQ */
.faq-item.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #eee;
}

.faq-item.active .fa-plus {
    display: none;
}

.faq-item.active .fa-minus {
    display: block;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px 20px 0;
}

/* Mais perguntas - WhatsApp */
.more-questions {
    text-align: center;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.more-questions h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.more-questions p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.3rem;
    margin-right: 10px;
}


/* Seção 8: Oferta e Fechamento */
.offer-section {
    background: linear-gradient(to bottom, var(--black), #111);
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 0;
}

.offer-section .section-header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.limited-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.offer-section .section-title {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 2rem;
}

.offer-section .section-subtitle {
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Container de oferta */
.offer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

/* Conteúdo da oferta */
.offer-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px;
}

.included-content h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--white);
}

.included-list {
    list-style: none;
    padding: 0;
}

.included-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li i {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.included-list li div {
    display: flex;
    flex-direction: column;
}

.included-list li strong {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.included-list li span {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.4;
}

/* Custo de oportunidade */
.opportunity-cost {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}

.opportunity-cost h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-red);
}

.opportunity-cost p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #eee;
}

/* Garantia do curso */
.course-guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-image {
    width: 100px;
    height: auto;
}

.guarantee-text {
    text-align: center;
}

.guarantee-text h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.guarantee-text p {
    font-size: 0.95rem;
    color: #ddd;
}

/* Box de preço */
.price-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    color: var(--black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.original-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.original-price .label {
    font-size: 1rem;
    color: #777;
}

.original-price .value {
    font-size: 1.2rem;
    color: #777;
    text-decoration: line-through;
}

.current-price {
    margin-bottom: 20px;
}

.current-price .label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    display: block;
    margin-bottom: 5px;
}

.installments {
    display: flex;
    flex-direction: column;
}

.installments .value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1.2;
}

.installments .total {
    font-size: 1.1rem;
    color: #555;
}

/* Features de preço */
.price-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features .feature i {
    color: var(--primary-red);
    font-size: 1rem;
}

.price-features .feature span {
    font-size: 0.95rem;
    color: #555;
}

/* Elementos de escassez */
.scarcity-elements {
    margin-bottom: 25px;
}

.scarcity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 5px;
}

.scarcity-item i {
    color: var(--primary-red);
}

.scarcity-item span {
    font-size: 0.9rem;
    color: #333;
}

/* CTA Principal */
.primary-btn {
    background: var(--primary-red);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 18px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(238, 50, 54, 0.4);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 50, 54, 0.5);
}

/* Métodos de pagamento */
.payment-methods {
    text-align: center;
    margin-bottom: 15px;
}

.payment-methods img {
    max-width: 250px;
    height: auto;
}

/* Garantia pequena */
.small-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #555;
    font-size: 0.9rem;
}

.small-guarantee i {
    color: var(--primary-red);
}

/* Empurrão final */
.final-push {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.final-push h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.final-push p {
    font-size: 1.1rem;
    color: #ddd;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Botões de decisão */
.decision-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.decision-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.decision-btn.positive {
    background: var(--primary-red);
    color: white;
}

.decision-btn.positive:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(238, 50, 54, 0.3);
}

.decision-btn.negative {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #aaa;
}

.decision-btn.negative:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ddd;
}

/* Modal "Por quê não?" */
.why-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    position: relative;
    color: var(--black);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-red);
    text-align: center;
}

.modal-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.5;
}

.modal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.modal-content li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #555;
}

.modal-content .whatsapp-btn {
    margin-top: 10px;
}



/* Seção 9: Footer */
.footer-section {
    background-color: var(--black);
    color: #aaa;
    padding: 60px 0 20px;
    position: relative;
}

/* Conteúdo do Footer */
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-logo h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.95rem;
}

/* Contato do Footer */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-title i {
    font-size: 1.3rem;
    color: var(--primary-red);
}

.contact-title h3 {
    font-size: 1.3rem;
    color: var(--white);
}

.footer-contact p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #1fbd5a;
    transform: translateY(-3px);
}

/* Redes Sociais */
.social-media {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

/* Navegação do Footer */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.nav-column h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.nav-column ul {
    list-style: none;
    padding: 0;
}

.nav-column ul li {
    margin-bottom: 10px;
}

.nav-column ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-column ul li a:hover {
    color: var(--primary-red);
}

/* Informações de pagamento seguro */
.secure-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.secure-badges img {
    height: 40px;
    width: auto;
}

.payment-info p {
    font-size: 0.85rem;
}

/* Disclaimer e Copyright */
.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.copyright p {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 5px;
}

/* Botão flutuante de WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Botão de Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
}


/* Menu Móvel - CSS Completo e Revisado */
/* Botão do menu */
.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    z-index: 999;
    position: relative;
}

/* Estrutura principal do menu móvel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #111;
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

/* Classe ativa para exibir o menu */
.mobile-menu.active {
    right: 0;
}

/* Cabeçalho do menu móvel */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--primary-red);
}

/* Logo no menu */
.mobile-menu-header .logo {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Botão de fechar */
.close-menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Conteúdo de navegação do menu */
.mobile-nav {
    padding: 20px;
}

/* Lista de links */
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.mobile-nav ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
    font-weight: 600;
}

.mobile-nav ul li a:hover {
    color: var(--primary-red);
}



.menu-overlay.active {
    display: block;
}


.instructors-container {
    width: 100%;
    margin: 20px auto;
    padding: 0 15px;
    text-align: center;
    max-width: 1200px; 
  }

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; 
    margin: 0 auto;
    z-index: 10; 
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(238, 50, 54, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================= */

/* --- 1. TABLET E TELAS MÉDIAS (min-width: 768px) --- */
@media screen and (min-width: 768px) {
    
    /* Tipografia Geral Aumentada */
    .headline { font-size: 3rem; }
    .subheadline { font-size: 1.4rem; }
    .section-title { font-size: 2.2rem; }
    .section-subtitle { font-size: 1.2rem; }
    .faq-question h3 { font-size: 1.2rem; }

    /* Header & Hero */
    .cta-btn { font-size: 1.2rem; padding: 18px 36px; }
    .countdown-item { min-width: 80px; }
    .countdown-item span:first-child { font-size: 2.2rem; }
    
    /* Container de Instrutores / Vídeo */
    .instructors-container { padding: 0 30px; margin: 30px auto; }
    .video-wrapper { max-width: 80%; } 

    /* Seção de Dor (Pain Points) */
    .pain-points { flex-direction: row; flex-wrap: wrap; }
    .pain-point { width: calc(50% - 15px); } 
    .comparison-image { flex-direction: row; justify-content: center; }

    /* Seção Solução */
    .solution-content { flex-direction: row; }
    .solution-image { width: 40%; }
    .solution-features { width: 60%; }

    /* Módulos e Especialistas (Cards) */
    .module-card { flex: 0 0 350px; }
    .expert-card { flex: 0 0 350px; }
    .experts-credentials { flex-direction: row; }
    .credential-item { flex: 1; }

    /* Garantia e Segurança */
    .guarantee-showcase { flex-direction: row; text-align: left; padding: 40px; gap: 30px; }
    .guarantee-seal { margin-bottom: 0; flex-shrink: 0; }
    .guarantee-text { text-align: left; }
    .secure-payment h4, .payment-methods { justify-content: flex-start; }
    .trust-elements { grid-template-columns: repeat(2, 1fr); }
    .hotmart-secure { flex-direction: row; text-align: left; }
    .course-guarantee { flex-direction: row; justify-content: center; }

    /* Oferta e Decisão */
    .decision-buttons { flex-direction: row; }
    .decision-btn { flex: 1; }

    /* Footer */
    .footer-content { flex-direction: row; justify-content: space-between; }
    .footer-logo, .footer-contact { width: 45%; }
    .footer-nav { flex-direction: row; justify-content: space-between; }
    .nav-column { width: 30%; }
}


/* --- 2. DESKTOP INTERMEDIÁRIO (min-width: 992px) --- */
@media screen and (min-width: 992px) {
    .instructors-container { padding: 0 50px; margin: 40px auto; }
}


/* --- 3. DESKTOP E LAPTOPS (min-width: 1024px) --- */
@media screen and (min-width: 1024px) {
    
    /* Tipografia Desktop Gigante */
    .headline { font-size: 4rem; }
    .subheadline { font-size: 1.6rem; }
    .section-title, 
    .modules-section .section-title,
    .security-section .section-title,
    .faq-section .section-title,
    .offer-section .section-title { font-size: 2.5rem; }
    
    .modules-section .section-subtitle { font-size: 1.2rem; }
    .guarantee-text h3, .confidence-banner h3, .final-push h3 { font-size: 1.8rem; }
    .faq-question h3 { font-size: 1.3rem; }

    /* Header */
    .header-content { padding: 40px; }

    /* Vídeo Ajustado */
    .video-wrapper { max-width: 70%; }

    /* Cards Ajustados para Desktop (Menores para caber mais) */
    .module-card { flex: 0 0 300px; }
    .expert-card { flex: 0 0 300px; }
    
    /* Setas dos Sliders */
    .slider-prev { left: 20px; }
    .slider-next { right: 20px; }

    /* Grid de Confiança */
    .trust-elements { grid-template-columns: repeat(4, 1fr); } 

    /* Layout da Oferta */
    .offer-container { flex-direction: row; }
    .offer-content { flex: 3; }
    .price-box { flex: 2; }

    /* Footer Ajuste */
    .footer-section { padding-top: 80px; }
    .footer-logo h2 { font-size: 2rem; }
}


/* --- 4. MONITORES WIDE / TELAS GRANDES (min-width: 1400px) --- */
@media screen and (min-width: 1400px) {
    .video-wrapper { 
        max-width: 60%; 
    }
}