/* ==========================================================================
   ATA Martial Arts Premium - Estilos Oficiais (Preto, Tons de Cinza & Dourado)
   Identidade Visual: Luxo, Autoridade, Alta Performance & Zero Vermelho
   ========================================================================== */

/* Design Tokens - Paleta Preto & Ouro */
:root {
    --bg-black: #08090d;
    --bg-surface: #0e1118;
    --bg-card: #141824;
    --bg-card-hover: #1c2233;
    --bg-glass: rgba(14, 17, 24, 0.85);
    
    /* Dourados Metálicos / Champanhe */
    --gold: #dfba4d;
    --gold-light: #f3d47d;
    --gold-dark: #aa8010;
    --gold-glow: rgba(223, 186, 77, 0.25);
    --gold-gradient: #dfba4d;
    --gold-border: rgba(223, 186, 77, 0.35);

    /* Textos & Cinzas */
    --text-pure: #ffffff;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-card: #222b3d;

    /* Status & Utilidades */
    --success: #10b981;
    --whatsapp-green: #25d366;
    --instagram-grad: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    
    /* Tipografia & Formas */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 8px 25px -4px rgba(212, 175, 55, 0.3);
}

/* Reset & Configurações Globais */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-black);
}

body {
    background-color: var(--bg-black);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-pure);
    font-weight: 700;
    line-height: 1.2;
}

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

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

.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Gradientes & Textos Especiais */
.gold-text {
    color: var(--gold);
}

.gold-gradient {
    color: var(--gold);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    display: inline;
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
}

/* Títulos de Seção */
.section-title {
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ==========================================================================
   ANIMAÇÕES DE SCROLL REVEAL (Suave, Elegante & Acelerado por GPU)
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-from-left {
    transform: translateX(-35px);
}
.reveal-from-left.is-visible {
    transform: translateX(0);
}

.reveal-from-right {
    transform: translateX(35px);
}
.reveal-from-right.is-visible {
    transform: translateX(0);
}

.reveal-zoom {
    transform: scale(0.94);
}
.reveal-zoom.is-visible {
    transform: scale(1);
}

/* Delays escalonados para itens em grid */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

/* ==========================================================================
   HEADER FLUTUANTE PREMIUM (Estilo Pill / Frosted Glass - Print 2)
   ========================================================================== */
.site-header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 20px;
    pointer-events: none; /* Deixa cliques passarem fora da barra */
    transition: padding 0.3s ease;
}

