/**
 * CSS para Landing Page - Mentoria ClickUp
 * 
 * Estrutura organizada por seções:
 * 1. Variáveis e Reset
 * 2. Componentes Globais
 * 3. Hero Section
 * 4. Comparação (Problema x Solução)
 * 5. Depoimentos / Slider
 * 6. Metodologia / Timeline
 * 7. Mentor Section
 * 8. Pricing / Oferta
 * 9. FAQ (usando cafe-accordion)
 * 10. Footer
 * 11. Modais
 * 12. Utilitários e Animações
 * 13. Responsividade
 * 
 * @package CafeTheme
 * @subpackage LandingPages
 * @version 2.0.0
 */

/* =============================================
   1. VARIÁVEIS E RESET
   ============================================= */

:root {
    /* Cores principais - Paleta clara */
    --color-primary: #7B68EE;
    --color-primary-dark: #6a5acd;
    --color-primary-light: #9b8bf0;
    --color-secondary: #FF6B6B;
    --color-success: #4CAF50;
    --color-danger: #F44336;
    --color-warning: #FFC107;
    
    /* Cores neutras - FUNDOS CLAROS (predominantes) */
    --color-white: #FFFFFF;
    --color-light-100: #F8F9FA;
    --color-light-200: #E9ECEF;
    --color-light-300: #DEE2E6;
    
    /* Textos - ESCUROS (contraste garantido) */
    --color-text-primary: #1D1E30;      /* Títulos */
    --color-text-secondary: #4A4B5C;    /* Subtítulos */
    --color-text-muted: #6C757D;        /* Textos auxiliares */
    
    /* Bordas e sombras */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-pill: 50px;
    
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 30px 40px -10px rgba(0, 0, 0, 0.15);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 1.5rem;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary-dark);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    gap: 0.5rem;
    line-height: 1;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

.btn-outline-white {
    background: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-xl {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(123, 104, 238, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(123, 104, 238, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(123, 104, 238, 0);
    }
}

/* Seções */
.section-padding {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.title-lg {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-success {
    color: var(--color-success);
}

.text-danger {
    color: var(--color-danger);
}

/* Backgrounds */
.bg-light {
    background-color: var(--color-light-100);
}

.bg-white {
    background-color: var(--color-white);
}

/* =============================================
   2. COMPONENTES GLOBAIS
   ============================================= */

/* Botão flutuante home */
.home-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: all 0.3s ease;
}

.home-float:hover {
    transform: scale(1.1) rotate(360deg);
    background: var(--color-primary-dark);
    color: var(--color-white);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 1.25rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Trust badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.trust-badge i {
    color: var(--color-white);
}

/* =============================================
   3. HERO SECTION
   Fundo gradiente escuro, texto BRANCO
   Duas colunas: texto à esquerda, imagem à direita
   ============================================= */

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); /* Fundo escuro garantido */
    color: #ffffff; /* Texto branco puro */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0L60 30L30 60L0 30L30 0Z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Grid de duas colunas */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas iguais */
    gap: 4rem; /* var(--spacing-xl) */
    align-items: center;
}

/* COLUNA ESQUERDA - Texto */
.hero-content {
    max-width: 600px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15); /* Mais visível no fundo escuro */
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px; /* var(--border-radius-pill) */
    font-size: 0.875rem;
    margin-bottom: 1.5rem; /* var(--spacing-md) */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff; /* Branco garantido */
}

.trust-badge i {
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem; /* var(--spacing-md) */
    color: #ffffff; /* BRANCO - resolvido o problema do título preto */
}

.gradient-text {
    background: linear-gradient(135deg, #7B68EE 0%, #9b8bf0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem; /* var(--spacing-lg) */
    color: rgba(255, 255, 255, 0.9); /* Branco com opacidade para hierarquia */
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* var(--spacing-md) */
}

.hero-stats {
    display: flex;
    gap: 2rem; /* var(--spacing-lg) */
    margin-top: 0.5rem; /* var(--spacing-sm) */
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9); /* Branco com opacidade */
}

.stat i {
    color: #7B68EE; /* Cor primária para ícones */
    font-size: 1.1rem;
}

/* Botão primário - ajustado para fundo escuro */
.btn-primary {
    background: #7B68EE; /* Cor sólida em vez de gradiente */
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #6a5acd;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(123, 104, 238, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(123, 104, 238, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(123, 104, 238, 0);
    }
}

