/* 
   Colmeia Studios Academy - Férias com IA
   Design System & Estilização Premium
   Paleta de Cores: Azul Escuro Profundo, Amarelo/Dourado e Branco
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* -------------------------------------------------------------
   1. VARIÁVEIS DO SISTEMA DE DESIGN (CSS VARIABLES)
   ------------------------------------------------------------- */
:root {
    /* Cores de Fundo e Layout */
    --bg-dark-deep: #000000;       /* Fundo ultra-escuro (Preto Profundo) */
    --bg-dark-card: #0a0a0a;       /* Fundo de cards/seções escuro */
    --bg-dark-accent: #111111;     /* Fundo de destaque escuro */
    --bg-light-section: #0a0a0a;   /* Fundo escuro para seções alternadas (mantendo o tema dark) */
    --bg-light-card: #111111;      /* Cards um pouco mais claros, mas ainda dark */

    /* Cores Primárias e Secundárias */
    --primary: #000000;            /* Preto corporativo */
    --primary-light: #111111;      /* Preto suave */
    --accent: #FFB800;             /* Amarelo dourado mel principal */
    --accent-glow: #F5A623;        /* Dourado escuro para destaque */
    --accent-dark: #FFC93C;        /* Amarelo mais claro para contraste */
    
    /* Cores Auxiliares */
    --text-light-primary: #FFFFFF; /* Texto branco */
    --text-light-secondary: #E0E0E0;/* Texto branco suavizado */
    --text-dark-primary: #FFFFFF;  /* Adaptando para o tema dark global */
    --text-dark-secondary: #E0E0E0;/* Adaptando para o tema dark global */
    --success: #39FF14;            /* Verde neon suave */
    --success-alt: #00E676;        /* Verde neon alternativo */
    --error: #ef4444;              /* Vermelho erro */
    --border-color-dark: rgba(255, 184, 0, 0.15); /* Bordas douradas sutis */
    --border-color-light: rgba(57, 255, 20, 0.2);  /* Bordas verde neon para seções de destaque */

    /* Tipografia */
    --font-heading: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Efeitos de Transição e Sombras */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 20px rgba(255, 184, 0, 0.3);
    --shadow-neon: 0 0 15px rgba(57, 255, 20, 0.3);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* -------------------------------------------------------------
   2. ESTILOS GLOBAIS E RESETS
   ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    /* Ajuste crítico: evita que o cabeçalho fixo cubra o topo das seções ao rolar por âncoras */
    scroll-padding-top: 85px; 
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark-deep);
    color: var(--text-light-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-dark-accent);
    border-radius: 5px;
    border: 2px solid var(--bg-dark-deep);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* -------------------------------------------------------------
   3. ESTILOS DE LAYOUT E COMPONENTES REUTILIZÁVEIS
   ------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Alinhamento de Texto e Destaques */
.text-center { text-align: center; }
.color-accent { color: var(--accent); }

/* Títulos de Seção Premium */
.section-title-wrapper {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 12px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 50px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title.light-theme {
    color: var(--text-dark-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light-secondary);
}

.section-subtitle.light-theme {
    color: var(--text-dark-secondary);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Botões Modernos e Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--bg-dark-deep);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light-primary);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--bg-dark-deep);
    color: var(--text-light-primary);
    border: 1px solid var(--border-color-dark);
}

.btn-light:hover {
    background: var(--bg-dark-card);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
}

/* -------------------------------------------------------------
   4. CABEÇALHO (STICKY HEADER)
   ------------------------------------------------------------- */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.header-main.scrolled {
    background: rgba(6, 13, 23, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Fallback de logo inteligente */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-fallback {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-light-primary);
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* -------------------------------------------------------------
   5. SEÇÃO HERO
   ------------------------------------------------------------- */
.section-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
                var(--bg-dark-deep);
    overflow: hidden;
}

/* Efeito de grade sutil ao fundo */
.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-badge {
    background: rgba(245, 158, 11, 0.07);
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge.success-badge {
    background: rgba(16, 185, 129, 0.07);
    border-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 60%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light-secondary);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
}

.hero-urgency {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.05em;
}

/* Painel de Ações do Hero */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

/* CONTADOR REGRESSIVO PREMIUM */
.countdown-container {
    background: rgba(12, 25, 44, 0.6);
    border: 1px solid var(--border-color-dark);
    border-radius: var(--border-radius-md);
    padding: 30px;
    max-width: 550px;
    margin: 40px auto 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.countdown-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light-secondary);
    margin-bottom: 20px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.countdown-box {
    background: rgba(6, 13, 23, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.1);
    padding: 16px 8px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
}

.countdown-box:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light-secondary);
    font-weight: 500;
}