.header-floating-pill {
    pointer-events: auto;
    max-width: 1180px;
    margin: 0 auto;
    background: rgba(14, 17, 24, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.site-header-wrapper.header-scrolled .header-floating-pill {
    background: rgba(10, 12, 18, 0.95);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.1);
}

/* Logo */
.header-logo a {
    display: flex;
    align-items: center;
}

.site-logo-img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.site-logo-img:hover {
    transform: scale(1.04);
}

.footer-logo a {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo-img {
    max-height: 58px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}

/* Navegação Central */
.header-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

.header-nav a {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-main);
    padding: 6px 0;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.header-nav a:hover {
    color: var(--gold-light);
}

.header-nav a:hover::after {
    width: 100%;
}

/* Ações à Direita: Ícones Sociais & Botão */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    transition: var(--transition);
}

.social-icon-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-header-cta {
    background: var(--gold-gradient);
    color: #000000;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    transition: var(--transition);
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
    filter: brightness(1.08);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav-drawer {
    display: none;
}

/* ==========================================================================
   BOTÕES GERAIS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 15px 32px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    background: var(--gold);
    color: #08090d;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-3px);
    background: var(--gold-light);
    box-shadow: 0 10px 30px rgba(223, 186, 77, 0.45);
    color: #000000;
}

.btn-outline-gold {
    background: rgba(212, 175, 55, 0.06);
    color: var(--gold-light);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.18);
    color: #ffffff;
    border-color: var(--gold-light);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 90px;
    overflow: hidden;
}

.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-bg,
.hero-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.65);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(8, 9, 13, 0.7) 0%, 
        rgba(8, 9, 13, 0.88) 60%, 
        var(--bg-black) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 840px;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    margin-bottom: 24px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0.04) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f7de8a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-badge-pill:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.28);
    transform: translateY(-1px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 3.65rem);
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 22px;
    line-height: 1.14;
    color: #ffffff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.7);
}

.hero-title .gold-gradient {
    color: var(--gold);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    text-shadow: none;
    filter: none;
    display: inline;
}

.hero-subtitle {
    font-size: 1.18rem;
    color: rgba(235, 240, 248, 0.85);
    margin-bottom: 38px;
    line-height: 1.7;
    max-width: 720px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: var(--gold);
    color: #08090d;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 17px 34px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(223, 186, 77, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-hero-primary .btn-arrow-svg {
    transition: transform 0.25s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    background: var(--gold-light);
    box-shadow: 0 18px 45px rgba(223, 186, 77, 0.5);
    color: #000000;
}

.btn-hero-primary:hover .btn-arrow-svg {
    transform: translateX(4px);
}

.btn-hero-wpp {
    background: rgba(14, 18, 22, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.28);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 17px 32px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-hero-wpp .wpp-svg-icon {
    fill: #25D366;
    transition: transform 0.25s ease;
}

.btn-hero-wpp:hover {
    background: rgba(37, 211, 102, 0.12);
    border-color: rgba(37, 211, 102, 0.75);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.25);
}

.btn-hero-wpp:hover .wpp-svg-icon {
    transform: scale(1.1);
}

.hero-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.perk-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    background: rgba(14, 17, 24, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(245, 248, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.perk-pill:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.perk-check-badge {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0c10;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(223, 186, 77, 0.4);
}

/* ==========================================================================
   2. PROVA SOCIAL & MÉTRICAS COM ANIMAÇÕES PREMIUM
   ========================================================================== */
.metrics-section {
    padding: 65px 0;
    background: radial-gradient(circle at 50% 50%, #111520 0%, var(--bg-black) 80%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

/* Luz decorativa suave no fundo */
.metrics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.metric-card {
    background: rgba(20, 24, 36, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 32px 22px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Filete dourado superior luminoso */
.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.35;
    transition: all 0.4s ease;
}

.metric-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(28, 34, 51, 0.88);
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.85), 0 0 25px rgba(212, 175, 55, 0.2);
}

.metric-card:hover::before {
    left: 0;
    right: 0;
    opacity: 1;
    height: 3px;
    box-shadow: 0 0 14px var(--gold);
}

/* Big Number com Dourado Fixo Sólido */
.metric-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.1;
    display: inline-block;
    color: var(--gold);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    animation: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.metric-card:hover .metric-number {
    transform: scale(1.06);
    color: var(--gold-light);
}

.metric-number.is-counted {
    animation: metricPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes metricPop {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)); }
    100% { transform: scale(1); }
}

.metric-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.metric-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   3. FILOSOFIA & MANIFESTO
   ========================================================================== */
.philosophy-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #141824 0%, var(--bg-black) 70%);
}

.philosophy-box {
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-card), 0 0 30px rgba(212, 175, 55, 0.08);
}

.philosophy-quote {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.gold-divider {
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 24px;
    border-radius: var(--radius-full);
}

.philosophy-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.philosophy-text strong {
    color: var(--text-pure);
}

.philosophy-instagram-callout {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.insta-link-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-light);
    font-weight: 700;
}

.insta-link-badge:hover {
    color: #fff;
}

/* ==========================================================================
   4. PROGRAMAS POR FAIXA ETÁRIA (Grid de 4 Cards)
   ========================================================================== */
.programs-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
}

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

.program-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.program-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-card);
}

.program-card.featured-card {
    border-color: var(--gold);
    background: linear-gradient(180deg, #181d2c 0%, var(--bg-card) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gold);
    color: #000;
    font-size: 0.68rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.program-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.program-card h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.program-tagline {
    font-size: 0.88rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.program-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.program-benefits {
    list-style: none;
    border-top: 1px solid var(--border-subtle);
    padding-top: 16px;
    margin-bottom: 24px;
}

.program-benefits li {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
}

.program-benefits li::before {
    content: "✓";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: 800;
}

/* ==========================================================================
   7. A JORNADA DAS FAIXAS (SONGAHM) - TIMELINE INTERATIVA COM SCROLL
   ========================================================================== */
.journey-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-black);
}

/* Background com Foto em Blur & Profundidade Cinematográfica */
.journey-bg-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.journey-bg-image {
    position: absolute;
    inset: -40px;
    background-image: url('https://images.unsplash.com/photo-1555597673-b21d5c935865?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    filter: blur(7px) brightness(0.28) saturate(1.25) contrast(1.1);
    transform: scale(1.08);
    will-change: transform;
}

.journey-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, var(--bg-black) 0%, rgba(8, 9, 13, 0.45) 15%, rgba(8, 9, 13, 0.65) 85%, var(--bg-black) 100%),
        radial-gradient(circle at 50% 35%, rgba(21, 26, 40, 0.35) 0%, rgba(8, 9, 13, 0.94) 85%);
}