/* COLUNA DIREITA - Dashboard Visual */
.hero-visual {
    position: relative;
}

.dashboard-window {
    background: #ffffff;
    border-radius: 16px; /* var(--border-radius-lg) */
    overflow: hidden;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
    position: relative; /* Adicionado para referência do posicionamento absoluto */
}

.dashboard-window:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.window-header {
    background: #f1f3f5; /* var(--color-light-200) */
    padding: 0.75rem 1.5rem; /* var(--spacing-sm) var(--spacing-md) */
    display: flex;
    align-items: center;
    gap: 0.75rem; /* var(--spacing-sm) */
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6; /* var(--color-light-300) */
}

.dots span:first-child { background: #FF5F56; }
.dots span:nth-child(2) { background: #FFBD2E; }
.dots span:last-child { background: #27C93F; }

.address-bar {
    flex: 1;
    background: #ffffff;
    padding: 4px 12px;
    border-radius: 50px; /* var(--border-radius-pill) */
    font-size: 0.875rem;
    color: #6c757d; /* var(--color-text-muted) */
    text-align: center;
}

.dashboard-window img {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   PLAYER CENTRALIZADO COM EFEITO DE PULSAÇÃO
   ============================================= */
.preview-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: #7B68EE;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.5);
    
    /* EFEITO DE PULSAÇÃO - ONDAS */
    animation: playPulse 2s infinite;
}

/* Efeito de ondas ao redor do botão */
.preview-play::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    z-index: -1;
    animation: wavePulse 2s infinite;
}

.preview-play::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(123, 104, 238, 0.3); /* Roxo com transparência */
    z-index: -2;
    animation: wavePulse 2s infinite 0.5s; /* Delay para efeito alternado */
}

/* Animação principal do botão */
@keyframes playPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 30px 40px rgba(123, 104, 238, 0.5);
        background: #ffffff;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    }
}

/* Animação das ondas */
@keyframes wavePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.preview-play:hover {
    animation: none; /* Para a pulsação ao passar o mouse */
    transform: translate(-50%, -50%) scale(1.15);
    background: #7B68EE;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
}

.preview-play:hover::before,
.preview-play:hover::after {
    animation: none; /* Para as ondas ao passar o mouse */
    opacity: 0;
}

/* Versão alternativa - APENAS PULSação sem ondas (mais sutil) */
.preview-play-subtle {
    animation: subtlePulse 2s infinite;
}

@keyframes subtlePulse {
    0% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
        box-shadow: 0 20px 40px rgba(123, 104, 238, 0.6);
    }
    100% {
        opacity: 0.9;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .preview-play {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        animation: playPulse 2s infinite; /* Mantém animação em mobile */
    }
}

@media (max-width: 480px) {
    .preview-play {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        animation: playPulseMobile 2s infinite; /* Animação mais suave em mobile */
    }
    
    @keyframes playPulseMobile {
        0% {
            transform: translate(-50%, -50%) scale(1);
        }
        50% {
            transform: translate(-50%, -50%) scale(1.05); /* Menor intensidade */
        }
        100% {
            transform: translate(-50%, -50%) scale(1);
        }
    }
    
    /* Remove ondas em mobile para performance */
    .preview-play::before,
    .preview-play::after {
        display: none;
    }
}

/* Versão para o botão de play nos slides de depoimento */
.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-white);
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: subtlePulse 2s infinite; /* Animação mais suave */
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--color-primary);
    color: var(--color-white);
    animation: none; /* Para a animação ao passar o mouse */
}