@media (max-width: 500px) {
    .countdown-grid {
        gap: 8px;
    }
    .countdown-number {
        font-size: 1.75rem;
    }
    .countdown-label {
        font-size: 0.65rem;
    }
}

/* -------------------------------------------------------------
   6. SEÇÃO "POR QUE PARTICIPAR?"
   ------------------------------------------------------------- */
.section-why {
    background-color: var(--bg-light-section);
    color: var(--text-dark-primary);
}

.why-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light-card);
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-lg);
    padding: 60px 80px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.why-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.why-content {
    font-size: 1.375rem;
    line-height: 1.75;
    font-weight: 400;
    color: var(--text-light-secondary);
    margin-bottom: 40px;
}

.why-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.why-highlight-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-highlight-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark-primary);
    margin-bottom: 4px;
}

.why-highlight-text p {
    font-size: 0.875rem;
    color: var(--text-dark-secondary);
}

@media (max-width: 850px) {
    .why-wrapper {
        padding: 40px 30px;
    }
    .why-content {
        font-size: 1.15rem;
    }
    .why-highlights {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* -------------------------------------------------------------
   7. SEÇÃO "O QUE SEU FILHO VAI APRENDER" (CARDS)
   ------------------------------------------------------------- */
.section-learn {
    background-color: var(--bg-dark-deep);
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 650px) {
    .learn-grid {
        grid-template-columns: 1fr;
    }
}

.learn-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 35px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.learn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.learn-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.2);
    box-shadow: var(--shadow-medium);
}

.learn-card:hover::before {
    opacity: 1;
}

.learn-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.learn-card:hover .learn-icon-wrapper {
    background: var(--accent);
    color: var(--bg-dark-deep);
    transform: scale(1.05);
}

.learn-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.learn-card-desc {
    color: var(--text-light-secondary);
    font-size: 0.9375rem;
    line-height: 1.5;
    font-weight: 300;
    margin-top: auto;
}

/* -------------------------------------------------------------
   8. SEÇÃO CALENDÁRIO DAS AULAS
   ------------------------------------------------------------- */
.section-calendar {
    background-color: var(--bg-light-section);
    color: var(--text-dark-primary);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

@media (max-width: 1100px) {
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .calendar-grid {
        grid-template-columns: 1fr;
    }
}

.calendar-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
}

.calendar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(245, 158, 11, 0.4);
}

.calendar-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color-light);
}

.calendar-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-dark);
    margin-bottom: 6px;
}

.calendar-date {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark-primary);
}

.calendar-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-dark-primary);
}

.calendar-content {
    font-size: 0.875rem;
    color: var(--text-dark-secondary);
    line-height: 1.6;
}