.journey-parallax-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 680px;
    max-width: 92vw;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.25));
    transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
    will-change: transform;
}

.journey-parallax-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.journey-container {
    position: relative;
    z-index: 2;
}

.journey-timeline-wrapper {
    max-width: 840px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

/* Trilho Vertical de Fundo */
.timeline-vertical-track {
    position: absolute;
    left: 28px;
    top: 20px;
    bottom: 40px;
    width: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    z-index: 1;
}

/* Barra de Progresso Dourada Preenchida ao Rolar */
.timeline-progress-bar {
    width: 100%;
    height: 0%;
    background: var(--gold);
    box-shadow: 0 0 15px rgba(223, 186, 77, 0.8), 0 0 30px rgba(223, 186, 77, 0.4);
    transition: height 0.15s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journey-timeline {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding-left: 12px;
    cursor: pointer;
}

/* Nó/Marcador da Linha do Tempo */
.timeline-marker {
    position: relative;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #0e1118;
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 0 4px var(--bg-black);
}

.marker-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.marker-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.marker-dot.belt-white { background: #ffffff; box-shadow: 0 0 10px rgba(255, 255, 255, 0.8); }
.marker-dot.belt-gold  { background: var(--gold); box-shadow: 0 0 10px rgba(212, 175, 55, 0.8); }
.marker-dot.belt-red   { background: #e03131; box-shadow: 0 0 10px rgba(224, 49, 49, 0.8); }
.marker-dot.belt-black { background: #08090d; border: 2px solid #ffffff; box-shadow: 0 0 10px rgba(255, 255, 255, 0.4); }

/* Card da Etapa com Frosted Glass sobre o fundo desfocado */
.timeline-card {
    flex: 1;
    background: rgba(14, 17, 24, 0.84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 26px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 14px;
    left: -8px;
    width: 14px;
    height: 14px;
    background: rgba(14, 17, 24, 0.84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.timeline-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.timeline-step-pill {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--gold-light);
    text-transform: uppercase;
}

.belt-label-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.belt-tag-white { background: rgba(255, 255, 255, 0.15); color: #ffffff; }
.belt-tag-gold  { background: rgba(212, 175, 55, 0.2); color: var(--gold-light); border-color: rgba(212, 175, 55, 0.4); }
.belt-tag-red   { background: rgba(224, 49, 49, 0.2); color: #ff6b6b; border-color: rgba(224, 49, 49, 0.4); }
.belt-tag-black { background: rgba(0, 0, 0, 0.6); color: #ffffff; border-color: rgba(255, 255, 255, 0.3); }

.timeline-card h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Estado Ativo / Iluminado pelo Scroll */
.timeline-item.is-active .timeline-marker,
.timeline-item:hover .timeline-marker {
    border-color: var(--gold);
    transform: scale(1.18);
    box-shadow: 0 0 0 5px var(--bg-black), 0 0 20px rgba(212, 175, 55, 0.8);
}

.timeline-item.is-active .marker-glow,
.timeline-item:hover .marker-glow {
    opacity: 1;
}

.timeline-item.is-active .timeline-card,
.timeline-item:hover .timeline-card {
    border-color: rgba(212, 175, 55, 0.55);
    background: linear-gradient(135deg, #161b29 0%, var(--bg-card) 100%);
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}

.timeline-item.is-active .timeline-card::before,
.timeline-item:hover .timeline-card::before {
    border-color: rgba(212, 175, 55, 0.55);
    background: #161b29;
}

.timeline-item.is-active .timeline-card h3,
.timeline-item:hover .timeline-card h3 {
    color: var(--gold-light);
}

@media (max-width: 768px) {
    .timeline-vertical-track {
        left: 20px;
    }
    .timeline-item {
        gap: 20px;
        padding-left: 4px;
    }
    .timeline-marker {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    .timeline-card {
        padding: 20px 18px;
    }
    .timeline-item.is-active .timeline-card,
    .timeline-item:hover .timeline-card {
        transform: translateX(4px);
    }
}

/* ==========================================================================
   6. SEÇÃO DE VÍDEOS VERTICAIS DO INSTAGRAM (9:16 Aspect Ratio)
   ========================================================================== */
.instagram-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-black) 100%);
}

.insta-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.insta-header-left {
    max-width: 600px;
}

.insta-header-left h2 {
    font-size: 2.3rem;
    margin-bottom: 8px;
}

.insta-header-left p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Grid de Vídeos Verticais */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.reel-card {
    display: block;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    transition: var(--transition);
    aspect-ratio: 9 / 16;
}

.reel-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.2);
}

.reel-media-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

.reel-video-element {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.777778%;
    height: 56.25%;
    min-width: 177.777778%;
    min-height: 56.25%;
    object-fit: cover;
    z-index: 1;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reel-card:hover .reel-video-element {
    transform: translate(-50%, -50%) rotate(90deg) scale(1.06);
}

.reel-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reel-card:hover .reel-poster {
    transform: scale(1.08);
}

.reel-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.25) 0%, 
        rgba(0, 0, 0, 0.3) 40%, 
        rgba(8, 9, 13, 0.95) 100%);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.reel-play-btn {
    pointer-events: auto;
    cursor: pointer;
    border: none;
    outline: none;
    align-self: center;
    margin-top: auto;
    margin-bottom: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.85);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.reel-card:hover .reel-play-btn {
    transform: scale(1.15);
    background: #ffffff;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
    opacity: 1 !important;
    pointer-events: auto !important;
}

.reel-card.is-playing .reel-play-btn {
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
}

.reel-tag-badge {
    align-self: flex-start;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.reel-meta {
    margin-top: auto;
}

.reel-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reel-views {
    font-size: 0.75rem;
    color: var(--gold-light);
    font-weight: 700;
}

.insta-bottom-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.insta-bottom-cta p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
}

.insta-follow-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.insta-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   7. NOSSAS UNIDADES EM FLORIPA (Cards com Imagens)
   ========================================================================== */
.units-section {
    padding: 100px 0;
    background-color: var(--bg-black);
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.unit-card-interactive {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.unit-card-interactive:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.15);
}

.unit-card-link-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
}

.unit-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.unit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unit-card-interactive:hover .unit-img {
    transform: scale(1.08);
}

.unit-badge-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(14, 17, 24, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.unit-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 9, 13, 0.5);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.unit-card-interactive:hover .unit-image-overlay {
    opacity: 1;
}

.view-unit-badge {
    background: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unit-card-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.unit-card-info h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.unit-card-info h3 a:hover {
    color: var(--gold-light);
}

.unit-details-list {
    margin-bottom: 22px;
}

.unit-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.unit-detail-item .icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.unit-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.unit-card-actions .btn {
    flex: 1;
    padding: 7px 10px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    box-shadow: none;
}

.unit-card-actions .btn-gold {
    background: var(--gold);
    color: #08090d;
}

.unit-card-actions .btn-gold:hover {
    background: var(--gold-light);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(223, 186, 77, 0.3);
}

.unit-card-actions .btn-outline-gold {
    border: 1px solid rgba(223, 186, 77, 0.35);
    background: rgba(223, 186, 77, 0.04);
    color: #ffffff;
}

.unit-card-actions .btn-outline-gold:hover {
    background: rgba(223, 186, 77, 0.15);
    border-color: var(--gold);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   8. FAQ ACORDEON (Com Parallax da Logo no Background)
   ========================================================================== */
.faq-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--bg-surface);
    overflow: hidden;
}

.faq-parallax-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 640px;
    max-width: 92vw;
    pointer-events: none;
    z-index: 1;
    opacity: 0.055;
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.3));
    transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
    will-change: transform;
}

.faq-parallax-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-pure);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.faq-question::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background-color: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ==========================================================================
   9. FORMULÁRIO FINAL DE CAPTURA & CONVERSÃO
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background: radial-gradient(circle at top, #141824 0%, var(--bg-black) 80%);
}

.contact-card-wrapper {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-card), 0 0 40px rgba(212, 175, 55, 0.08);
}