/* =============================================
   RESPONSIVIDADE DA HERO SECTION
   ============================================= */

/* Tablets (até 992px) */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr; /* Uma coluna em tablets */
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Smartphones (até 768px) */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat {
        width: 100%;
        justify-content: center;
    }
    
    .preview-play {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

/* Smartphones pequenos (até 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
    
    .preview-play {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Remover efeito de pulso em mobile para performance */
    .preview-play::after {
        animation: none;
    }
}

/* =============================================
   4. COMPARAÇÃO (PROBLEMA X SOLUÇÃO)
   ============================================= */

.bento-grid-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-top: var(--spacing-xl);
}

.bento-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.pain-card .card-icon {
    background: rgba(244, 67, 54, 0.1);
    color: var(--color-danger);
}

.gain-card .card-icon {
    background: rgba(76, 175, 80, 0.1);
    color: var(--color-success);
}

.bento-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.check-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.check-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-text-secondary);
}

.list-danger li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--color-danger);
    font-weight: bold;
}

.list-success li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

.transition-center {
    text-align: center;
}

.days-pill {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.arrow-anim {
    font-size: 2rem;
    color: var(--color-primary);
    animation: moveRight 2s infinite;
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(20px);
        opacity: 0.5;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =============================================
   5. DEPOIMENTOS / SLIDER
   TODOS OS VÍDEOS SÃO SHORTS (9:16) - VERTICAL
   TÍTULOS BRANCOS GARANTIDOS (CORRIGIDO)
   ============================================= */

.testimonials-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 0;
}

/* HEADER DA SEÇÃO - TODOS OS TEXTOS BRANCOS */
.testimonials-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header h2 span,
.testimonials-section .section-header p {
    color: #ffffff !important;
}

.testimonials-section .section-header .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-white {
    color: #ffffff !important;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.slider-counter {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
}

.slider-arrows {
    display: flex;
    gap: 1rem;
}

.prev-btn,
.next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover,
.next-btn:hover {
    background: #ffffff;
    color: #7B68EE;
}

.video-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.video-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

/* =============================================
   VIDEO BOX - SHORTS (9:16) - VERTICAL
   ============================================= */
.video-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1D1E30;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

/* =============================================
   CLASSES PARA AJUSTE AUTOMÁTICO DE THUMBNAILS
   ============================================= */

/* FORÇAR PREENCHIMENTO VERTICAL - para imagens mais largas que o container */
.video-thumb.force-vertical {
    background-size: auto 100% !important;
    background-position: center center !important;
}

/* FORÇAR PREENCHIMENTO HORIZONTAL - para imagens mais altas que o container */
.video-thumb.force-horizontal {
    background-size: 100% auto !important;
    background-position: center center !important;
}

/* COVER PADRÃO - para imagens na proporção correta */
.video-thumb.cover-default {
    background-size: cover !important;
    background-position: center center !important;
}

/* AJUSTE FINO DE POSIÇÃO */
.video-thumb.adjust-top {
    background-position: center 20% !important;
}

.video-thumb.adjust-bottom {
    background-position: center 80% !important;
}

.video-thumb.adjust-left {
    background-position: 30% center !important;
}

.video-thumb.adjust-right {
    background-position: 70% center !important;
}

.video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Overlay escuro na thumbnail */
.video-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: background 0.3s ease;
}

.video-thumb:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #7B68EE;
    font-size: 1.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
    position: relative;
    animation: testimonialPulse 2s infinite;
}

@keyframes testimonialPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 30px 40px rgba(123, 104, 238, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
    }
}

.play-btn:hover {
    animation: none;
    transform: scale(1.15);
    background: #7B68EE;
    color: #ffffff;
}

/* Iframe do YouTube - ocupa 100% do container */
.video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    border: none;
}

/* =============================================
   SLIDE INFO - TODOS OS TEXTOS BRANCOS
   ============================================= */
.slide-info {
    color: #ffffff;
    width: 100%;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.client-meta img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
}