/* Faixa Informativa Inferior */
.calendar-info-bar {
    background: rgba(11, 25, 44, 0.04);
    border: 1px solid rgba(11, 25, 44, 0.08);
    border-radius: 50px;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 800px;
    margin: 40px auto 0;
    flex-wrap: wrap;
    color: var(--text-dark-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.calendar-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 650px) {
    .calendar-info-bar {
        border-radius: var(--border-radius-md);
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* -------------------------------------------------------------
   9. SEÇÃO IMPORTANTE (SEGURANÇA E RESPONSÁVEIS)
   ------------------------------------------------------------- */
.section-important {
    background-color: var(--bg-dark-deep);
}

.important-box {
    background: linear-gradient(135deg, #0c192c 0%, #162a45 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 50px 60px;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 40px;
}

.important-icon-wrapper {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.important-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-glow);
    margin-bottom: 12px;
}

.important-text p {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-light-secondary);
    font-weight: 300;
}

@media (max-width: 850px) {
    .important-box {
        flex-direction: column;
        padding: 40px 30px;
        gap: 24px;
        text-align: center;
    }
    .important-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    .important-text p {
        font-size: 1rem;
    }
}

/* -------------------------------------------------------------
   10. SEÇÃO SOBRE O PROFESSOR
   ------------------------------------------------------------- */
.section-teacher {
    background-color: var(--bg-light-section);
    color: var(--text-dark-primary);
}

.teacher-grid {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 60px;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

/* Bloco da Imagem com Fallback CP */
.teacher-image-container {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.teacher-image-frame {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--accent);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Placeholder CP robusto */
.teacher-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--bg-dark-accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.05em;
    border: 4px solid var(--accent);
    box-shadow: var(--shadow-glow);
}

.teacher-bio {
    display: flex;
    flex-direction: column;
}

.teacher-title-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.teacher-name {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.teacher-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark-secondary);
    font-weight: 400;
}

@media (max-width: 850px) {
    .teacher-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .teacher-image-container {
        width: 250px;
        height: 250px;
    }
    .teacher-placeholder {
        font-size: 5rem;
    }
}

/* -------------------------------------------------------------
   11. SEÇÃO "PARA QUEM É"
   ------------------------------------------------------------- */
.section-for-whom {
    background-color: var(--bg-dark-deep);
}

.for-whom-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(12, 25, 44, 0.5);
    border: 1px solid var(--border-color-dark);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-glow);
    backdrop-filter: blur(10px);
}

.for-whom-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-light-secondary);
    font-weight: 300;
}

@media (max-width: 768px) {
    .for-whom-box {
        padding: 30px 20px;
    }
    .for-whom-text {
        font-size: 1.1rem;
    }
}

/* -------------------------------------------------------------
   12. SEÇÃO "O QUE ACONTECE APÓS A INSCRIÇÃO?"
   ------------------------------------------------------------- */
.section-after-signup {
    background-color: var(--bg-light-section);
    color: var(--text-dark-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1050px;
    margin: 0 auto;
}

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

.step-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-md);
    padding: 35px 30px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    position: absolute;
    top: -20px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--bg-dark-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.step-icon-wrapper {
    background: rgba(11, 25, 44, 0.04);
    color: var(--primary-light);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark-primary);
}

.step-desc {
    font-size: 0.9375rem;
    color: var(--text-dark-secondary);
    line-height: 1.5;
}

/* -------------------------------------------------------------
   13. SEÇÃO FAQ (PERGUNTAS FREQUENTES)
   ------------------------------------------------------------- */
.section-faq {
    background-color: var(--bg-dark-deep);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.2);
}

/* Botão de Trigger da Pergunta */
.faq-trigger {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light-primary);
    gap: 16px;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    color: var(--accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent);
    flex-shrink: 0;
}

/* Corpo da Resposta Accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    padding: 0 28px;
}

.faq-content p {
    padding-bottom: 24px;
    color: var(--text-light-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Estados Ativos via JS */
.faq-item.active {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(12, 25, 44, 0.8);
}

.faq-item.active .faq-trigger {
    color: var(--accent-glow);
}

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

.faq-item.active .faq-content {
    opacity: 1;
}

@media (max-width: 500px) {
    .faq-trigger {
        padding: 16px 20px;
        font-size: 1rem;
    }
    .faq-content {
        padding: 0 20px;
    }
}

/* -------------------------------------------------------------
   14. FORMULÁRIO DE INSCRIÇÃO E SIMULAÇÃO DE SUCESSO
   ------------------------------------------------------------- */
.section-form {
    background-color: var(--bg-light-section);
    color: var(--text-dark-primary);
    position: relative;
}

/* Container do Formulário */
.form-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(11, 25, 44, 0.08);
    position: relative;
}

.form-urgency-banner {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--accent-dark);
    padding: 10px;
    text-align: center;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Grid de Form */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
    margin-bottom: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

/* Ocupar a largura inteira se marcado */
.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark-primary);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-color-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #000000;
    background: #f8fafc;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.1);
}

/* Erro nas validações */
.form-input.input-error {
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.02);
}