.contact-card-header {
    margin-bottom: 36px;
}

.contact-card-header h2 {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.contact-card-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    background: #090b10;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: #0d0f17;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
}

.form-security-note {
    font-size: 0.8rem;
    color: var(--text-subtle);
    text-align: center;
    margin-top: 16px;
}

/* ==========================================================================
   FOOTER LUXUOSO
   ========================================================================== */
.site-footer {
    background-color: #06070a;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-mission {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 380px;
}

.footer-insta-box {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
}

.footer-insta-text strong {
    display: block;
    font-size: 0.8rem;
    color: var(--gold-light);
}

.footer-insta-text span {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 700;
}

.btn-insta-follow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
}

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

.footer-nav-list, .footer-contact-list {
    list-style: none;
}

.footer-nav-list li {
    margin-bottom: 14px;
}

.footer-nav-list a {
    display: flex;
    flex-direction: column;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-nav-list a strong {
    color: var(--text-main);
    font-size: 0.92rem;
}

.footer-nav-list a:hover strong {
    color: var(--gold-light);
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-contact-list a {
    color: var(--gold-light);
    font-weight: 700;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.footer-social-links a {
    color: var(--text-main);
    font-size: 0.85rem;
    text-decoration: underline;
}

.footer-social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 25px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-subtle);
    font-size: 0.82rem;
}

/* Botão Flutuante do WhatsApp */
.floating-wpp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp-green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition);
}