.client-meta h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.client-meta span {
    font-size: 0.95rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.result-tag {
    display: inline-block;
    background: #4CAF50;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Stats row - CARDS COM TEXTO BRANCO */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.stat-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* =============================================
   RESPONSIVIDADE - SHORTS VERTICAIS
   ============================================= */

/* Tablets */
@media (max-width: 992px) {
    .slide-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-box {
        max-width: 250px;
    }
    
    .slide-info {
        text-align: center;
    }
    
    .client-meta {
        justify-content: center;
    }
    
    .stats-row {
        gap: 1.5rem;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .slider-container {
        padding: 1.5rem;
    }
    
    .video-box {
        max-width: 220px;
    }
    
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .client-meta {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .client-meta img {
        width: 80px;
        height: 80px;
    }
    
    .quote {
        font-size: 1.1rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
    .slider-container {
        padding: 1rem;
    }
    
    .slider-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .video-box {
        max-width: 180px;
    }
    
    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        animation: testimonialPulseMobile 2s infinite;
    }
    
    @keyframes testimonialPulseMobile {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }
    
    .client-meta h4 {
        font-size: 1.2rem;
        color: #ffffff;
    }
    
    .quote {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.95);
    }
}

/* =============================================
   6. METODOLOGIA - VISÃO GANTT CLICKUP
   ============================================= */

.methodology-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

/* Container do Gantt */
.gantt-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
}

/* Cabeçalho do Gantt */
.gantt-header {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #7B68EE;
    padding-bottom: 1rem;
}

.gantt-header-left {
    flex: 0 0 250px;
    padding-left: 1rem;
}

.gantt-title {
    font-weight: 700;
    color: #1D1E30;
    font-size: 1.1rem;
}

.gantt-header-days {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
}

.gantt-day {
    font-weight: 600;
    color: #7B68EE;
    font-size: 0.95rem;
    padding: 0.5rem;
    background: rgba(123, 104, 238, 0.05);
    border-radius: 8px;
}

/* Linhas do Gantt */
.gantt-rows {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gantt-row {
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.gantt-row:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

/* Informações da linha */
.gantt-row-info {
    flex: 0 0 250px;
    padding-right: 1rem;
}

.gantt-row-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.gantt-row-title h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1D1E30;
    margin: 0;
}

.gantt-days-badge {
    background: #7B68EE;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}

.gantt-row-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.gantt-item-tag {
    background: #ffffff;
    color: #6c757d;
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    white-space: nowrap;
}

/* Barras do Gantt */
.gantt-row-bars {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    align-items: center;
    min-height: 70px;
}

.gantt-cell {
    height: 100%;
    min-height: 60px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gantt-cell.empty {
    background: transparent;
}

.gantt-cell.task {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    cursor: pointer;
    position: relative;
    animation: slideIn 0.5s ease-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scaleX(0.8);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.gantt-cell.task:hover {
    transform: scaleY(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.gantt-task-content {
    text-align: center;
    color: #ffffff;
}

.gantt-task-label {
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.gantt-task-days {
    font-size: 0.6rem;
    opacity: 0.9;
    display: block;
}

/* Legenda */
.gantt-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

/* Responsividade */
@media (max-width: 992px) {
    .gantt-container {
        padding: 1.5rem;
    }
    
    .gantt-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gantt-header-left {
        flex: auto;
    }
    
    .gantt-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gantt-row-info {
        flex: auto;
        width: 100%;
    }
    
    .gantt-row-bars {
        width: 100%;
    }
    
    .gantt-task-label {
        white-space: normal;
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .gantt-header-days {
        gap: 0.25rem;
    }
    
    .gantt-day {
        font-size: 0.8rem;
        padding: 0.25rem;
    }
    
    .gantt-cell.task {
        padding: 0.25rem;
    }
    
    .gantt-task-label {
        display: none; /* Esconde texto em telas muito pequenas */
    }
    
    .gantt-task-days {
        font-size: 0.5rem;
    }
    
    .gantt-legend {
        gap: 1rem;
    }
    
    .legend-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gantt-container {
        padding: 1rem;
    }
    
    .gantt-header-days {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.1rem;
    }
    
    .gantt-day {
        font-size: 0.7rem;
        padding: 0.2rem;
    }
    
    .gantt-row-bars {
        gap: 0.25rem;
    }
    
    .gantt-cell {
        min-height: 40px;
    }
}

/* =============================================
   7. MENTOR SECTION
   ============================================= */

.mentor-section {
    background: linear-gradient(135deg, var(--color-light-100) 0%, var(--color-white) 100%);
}

.mentor-bento {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mentor-photo {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.mentor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cert-badge {
    position: absolute;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg);
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mentor-text {
    padding: var(--spacing-xl);
}

.mentor-text .label {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.25rem 1rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.mentor-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--color-text-primary);
}

.mentor-title {
    font-size: 1.125rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.bio {
    margin-bottom: var(--spacing-lg);
}

.bio p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.mentor-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.m-stat {
    text-align: center;
    padding: var(--spacing-sm);
    background: var(--color-light-100);
    border-radius: var(--border-radius-md);
}

.m-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.m-stat span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* =============================================
   8. PRICING / OFERTA
   ============================================= */

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.pricing-box {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-header {
    background: var(--color-light-100);
    padding: var(--spacing-xl);
    text-align: center;
    border-bottom: 1px solid var(--color-light-300);
}

.offer-tag {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.pricing-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
}

.pricing-left {
    text-align: center;
    padding-right: var(--spacing-xl);
    border-right: 1px solid var(--color-light-300);
}

.price-display {
    margin-bottom: var(--spacing-lg);
}

.old-price {
    font-size: 1.5rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.new-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
}

.new-price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.payment-info {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.urgency-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 107, 0.1);
    color: var(--color-danger);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.urgency-note i {
    font-size: 1rem;
}

.security-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.security-icons span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.security-icons i {
    color: var(--color-success);
}

.pricing-right {
    padding-left: var(--spacing-xl);
}

.pricing-right h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-primary);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-light-200);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--color-success);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.enterprise-footer {
    background: var(--color-light-100);
    padding: var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--color-light-300);
}

.enterprise-footer p {
    color: var(--color-text-secondary);
    margin: 0;
}

.enterprise-footer a {
    color: var(--color-primary);
    font-weight: 600;
}

.enterprise-footer a:hover {
    text-decoration: underline;
}

/* Ajustes para a seção de investimento */
.investment-value {
    margin-bottom: 1.5rem;
}

.investment-label {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7B68EE;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.investment-price {
    font-size: 4rem;
    font-weight: 800;
    color: #1D1E30;
    line-height: 1.1;
}

.payment-detail {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* =============================================
   MODAL DE MENTORIA - ESTILOS ESPECÍFICOS
   ============================================= */

.modal-content--mentoria {
    max-width: 550px;
}

.modal-content--mentoria .modal-header {
    background: linear-gradient(135deg, #7B68EE 0%, #6a5acd 100%);
    color: white;
    padding: 2rem 2rem 1.5rem;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    text-align: center;
}

.modal-content--mentoria .modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.modal-content--mentoria .modal-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.95);
}

.modal-content--mentoria .modal-body {
    padding: 2rem;
}

/* Formulário */
.mentoria-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1D1E30;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7B68EE;
    box-shadow: 0 0 0 3px rgba(123, 104, 238, 0.1);
}

/* Grupo de rádio */
.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: auto;
    margin: 0;
}

/* Caixa de informação */
.info-box {
    background: rgba(123, 104, 238, 0.05);
    border-left: 4px solid #7B68EE;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin: 0.5rem 0;
}

.info-box i {
    color: #7B68EE;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-box p {
    font-size: 0.9rem;
    color: #495057;
    margin: 0;
}

.info-box strong {
    color: #1D1E30;
}

/* Botão do WhatsApp */
#sendToWhatsApp {
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

#sendToWhatsApp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Disclaimer */
.form-disclaimer {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
    margin-top: 0.5rem;
}

/* Destaque para assessoria */
.enterprise-highlight {
    background: rgba(123, 104, 238, 0.03);
    border: 1px dashed #7B68EE;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    text-align: center;
}

.enterprise-highlight h4 {
    font-size: 1rem;
    color: #1D1E30;
    margin-bottom: 0.5rem;
}

.enterprise-highlight p {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 0.25rem;
}

.highlight-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #7B68EE;
    margin: 0.25rem 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-content--mentoria {
        width: 95%;
    }
    
    .modal-content--mentoria .modal-header {
        padding: 1.5rem;
    }
    
    .modal-content--mentoria .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-content--mentoria .modal-body {
        padding: 1.5rem;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* =============================================
   TOAST DE SUCESSO - REDIRECIONAMENTO WHATSAPP
   ============================================= */

.success-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    width: 90%;
}

.success-toast.show {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.success-toast-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #25D366;
}

.success-toast-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #25D366, #7B68EE, #25D366);
    background-size: 200% 100%;
    animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.success-icon {
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulseSuccess 2s infinite;
}

.success-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes pulseSuccess {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.success-message h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1D1E30;
    margin-bottom: 0.75rem;
}

.success-message p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.success-message p.small {
    font-size: 0.85rem;
    color: #adb5bd;
}

.success-message strong {
    color: #25D366;
    font-weight: 700;
}

.success-loader {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e9ecef;
    border-top-color: #25D366;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Animações de entrada */
.success-toast.show .success-icon {
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 480px) {
    .success-toast-content {
        padding: 1.5rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon i {
        font-size: 2rem;
    }
    
    .success-message h4 {
        font-size: 1.25rem;
    }
    
    .success-message p {
        font-size: 0.9rem;
    }
}

/* =============================================
   9. FAQ (USANDO CAFE-ACCORDION)
   ============================================= */

.faq-section {
    background: var(--color-white);
}

.cafe-accordion {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.cafe-accordion-item {
    margin-bottom: var(--spacing-sm);
    border: 1px solid var(--color-light-300);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.cafe-accordion-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.cafe-accordion-header {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-white);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.cafe-accordion-header:hover {
    background: var(--color-light-100);
}

.cafe-accordion-header i {
    transition: transform 0.3s ease;
    color: var(--color-primary);
}

.cafe-accordion-content {
    padding: 0 var(--spacing-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--color-white);
}

.cafe-accordion-content.active {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    max-height: 300px; /* Ajustar conforme necessário */
}

.cafe-accordion-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   10. FOOTER
   ============================================= */

.lp-footer {
    background: var(--color-text-primary);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-contact p {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-contact i {
    color: var(--color-primary-light);
    width: 20px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

/* =============================================
   11. MODAIS - VERSÃO CORRIGIDA (CENTRALIZADA)
   ============================================= */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.modal.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 30, 48, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: auto;
    z-index: 1001;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(0);
    transition: transform 0.3s ease;
    margin: 0;
}

.modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-light-200);
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1002;
}

.close-modal:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotate(90deg);
}

/* =============================================
   MODAL DE VÍDEO - (NÃO MEXIDO)
   ============================================= */
#videoPlayer {
    width: 100%;
    height: 500px;
}

#videoPlayer iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* =============================================
   MODAL DE VERIFICAÇÃO CLICKUP - LAYOUT DUAS COLUNAS
   Imagem à esquerda (ocupando TELA TODA), texto à direita
   ============================================= */
#verificationModal .modal-content {
    max-width: 800px; /* Aumentado para dar mais espaço */
}

#verificationModal .modal-body {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 550px; /* Altura total maior */
}

/* Coluna da imagem - OCUPANDO TELA TODA */
#verificationModal .modal-image {
    background: linear-gradient(135deg, #7B68EE 0%, #6a5acd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    height: 100%;
    min-height: 550px; /* Altura igual ao body */
}

/* IMAGEM - AGORA OCUPA A TELA TODA */
#verificationModal .modal-image img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 450px; /* Aumentado drasticamente */
    width: 95%; /* Quase toda largura */
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

/* Coluna do texto */
#verificationModal .modal-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background: #ffffff;
    border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
}

#verificationModal .modal-text h3 {
    font-size: 2rem; /* Aumentado */
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1D1E30;
    line-height: 1.2;
}

#verificationModal .modal-text p {
    font-size: 1.1rem; /* Aumentado */
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Badge de verificado */
#verificationModal .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(123, 104, 238, 0.1);
    color: #7B68EE;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 2rem;
    width: fit-content;
}

#verificationModal .verified-badge i {
    font-size: 1.1rem;
}

/* =============================================
   RESPONSIVIDADE DO MODAL DE VERIFICAÇÃO
   ============================================= */

/* Tablets - vira uma coluna */
@media (max-width: 768px) {
    #verificationModal .modal-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    #verificationModal .modal-image {
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        padding: 2.5rem;
        min-height: 350px;
    }
    
    #verificationModal .modal-image img {
        max-height: 280px;
    }
    
    #verificationModal .modal-text {
        border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
        padding: 2.5rem;
        text-align: center;
        align-items: center;
    }
    
    #verificationModal .modal-text h3 {
        font-size: 1.75rem;
    }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
    #verificationModal .modal-image {
        min-height: 280px;
        padding: 1.5rem;
    }
    
    #verificationModal .modal-image img {
        max-height: 220px;
    }
    
    #verificationModal .modal-text {
        padding: 1.5rem;
    }
    
    #verificationModal .modal-text h3 {
        font-size: 1.5rem;
    }
    
    #verificationModal .modal-text p {
        font-size: 1rem;
    }
}