.error-message {
    color: var(--error);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 4px;
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

/* Checkboxes Customizados */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-dark-secondary);
    font-weight: 500;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.checkbox-label.has-error {
    color: var(--error);
}

/* Botão de Envio do Formulário */
.form-submit-container {
    text-align: center;
}

.form-submit-container .btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* TELA DE SUCESSO ANIMADA */
.success-card {
    text-align: center;
    padding: 60px 40px;
    display: none; /* Ativado via JS */
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.success-icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(16, 185, 129, 0.08);
    border: 2px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.success-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 16px;
}

.success-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-dark-secondary);
    max-width: 600px;
    margin: 0 auto 35px;
}



@media (max-width: 768px) {
    .form-card {
        padding: 30px 20px;
    }
    .success-card {
        padding: 40px 20px;
    }
    .success-title {
        font-size: 1.75rem;
    }
    .success-text {
        font-size: 1rem;
    }
}

/* -------------------------------------------------------------
   15. RODAPÉ (FOOTER)
   ------------------------------------------------------------- */
.footer-main {
    background-color: #040910;
    color: var(--text-light-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 5fr 4fr 3fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

.footer-brand h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-light-primary);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-links h5, .footer-contact h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light-primary);
    margin-bottom: 16px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    font-size: 0.875rem;
}

.footer-links-list a:hover {
    color: var(--accent);
}

.footer-contact-item {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .footer-contact-item {
        justify-content: center;
    }
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 30px;
    text-align: center;
    font-size: 0.8rem;
    color: #475569;
}

/* -------------------------------------------------------------
   16. ANIMAÇÕES
   ------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Classes de Scroll Reveal leves */
.reveal-element {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------
   14. ESTILOS COMERCIAIS (HOME, SERVIÇOS E PLANOS)
   ------------------------------------------------------------- */
/* Seção Quem Somos (Home) */
.section-about {
    background: var(--bg-dark-deep);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-text {
    font-size: 1.1rem;
    color: var(--text-light-secondary);
    line-height: 1.8;
}
.about-image {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-glow);
    max-width: 100%;
}
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
}

/* Serviços (Home - Grid) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 184, 0, 0.1);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.service-title {
    font-size: 1.5rem;
    color: var(--text-light-primary);
    margin-bottom: 15px;
}
.service-desc {
    color: var(--text-light-secondary);
    flex-grow: 1;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* Planos de Redes Sociais */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.plan-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color-light);
    border-radius: var(--border-radius-md);
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.plan-card:hover {
    box-shadow: var(--shadow-neon);
}
.plan-card.highlight {
    border-color: var(--accent);
    transform: scale(1.05);
    z-index: 10;
}
.plan-card.highlight:hover {
    box-shadow: var(--shadow-glow);
}
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-dark-deep);
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
}
.plan-header {
    text-align: center;
    margin-bottom: 20px;
}
.plan-title {
    font-size: 1.5rem;
    color: var(--text-light-primary);
}
.plan-target {
    font-size: 0.9rem;
    color: var(--text-light-secondary);
}
.plan-price-old {
    text-decoration: line-through;
    color: var(--error);
    font-size: 1rem;
    margin-top: 10px;
}
.plan-discount {
    background: var(--success);
    color: var(--bg-dark-deep);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 8px;
}
.plan-price-new {
    font-size: 2rem;
    font-weight: bold;
    color: var(--success);
    margin: 10px 0;
}
.plan-promo {
    font-size: 0.8rem;
    color: var(--text-light-secondary);
    margin-bottom: 20px;
}
.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}
.plan-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}
.plan-features li::before {
    content: '✅';
}
.plan-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.plan-card.horizontal {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}
.plan-card.horizontal .plan-features {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media (max-width: 992px) {
    .plans-grid { grid-template-columns: 1fr; }
    .plan-card.highlight { transform: scale(1); }
    .plan-card.horizontal { flex-direction: column; }
    .plan-card.horizontal .plan-features { grid-template-columns: 1fr; }
}

/* Favo de mel background */
.honeycomb-bg {
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 0l20 10v20L20 40 0 30V10z" fill="none" stroke="rgba(255,184,0,0.05)" stroke-width="1"/></svg>');
    background-size: 60px 60px;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float:hover {
    color: white;
}

/* Seção Destaque Projeto Social na Home */
.section-social-highlight {
    background: linear-gradient(135deg, var(--bg-dark-deep) 0%, rgba(245, 166, 35, 0.1) 100%);
    border-top: 1px solid var(--border-color-dark);
    border-bottom: 1px solid var(--border-color-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   24. SEÇÃO DE VÍDEO DO LIVRO (cursos.html)
   ========================================================================== */
.video-livro-section {
  padding: 90px 20px;
  background: radial-gradient(circle at center, rgba(255, 193, 7, 0.08), transparent 45%), #050505;
  position: relative;
}

.video-livro-section .section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px auto;
}

.video-livro-section .section-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 193, 7, 0.45);
  border-radius: 999px;
  color: #f5c542;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(255, 193, 7, 0.08);
}

.video-livro-section h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.video-livro-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.7;
}