.floating-wpp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

/* ==========================================================================
   ESTILOS ESPECÍFICOS DA PÁGINA DA UNIDADE (page-unidade.php)
   ========================================================================== */
/* ==========================================================================
   ESTILOS ESPECÍFICOS DA PÁGINA DA UNIDADE (page-unidade.php)
   ========================================================================== */
.unit-hero-section {
    position: relative;
    padding-top: 170px;
    padding-bottom: 90px;
    overflow: hidden;
    background: var(--bg-black);
}

.unit-hero-content {
    max-width: 820px;
    position: relative;
    z-index: 2;
}

.unit-hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    margin-top: 14px;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.unit-hero-tagline {
    font-size: 1.25rem;
    color: var(--gold-light);
    margin-bottom: 28px;
    font-weight: 600;
    line-height: 1.5;
}

.unit-hero-info-card {
    background: rgba(14, 17, 24, 0.92);
    border: 1px solid var(--gold-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
    padding: 22px 26px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-row strong {
    font-size: 0.9rem;
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

.info-row p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.unit-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* 2. Sobre a Unidade & Proposta */
.unit-about-section {
    padding: 90px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
}

.unit-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.unit-about-text-col h2 {
    font-size: 2.4rem;
    margin: 12px 0 20px 0;
    line-height: 1.25;
}

.unit-about-description {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.unit-perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.unit-perk-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.unit-perk-item:hover {
    border-color: var(--gold-border);
    transform: translateY(-2px);
}

.perk-icon-wrap {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.perk-text strong {
    font-size: 0.96rem;
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
}

.perk-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Card do Vídeo em Destaque */
.unit-video-showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.1);
}

.video-card-header {
    margin-bottom: 14px;
}

.video-pill {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    border-radius: 20px;
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.video-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.unit-video-player-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
    aspect-ratio: 9 / 14;
    max-height: 440px;
    margin: 0 auto 16px auto;
}

.unit-embedded-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-floating-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(14, 17, 24, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.78rem;
    color: #ffffff;
    font-weight: 700;
}

.video-card-footer p {
    font-size: 0.86rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 14px;
}

/* 3. Carrossel de Fotos de Alunos */
.unit-gallery-section {
    padding: 90px 0;
    background: radial-gradient(circle at center, #151926 0%, var(--bg-black) 70%);
}

.unit-carousel-container {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.carousel-track-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gold-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    background: #000000;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-image-card {
    position: relative;
    aspect-ratio: 16 / 9;
    max-height: 520px;
    width: 100%;
}

.carousel-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 20px 24px;
    background: linear-gradient(0deg, rgba(8, 9, 13, 0.95) 0%, rgba(8, 9, 13, 0.6) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.slide-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--gold);
    color: #000000;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.slide-caption {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 0 10px;
}

.carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold-border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-nav-btn:hover {
    background: var(--gold);
    color: #000000;
    transform: scale(1.08);
}

.carousel-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.is-active {
    width: 28px;
    border-radius: 5px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* 4. Estrutura e Diferenciais */
.unit-features-section {
    padding: 90px 0;
    background: var(--bg-surface);
}

.unit-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.unit-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}

.unit-feature-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-3px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 16px;
    border: 1px solid var(--gold);
}

.unit-feature-card h3 {
    font-size: 1.12rem;
    margin-bottom: 10px;
}

.unit-feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* 5. Mapa e Como Chegar */
.unit-map-section {
    padding: 80px 0;
    background: var(--bg-black);
}

.unit-map-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    align-items: center;
    box-shadow: var(--shadow-card);
}

.map-info-col h2 {
    font-size: 2.2rem;
    margin: 10px 0 14px 0;
}

.map-bairro-tag {
    font-size: 1.05rem;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 8px;
}

.map-address-full {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.map-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.map-embed-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

/* 6. Formulário da Unidade */
.unit-form-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #141824 0%, var(--bg-black) 70%);
}

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.form-header {
    margin-bottom: 28px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.form-privacy-note {
    font-size: 0.8rem;
    color: var(--text-subtle);
    text-align: center;
    margin-top: 14px;
}

/* 7. Outras Unidades */
.unit-other-section {
    padding: 90px 0 110px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
}

.other-units-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.other-unit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.other-unit-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.15);
}