/* =============================================
   12. UTILITÁRIOS E ANIMAÇÕES
   ============================================= */

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-center {
    text-align: center;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   13. RESPONSIVIDADE
   ============================================= */

/* Telas grandes (desktops, até 1200px) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .title-lg {
        font-size: 2.25rem;
    }
    
    .pricing-content {
        padding: var(--spacing-lg);
    }
}

/* Telas médias (tablets, até 992px) */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .bento-grid-comparison {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .transition-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: var(--spacing-md) 0;
    }
    
    .arrow-anim {
        transform: rotate(90deg);
    }
    
    .slide-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .mentor-bento {
        grid-template-columns: 1fr;
    }
    
    .mentor-photo {
        min-height: 300px;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .pricing-left {
        border-right: none;
        border-bottom: 1px solid var(--color-light-300);
        padding-right: 0;
        padding-bottom: var(--spacing-lg);
    }
    
    .pricing-right {
        padding-left: 0;
    }
    
    .stats-row {
        gap: var(--spacing-md);
    }
    
    .timeline-modern::before {
        left: 40px;
    }
    
    .timeline-step,
    .timeline-step:nth-child(even) {
        flex-direction: row;
    }
    
    .step-marker {
        margin: 0 var(--spacing-md) 0 0;
    }
}

/* Telas pequenas (smartphones, até 768px) */
@media (max-width: 768px) {
    .section-padding {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .title-lg {
        font-size: 2rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
    }
    
    #videoPlayer {
        height: 300px;
    }
    
    .mentor-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .security-icons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .timeline-modern::before {
        left: 30px;
    }
    
    .step-marker {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        margin-right: var(--spacing-sm);
    }
    
    .step-marker span {
        font-size: 0.75rem;
    }
}

/* Telas muito pequenas (até 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-xl {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .new-price {
        font-size: 2.5rem;
    }
    
    .pricing-header {
        padding: var(--spacing-lg);
    }
    
    .pricing-header h2 {
        font-size: 1.75rem;
    }
    
    .feature-list li {
        font-size: 0.95rem;
    }
    
    .modal-body {
        padding: var(--spacing-lg);
    }
    
    .home-float {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cafe-accordion-header {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .step-marker {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }
}