.video-wrapper {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 193, 7, 0.45);
  box-shadow: 0 0 45px rgba(255, 193, 7, 0.18);
  background: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ==========================================================================
   25. MAPA DE OPORTUNIDADES (Página Dedicada e Home)
   ========================================================================== */
.mapa-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
@media (max-width: 992px) {
    .mapa-hero-grid {
        grid-template-columns: 1fr;
    }
}
.mapa-badge-pill {
    background: var(--accent);
    color: var(--bg-dark-deep);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.mapa-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.text-gold {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mapa-subtitle {
    font-size: 1.3rem;
    color: var(--text-light-secondary);
    margin-bottom: 30px;
}
.mapa-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.mapa-badge-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,184,0,0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mapa-check-list {
    list-style: none;
}
.mapa-check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-light-secondary);
}
.mapa-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}
.mapa-check-list.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
@media (max-width: 768px) {
    .mapa-check-list.grid-2col {
        grid-template-columns: 1fr;
    }
}
.mapa-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}
.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.timeline-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    opacity: 0.8;
}
.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}
.timeline-content p {
    color: var(--text-light-secondary);
    margin-bottom: 10px;
}
.timeline-content ul {
    list-style: disc;
    padding-left: 20px;
    color: #bbb;
}
.mapa-grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 992px) {
    .mapa-grid-3x2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .mapa-grid-3x2 { grid-template-columns: 1fr; }
}
.mapa-report-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color-dark);
    padding: 25px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}
.mapa-report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}
.mapa-report-card h4 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 10px;
}
.mapa-report-card p {
    color: var(--text-light-secondary);
    font-size: 0.95rem;
}
.mapa-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
@media (max-width: 768px) {
    .mapa-icons-grid { grid-template-columns: repeat(2, 1fr); }
}
.mapa-icon-card {
    background: rgba(17,17,17,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
}
.mapa-pricing-card {
    background: var(--bg-dark-card);
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.2);
    border-radius: 24px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 800;
    white-space: nowrap;
}
.pricing-title {
    font-size: 2rem;
    margin-bottom: 20px;
}
.pricing-price-old {
    color: #888;
    font-size: 1.2rem;
}
.pricing-price-new {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 10px 0;
}
.pricing-save-pill {
    background: rgba(57, 255, 20, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
}
.pricing-urgency {
    color: var(--text-light-secondary);
    margin-bottom: 30px;
    font-style: italic;
}
.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}
.pricing-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}
.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}
.btn-cta-dourado {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 50px;
    display: block;
    width: 100%;
    transition: 0.3s;
    text-transform: uppercase;
    animation: pulse-gold 2s infinite;
}
.btn-cta-dourado:hover {
    transform: scale(1.05);
    color: #000;
}
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 184, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 184, 0, 0); }
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color-dark);
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
}
.faq-item summary {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    color: var(--accent);
    font-size: 1.5rem;
    transition: 0.3s;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-content {
    padding: 0 20px 20px 20px;
    color: var(--text-light-secondary);
    line-height: 1.6;
}
.faq-item[open] .faq-content {
    max-height: none;
    opacity: 1;
    overflow: visible;
}
.hover-color-logo:hover {
    filter: grayscale(0%) opacity(1) !important;
}