.other-unit-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.other-unit-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.other-unit-card:hover .other-unit-media img {
    transform: scale(1.06);
}

.other-unit-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(14, 17, 24, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-light);
}

.other-unit-body {
    padding: 24px;
}

.other-unit-body h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.other-unit-addr {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.other-unit-tagline {
    font-size: 0.92rem;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.45;
}

@media (max-width: 1024px) {
    .unit-about-grid,
    .unit-map-card {
        grid-template-columns: 1fr;
    }

    .unit-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .unit-hero-title {
        font-size: 2.3rem;
    }

    .unit-perks-grid,
    .unit-features-grid,
    .other-units-grid {
        grid-template-columns: 1fr;
    }

    .unit-hero-ctas .btn {
        width: 100%;
    }

    .unit-map-card,
    .form-wrapper {
        padding: 24px 16px;
    }
}

/* ==========================================================================
   RESPONSIVIDADE (Tablets e Smartphones)
   ========================================================================== */
@media (max-width: 1080px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav-drawer.active {
        display: block;
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        background: rgba(14, 17, 24, 0.98);
        border: 1px solid var(--gold-border);
        border-radius: var(--radius-md);
        padding: 24px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.9);
        pointer-events: auto;
    }

    .mobile-nav-list {
        list-style: none;
    }

    .mobile-nav-list li {
        margin-bottom: 14px;
    }

    .mobile-nav-list a {
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff;
    }

    .mobile-cta-item {
        margin-top: 20px;
    }

    .mobile-socials-item {
        display: flex;
        gap: 16px;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid var(--border-subtle);
    }

    .programs-grid-4, .reels-grid, .unit-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-wpp,
    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-perks {
        flex-direction: column;
        gap: 10px;
    }

    .perk-pill {
        width: 100%;
    }

    .programs-grid-4, .units-grid, .reels-grid, .unit-features-grid, .metrics-grid {
        grid-template-columns: 1fr;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .contact-card-wrapper, .philosophy-box, .form-wrapper {
        padding: 30px 20px;
    }

    .unit-card-actions {
        display: flex;
        gap: 8px;
    }
}

/* ==========================================================================
   SELETOR DE IDIOMAS MODERNO (PT-BR / EN / ES)
   Flags Vetoriais Circulares, Dropdown Vidro & Segmented Pill Mobile
   ========================================================================== */
.lang-flag-svg {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: transform 0.2s ease, border-color 0.2s ease;
    display: inline-block;
    vertical-align: middle;
}

/* Header Desktop Dropdown Mount */
.header-lang-mount {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-switcher-dropdown {
    position: relative;
}

.lang-btn-current {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.lang-btn-current:hover,
.lang-btn-current[aria-expanded="true"],
.lang-switcher-dropdown.is-open .lang-btn-current {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.lang-btn-current:hover .lang-flag-svg,
.lang-btn-current[aria-expanded="true"] .lang-flag-svg,
.lang-switcher-dropdown.is-open .lang-flag-svg,
.lang-option:hover .lang-flag-svg,
.mobile-lang-tab:hover .lang-flag-svg {
    transform: scale(1.08);
    border-color: var(--gold-light);
}

.lang-flag-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-current-code,
.lang-code-current {
    text-transform: uppercase;
    font-weight: 800;
    color: #ffffff;
    font-size: 0.8rem;
}

.lang-arrow-icon,
.lang-chevron {
    color: var(--gold);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lang-btn-current[aria-expanded="true"] .lang-arrow-icon,
.lang-btn-current[aria-expanded="true"] .lang-chevron,
.lang-switcher-dropdown.is-open .lang-arrow-icon,
.lang-switcher-dropdown.is-open .lang-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu Desktop */
.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 175px;
    background: rgba(14, 17, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--gold-border);
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85), 0 0 20px rgba(212, 175, 55, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.96);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999999;
    pointer-events: none;
}

/* Ponte invisível para evitar perda do hover ao mover o mouse */
.lang-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
}

/* Abertura por classe ativa (.is-open no container ou no menu) */
.lang-switcher-dropdown.is-open .lang-dropdown-menu,
.lang-dropdown-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Abertura por hover no desktop */
@media (min-width: 601px) {
    .lang-switcher-dropdown:hover .lang-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .lang-switcher-dropdown:hover .lang-chevron,
    .lang-switcher-dropdown:hover .lang-arrow-icon {
        transform: rotate(180deg);
    }

    .lang-switcher-dropdown:hover .lang-btn-current {
        background: rgba(212, 175, 55, 0.12);
        border-color: var(--gold);
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    }
}

.lang-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 9px;
    color: var(--text-main);
    cursor: pointer;
    text-align: left;
    transition: all 0.18s ease;
    font-family: var(--font-body);
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}

.lang-option.is-active {
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(212, 175, 55, 0.35);
    color: #ffffff;
}

.lang-option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.lang-name {
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.2;
    flex: 1;
}

.lang-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.lang-option.is-active .lang-sub {
    color: var(--gold-light);
}

.lang-check-icon,
.lang-check {
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.85rem;
    font-weight: 800;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lang-option.is-active .lang-check,
.lang-option.is-active .lang-check-icon {
    opacity: 1;
}

/* Mobile Drawer Segmented Controls */
.mobile-lang-mount {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-lang-segmented {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}

.mobile-lang-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 8px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 9px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-lang-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-lang-tab.is-active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(170, 128, 16, 0.15) 100%);
    border-color: var(--gold);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.mobile-tab-flag .lang-flag-svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    .header-lang-mount {
        display: none;
    }
}

/* ==========================================================================
   PÁGINA 404 - DESIGN PREMIUM DARK/GOLD
   ========================================================================== */
.error-404-main {
    position: relative;
    padding-top: 170px;
    padding-bottom: 120px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #08090d;
}

.error-404-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.error-404-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: brightness(0.48) saturate(1.05);
}

.error-404-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(8, 9, 13, 0.45) 0%, rgba(8, 9, 13, 0.82) 80%, var(--bg-black) 100%);
}

.error-404-glow-bg {
    display: none;
}

.error-404-container {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
}

.error-404-card {
    background: rgba(12, 15, 22, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.08);
}

.error-404-number-wrap {
    position: relative;
    display: inline-block;
    margin: 15px 0 10px 0;
}

.error-404-number {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    display: block;
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.error-404-belt-symbol {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: -5px;
    margin-bottom: 20px;
}

.belt-stripe {
    height: 4px;
    border-radius: 2px;
}

.belt-stripe.black {
    width: 60px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.belt-stripe.gold {
    width: 30px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(223, 186, 77, 0.6);
}

.error-404-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.25;
}

.error-404-desc {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.error-404-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-404-primary {
    background: var(--gold);
    color: #0c0e14;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(223, 186, 77, 0.28);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-404-primary:hover {
    transform: translateY(-2px);
    background: var(--gold-light);
    box-shadow: 0 16px 36px rgba(223, 186, 77, 0.42);
    color: #000000;
}

.btn-404-wpp {
    background: rgba(18, 26, 22, 0.7);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 15px 30px;
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-404-wpp .wpp-svg {
    fill: #25D366;
    transition: transform 0.25s ease;
}

.btn-404-wpp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.85);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.25);
}

.btn-404-wpp:hover .wpp-svg {
    transform: scale(1.1);
}

.error-404-shortcuts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 32px;
    text-align: left;
}

.shortcut-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 14px;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.shortcut-card:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

.shortcut-icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.shortcut-card:hover .shortcut-icon-badge {
    background: var(--gold);
    color: #0b0e14;
    border-color: var(--gold);
    transform: scale(1.05);
}

.shortcut-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shortcut-content strong {
    font-size: 0.92rem;
    color: #ffffff;
    margin-bottom: 3px;
    font-weight: 700;
    letter-spacing: -0.2px;
    transition: color 0.2s ease;
}

.shortcut-card:hover .shortcut-content strong {
    color: var(--gold-light);
}

.shortcut-content span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.shortcut-arrow-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.shortcut-card:hover .shortcut-arrow-btn {
    background: rgba(212, 175, 55, 0.2);
    color: #ffffff;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .error-404-main {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .error-404-card {
        padding: 36px 20px;
    }

    .error-404-number {
        font-size: 5.5rem;
    }

    .error-404-title {
        font-size: 1.65rem;
    }

    .error-404-shortcuts {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .error-404-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-404-primary,
    .btn-404-wpp {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   PÁGINA INSTITUCIONAL SOBRE A ATA PREMIUM (page-sobre.php)
   ========================================================================== */
.about-hero-section {
    position: relative;
    padding-top: 170px;
    padding-bottom: 90px;
    background: radial-gradient(circle at 50% 25%, #181d2c 0%, var(--bg-black) 75%);
    overflow: hidden;
}

.about-hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

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

.about-hero-title {
    font-size: 3.3rem;
    font-weight: 900;
    margin: 18px 0 16px 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-hero-subtitle {
    font-size: 1.18rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* 2. Seção de Apresentação com Imagem */
.about-showcase-section {
    padding: 100px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
}

.about-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gold-border);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
    background: #000000;
}

.about-showcase-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-image-card:hover .about-showcase-img {
    transform: scale(1.02);
}

.about-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(14, 17, 24, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--gold-light);
}

.about-text-col h2 {
    font-size: 2.3rem;
    margin: 12px 0 20px 0;
    line-height: 1.25;
}

.about-text-body p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 18px;
}

.about-metrics-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.metric-pill-item {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
}

.metric-pill-item .pill-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
}

.metric-pill-item .pill-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* 3. Pilares */
.about-pillars-section {
    padding: 90px 0;
    background: radial-gradient(circle at center, #151926 0%, var(--bg-black) 70%);
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 30px 22px;
    text-align: center;
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.12);
}

.pillar-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.pillar-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* 4. Programas */
.about-programs-section {
    padding: 90px 0;
    background: var(--bg-surface);
}

.about-programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-prog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
}

.prog-age-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 3px 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.about-prog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.about-prog-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* 5. Unidades */
.about-units-section {
    padding: 90px 0;
    background: var(--bg-black);
    border-top: 1px solid var(--border-subtle);
}

.about-units-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.about-unit-box {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.about-unit-box:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.12);
}

.unit-box-media {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.unit-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-unit-box:hover .unit-box-media img {
    transform: scale(1.06);
}

.unit-box-media .unit-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(14, 17, 24, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-light);
}

.unit-box-content {
    padding: 22px;
}

.unit-box-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.unit-box-content .unit-addr {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.unit-box-content .unit-desc {
    font-size: 0.88rem;
    color: var(--text-main);
    line-height: 1.45;
    margin-bottom: 18px;
}

/* 6. Formulário */
.about-form-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #141824 0%, var(--bg-black) 70%);
}

@media (max-width: 1024px) {
    .about-showcase-grid {
        grid-template-columns: 1fr;
    }

    .about-pillars-grid,
    .about-programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-units-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.3rem;
    }

    .about-metrics-pills,
    .about-pillars-grid,
    .about-programs-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-ctas .btn {
        width: 100%;
    }
}



