/* ==========================================================================
   GVP FIGHT CURITIBA — DESIGN SYSTEM
   Paleta: Cimento Queimado · Preto Profundo · Gold Refinado
   Estética: Glassmorphism Premium · Clean · Humanizado
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

:root {
    /* ── Cimento Queimado + Preto ── */
    --bg-base: #0a0a0a;
    --bg-cement: #1a1917;
    --bg-cement-warm: #211f1c;
    --bg-cement-light: #2a2824;
    --surface-glass: rgba(28, 26, 22, 0.55);
    --surface-glass-hover: rgba(36, 34, 28, 0.7);
    --surface-glass-strong: rgba(20, 19, 16, 0.75);

    /* ── Gold ── */
    --gold: #c9a94e;
    --gold-bright: #e2c76a;
    --gold-dim: #8f7530;
    --gold-subtle: rgba(201, 169, 78, 0.12);
    --gold-glow: rgba(201, 169, 78, 0.08);

    /* ── Tipografia ── */
    --white: #f0ece4;
    --white-pure: #faf8f2;
    --text-secondary: #9e9a90;
    --text-tertiary: #6b6760;

    /* ── Bordas ── */
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(201, 169, 78, 0.2);
    --border-gold: rgba(201, 169, 78, 0.35);

    /* ── Fontes ── */
    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    /* ── Radius ── */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;
    --r-pill: 100px;

    /* ── Easing ── */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    background: var(--bg-base);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg-base);
    min-height: 100vh;
    overflow-x: hidden;
    /* Textura sutil de cimento queimado */
    background-image:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 169, 78, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(42, 40, 36, 0.5) 0%, transparent 70%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; border: none; outline: none; }

/* ── AMBIENT — Glow sutil, sem parecer artificial ── */
.ambient-glow { display: none; } /* Desativamos os glows artificiais */

/* ── LAYOUT ── */
.main-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ══════════════════════════════════════════════
   BOTÕES
   ══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.4s var(--ease);
    position: relative;
}

.btn .icon-arrow { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.btn:hover .icon-arrow { transform: translateX(4px); }

.btn-gold-solid {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    color: #0a0a0a;
    border: none;
}
.btn-gold-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 78, 0.25);
}

.btn-outline-gold {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--gold);
    border: 1px solid var(--border-gold);
}
.btn-outline-gold:hover {
    background: var(--gold-subtle);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-dark-outline {
    background: var(--surface-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--white);
    border: 1px solid var(--border);
}
.btn-dark-outline:hover {
    border-color: var(--border-hover);
    color: var(--gold-bright);
    transform: translateY(-2px);
}

.w-100 { width: 100%; }

/* ══════════════════════════════════════════════
   HEADER / NAVBAR — Glassmorphism
   ══════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 12px;
    z-index: 100;
    margin: 12px 0 32px;
    border-radius: var(--r-lg);
    background: var(--surface-glass);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
}

/* Logo */
.brand-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }

.logo-gvp {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: -0.5px;
}

.logo-fight {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--white);
    margin-top: -1px;
}

.logo-city {
    font-size: 0.44rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    color: var(--text-secondary);
    margin-top: 3px;
}

/* Nav */
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 30px; }

.nav-link {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    padding: 6px 0;
    position: relative;
    transition: color 0.3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link.active { color: var(--white); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
}

.btn-header { padding: 10px 22px; font-size: 0.7rem; }

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    cursor: pointer;
    padding: 6px;
}
.mobile-menu-toggle .bar {
    width: 22px; height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.mobile-drawer { display: none; }

/* ══════════════════════════════════════════════
   HERO — Clean, editorial, humano
   ══════════════════════════════════════════════ */
.hero-section {
    position: relative;
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 64px 56px;
    margin-bottom: 28px;
    overflow: hidden;
}

/* Watermarks — bem sutis, quase imperceptíveis */
.hero-watermark {
    position: absolute;
    bottom: -50px;
    left: 30px;
    font-size: 14rem;
    font-family: serif;
    color: rgba(201, 169, 78, 0.02);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.hero-watermark-secondary { display: none; }

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
}

/* Tag Badge */
.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
}
.tag-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

/* Título Hero */
.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 0.92;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.text-white { color: var(--white-pure); }
.text-gold { color: var(--gold); }

.hero-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Fighter Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.fighter-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: var(--r-lg);
    overflow: hidden;
}

.fighter-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--r-lg);
    filter: contrast(1.05) brightness(0.9) sepia(0.08);
    transition: transform 0.7s var(--ease);
}
.hero-visual:hover .fighter-img { transform: scale(1.02); }

.fighter-glow-radial {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.6) 100%);
    pointer-events: none;
}

/* Location Badge — Glassmorphism */
.location-badge {
    position: absolute;
    bottom: -12px;
    right: -8px;
    background: var(--surface-glass-strong);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    transition: all 0.4s var(--ease);
}
.location-badge:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.badge-icon-box {
    width: 36px; height: 36px;
    border-radius: var(--r-sm);
    background: var(--gold-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.badge-icon-box svg { width: 18px; height: 18px; }
.badge-text { display: flex; flex-direction: column; }
.badge-city {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
}
.badge-address {
    font-size: 0.62rem;
    font-weight: 400;
    color: var(--text-tertiary);
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin-top: 2px;
}

/* ══════════════════════════════════════════════
   VALUES & BRANDING SHOWCASE
   ══════════════════════════════════════════════ */
.values-showcase-section { margin-bottom: 28px; }

.values-showcase-container {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 24px;
    align-items: stretch;
}

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

/* Glass Card — verdadeiro glassmorphism */
.glass-card {
    background: var(--surface-glass);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.glass-card:hover {
    background: var(--surface-glass-hover);
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.card-icon-wrapper {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: var(--gold-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 18px;
    transition: all 0.4s var(--ease);
}
.glass-card:hover .card-icon-wrapper {
    background: var(--gold);
    color: #0a0a0a;
}
.card-icon-wrapper svg { width: 20px; height: 20px; }

.card-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* Showcase Banner */
.showcase-banner-card {
    position: relative;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.showcase-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) contrast(1.1) sepia(0.15);
    transition: transform 0.8s var(--ease);
}
.showcase-banner-card:hover .showcase-bg-img { transform: scale(1.03); }

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 100%);
}

.showcase-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.showcase-hollow-logo {
    font-family: var(--font-display);
    font-size: 7rem;
    line-height: 0.85;
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--gold);
    letter-spacing: 2px;
    transition: all 0.5s var(--ease);
}
.showcase-banner-card:hover .showcase-hollow-logo {
    -webkit-text-stroke-color: var(--gold-bright);
    filter: drop-shadow(0 0 20px rgba(201, 169, 78, 0.3));
}

.showcase-fight-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 10px;
    color: var(--white);
    margin-top: 6px;
}

.showcase-city-text {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-top: 12px;
}

.showcase-corner-glow { display: none; }

/* ══════════════════════════════════════════════
   MODALIDADES
   ══════════════════════════════════════════════ */
.modalities-section { margin-bottom: 28px; }

.modalities-container {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 48px;
}

.modalities-main-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: stretch;
}

.modalities-intro-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.4rem;
    line-height: 0.92;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.dash-indicators { display: flex; gap: 6px; margin-bottom: 20px; }
.dash {
    width: 20px; height: 2px;
    border-radius: 1px;
    background: rgba(255,255,255,0.1);
}
.dash-active {
    width: 28px;
    background: var(--gold);
}

.section-subtitle {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
}

.btn-all-modalities { align-self: flex-start; padding: 12px 22px; font-size: 0.72rem; }

/* Cards Layout */
.modalities-cards-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.modalities-top-row, .modalities-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Modality Card */
.modality-card {
    position: relative;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    min-height: 180px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    background: var(--bg-cement);
}
.modality-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.modality-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: all 0.6s var(--ease);
}
.modality-card:hover .modality-img {
    transform: scale(1.04);
}

.modality-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
}

.modality-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mod-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 169, 78, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s var(--ease);
}
.modality-card:hover .mod-icon {
    background: var(--gold);
    color: #0a0a0a;
    border-color: transparent;
}
.mod-icon svg { width: 18px; height: 18px; }

.modality-info { margin-top: auto; padding-right: 36px; }
.mod-title {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 3px;
}
.mod-desc {
    font-size: 0.74rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* Circle Arrow */
.btn-card-circle-arrow {
    position: absolute;
    bottom: 16px; right: 16px;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--surface-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.4s var(--ease);
}
.btn-card-circle-arrow svg { width: 14px; height: 14px; }
.modality-card:hover .btn-card-circle-arrow {
    background: var(--gold);
    color: #0a0a0a;
    border-color: transparent;
}

.card-boxe-tall { grid-column: 2; grid-row: 1 / span 2; min-height: 376px; }

/* ══════════════════════════════════════════════
   COACHES
   ══════════════════════════════════════════════ */
.coaches-section { margin-bottom: 36px; }

.section-header-center {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 36px;
}
.section-desc-center {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 400;
}



/* ══════════════════════════════════════════════
   PLANS — Editorial Premium Pricing
   ══════════════════════════════════════════════ */
.plans-section {
    padding: 80px 0 60px;
    position: relative;
}

/* Header */
.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.plans-header {
    margin-bottom: 56px;
}
.plans-label-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.plans-index {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
}
.plans-label-divider {
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}
.plans-label-text {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-secondary);
}

.plans-title {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    line-height: 0.9;
    margin-bottom: 20px;
}
.plans-title-light {
    font-size: 3.2rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    font-weight: 400;
}
.plans-title-bold {
    font-size: 4.2rem;
    color: var(--gold);
    letter-spacing: 3px;
}

.plans-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 440px;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Plan Card */
.plan-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(18, 17, 15, 0.6);
    transition: all 0.5s var(--ease);
    overflow: hidden;
}
.plan-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.plan-card-inner {
    padding: 36px 30px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Featured Card */
.plan-card-featured {
    border-color: rgba(201, 169, 78, 0.25);
    background: linear-gradient(180deg, rgba(201, 169, 78, 0.04) 0%, rgba(18, 17, 15, 0.8) 100%);
}
.plan-card-featured:hover {
    border-color: rgba(201, 169, 78, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 169, 78, 0.06);
}

/* Badge */
.plan-badge {
    position: absolute;
    top: 0; right: 28px;
    background: var(--gold);
    color: #0a0a0a;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 0 0 6px 6px;
}

/* Plan Number */
.plan-number {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--text-tertiary);
    letter-spacing: 2px;
    opacity: 0.5;
    margin-bottom: 16px;
    display: block;
}
.plan-card-featured .plan-number {
    color: var(--gold);
    opacity: 0.6;
}

/* Plan Name */
.plan-name-row {
    margin-bottom: 16px;
}
.plan-category {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-tertiary);
    display: block;
    margin-bottom: 4px;
}
.plan-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}
.plan-card-featured .plan-name {
    color: var(--gold);
}

/* Divider */
.plan-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 169, 78, 0.2), var(--border), transparent);
    margin-bottom: 16px;
}
.plan-card-featured .plan-divider {
    background: linear-gradient(90deg, rgba(201, 169, 78, 0.4), rgba(201, 169, 78, 0.1), transparent);
}

/* Frequency */
.plan-frequency {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--white);
    display: block;
    margin-bottom: 6px;
}
.plan-card-featured .plan-frequency {
    color: var(--gold);
}

.plan-top {
    margin-bottom: 24px;
}

/* Pricing removed */

/* Brief */
.plan-brief {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

/* Features */
.plan-features {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
    flex-grow: 1;
}
.plan-features li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.plan-check {
    color: var(--text-tertiary);
    font-weight: 700;
    font-size: 0.78rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.plan-check-gold {
    color: var(--gold);
}

/* CTA Buttons */
.plan-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    margin-top: auto;
}
.plan-cta svg {
    width: 16px; height: 16px;
    transition: transform 0.4s var(--ease);
    flex-shrink: 0;
}
.plan-cta:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}
.plan-cta:hover svg {
    transform: translateX(5px);
}

/* Gold CTA (Featured) */
.plan-cta-gold {
    background: var(--gold);
    color: #0a0a0a;
    border-color: var(--gold);
}
.plan-cta-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.6s var(--ease);
}
.plan-cta-gold:hover::before {
    left: 100%;
}
.plan-cta-gold:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    box-shadow: 0 6px 24px rgba(201, 169, 78, 0.2);
}

/* ══════════════════════════════════════════════
   CONTACT — Editorial Premium
   ══════════════════════════════════════════════ */
.contact-section {
    padding: 80px 0 60px;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Label Row */
.contact-label-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
}
.contact-index {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 2px;
}
.contact-label-divider {
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}
.contact-label-text {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Title */
.contact-title {
    display: flex;
    flex-direction: column;
    font-family: var(--font-display);
    line-height: 0.9;
    margin-bottom: 28px;
}
.contact-title-light {
    font-size: 3.2rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    font-weight: 400;
}
.contact-title-bold {
    font-size: 4.2rem;
    color: var(--white);
    letter-spacing: 3px;
    position: relative;
}
.contact-title-bold::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

/* Main Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 64px;
    align-items: start;
}

/* Description */
.contact-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 420px;
}
.hide-mobile { display: inline; }

/* Editorial Info Items */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 44px;
}

.contact-info-item {
    padding: 20px 0;
    position: relative;
    transition: all 0.4s var(--ease);
}
.contact-info-item:hover {
    padding-left: 8px;
}

.info-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.info-item-number {
    font-family: var(--font-display);
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 2px;
    opacity: 0.7;
}
.info-item-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
}

.info-item-value {
    font-size: 0.88rem;
    color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    padding-left: 0;
}

.info-item-line {
    margin-top: 20px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,169,78,0.2) 0%, var(--border) 40%, transparent 100%);
}

/* Premium CTA Button */
.btn-premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    background: var(--gold);
    color: #0a0a0a;
    border: none;
    border-radius: var(--r-sm);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
}
.btn-premium-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s var(--ease);
}
.btn-premium-cta:hover::before {
    left: 100%;
}
.btn-premium-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 78, 0.25);
    padding-right: 38px;
}
.btn-premium-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.5s var(--ease);
}
.btn-premium-arrow svg {
    width: 18px; height: 18px;
}
.btn-premium-cta:hover .btn-premium-arrow {
    transform: translateX(6px);
}

/* ── Map Frame ── */
.map-frame {
    position: relative;
    height: 520px;
    border-radius: 6px;
    overflow: hidden;
    background: #111;
}
.map-frame iframe {
    width: 100%; height: 100%;
    filter: invert(0.92) hue-rotate(180deg) brightness(0.82) contrast(1.15) sepia(0.15);
}

/* HUD Corner Elements */
.map-corner {
    position: absolute;
    width: 20px; height: 20px;
    z-index: 3;
    pointer-events: none;
}
.map-corner-tl {
    top: 0; left: 0;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}
.map-corner-tr {
    top: 0; right: 0;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}
.map-corner-bl {
    bottom: 0; left: 0;
    border-bottom: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}
.map-corner-br {
    bottom: 0; right: 0;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}

/* Map Edge Gradient */
.map-edge-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        linear-gradient(to right, rgba(10,10,10,0.4) 0%, transparent 8%),
        linear-gradient(to left, rgba(10,10,10,0.4) 0%, transparent 8%),
        linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, transparent 10%),
        linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 12%);
}

/* Map Badge */
.map-badge {
    position: absolute;
    top: 20px; left: 20px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 169, 78, 0.3);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1.8px;
}
.map-badge-dot {
    width: 6px; height: 6px;
    background: #6fcf7c;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(111, 207, 124, 0.5);
}
.map-badge-text { color: var(--white); }
.map-badge-separator { color: var(--text-tertiary); font-size: 0.5rem; }
.map-badge-status { color: var(--gold); }

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.75); }
}

/* ══════════════════════════════════════════════
   FOOTER — Brand Signature
   ══════════════════════════════════════════════ */
.site-footer {
    padding: 0;
    margin-top: 60px;
    position: relative;
    background: #080808;
}

/* Top gold line accent */
.footer-line-accent {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), var(--gold), var(--gold-dim), transparent);
    opacity: 0.4;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 0 0;
}

/* Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 48px;
    padding-bottom: 48px;
}

/* Brand Column */
.footer-brand-col {
    padding-right: 20px;
}

.footer-logo-wrap {
    margin-bottom: 20px;
}
.footer-logo-img {
    max-height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.4s var(--ease);
}
.footer-logo-img:hover {
    opacity: 1;
}

.footer-signature {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    font-weight: 400;
    font-style: italic;
}
.footer-signature-gold {
    color: var(--gold);
    font-style: italic;
}

/* Column Headings */
.footer-col-heading {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 20px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

/* Link Lists */
.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-link-list li a {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    transition: all 0.35s var(--ease);
    position: relative;
    display: inline-block;
    padding-left: 0;
}
.footer-link-list li a::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease);
}
.footer-link-list li a:hover {
    color: var(--white);
    padding-left: 18px;
}
.footer-link-list li a:hover::before {
    width: 10px;
}

/* Social Buttons */
.footer-social-row {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.footer-social-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all 0.4s var(--ease);
}
.footer-social-btn svg {
    width: 16px; height: 16px;
    transition: transform 0.35s var(--ease);
}
.footer-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}
.footer-social-btn:hover svg {
    transform: rotate(-8deg) scale(1.1);
}

/* Footer Address */
.footer-address {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    line-height: 1.65;
}

/* Bottom Bar */
.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-copy {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
    font-weight: 400;
}
.footer-crafted {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold-dim);
    transition: color 0.4s var(--ease);
}
.footer-crafted:hover {
    color: var(--gold);
}

/* ══════════════════════════════════════════════
   MODALS — Glassmorphism verdadeiro
   ══════════════════════════════════════════════ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}
.modal-backdrop.active { opacity: 1; visibility: visible; }

.modal-card {
    background: var(--surface-glass-strong);
    backdrop-filter: blur(30px) saturate(1.5);
    -webkit-backdrop-filter: blur(30px) saturate(1.5);
    border: 1px solid var(--border-hover);
    border-radius: var(--r-xl);
    padding: 36px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8);
    transform: scale(0.96) translateY(10px);
    transition: all 0.4s var(--ease);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-backdrop.active .modal-card { transform: scale(1) translateY(0); }
.modal-card-wide { max-width: 650px; }

.modal-close {
    position: absolute;
    top: 18px; right: 18px;
    background: rgba(255,255,255,0.06);
    color: var(--text-secondary);
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.modal-close:hover {
    background: var(--gold);
    color: #0a0a0a;
}

.modal-tag {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.55;
}

/* Forms */
.form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
}
.form-group input,
.form-group select {
    background: rgba(10,10,10,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 13px 16px;
    color: var(--white);
    font-size: 0.88rem;
    transition: all 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-subtle);
}
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1917; color: var(--white); }

.btn-submit-modal { margin-top: 8px; padding: 16px; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero-title { font-size: 3.6rem; }
    .modalities-main-grid { grid-template-columns: 1fr; }
    .values-showcase-container { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .map-frame { height: 400px; }
}

@media (max-width: 860px) {
    .main-nav, .btn-header { display: none; }
    .mobile-menu-toggle { display: flex; }

    .mobile-drawer {
        display: block;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--surface-glass-strong);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        border: 1px solid var(--border);
        border-radius: 0 0 var(--r-lg) var(--r-lg);
        padding: 24px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: all 0.4s var(--ease);
    }
    .mobile-drawer.active { opacity: 1; pointer-events: auto; transform: translateY(0); }

    .mobile-nav-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
    .mobile-nav-link {
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 2px;
        color: var(--white);
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
    }

    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-section { padding: 40px 28px; }
    .hero-title { font-size: 3rem; }

    .location-badge {
        position: relative;
        bottom: 0; right: 0;
        margin-top: 14px;
        width: 100%;
    }

    .modalities-cards-layout { grid-template-columns: 1fr; }
    .card-boxe-tall { grid-column: 1; grid-row: auto; min-height: 200px; }
    
    .plans-grid { grid-template-columns: 1fr; }

    .values-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand-col { padding-right: 0; }
    .contact-title-light { font-size: 2.6rem; }
    .contact-title-bold { font-size: 3.4rem; }
}

@media (max-width: 480px) {
    .main-wrapper { padding: 0 16px; }
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 2.6rem; }
    .modalities-top-row, .modalities-bottom-row { grid-template-columns: 1fr; }
    .showcase-hollow-logo { font-size: 4.5rem; }
    .hero-section { padding: 32px 20px; }
    .contact-section { padding: 48px 0 36px; }
    .contact-container { padding: 0; }
    .contact-label-row { margin-bottom: 32px; }
    .contact-title-light { font-size: 2rem; }
    .contact-title-bold { font-size: 2.6rem; }
    .contact-desc { font-size: 0.82rem; }
    .hide-mobile { display: none; }
    .map-frame { height: 300px; }
    .btn-premium-cta { width: 100%; justify-content: center; padding: 16px 24px; font-size: 0.65rem; }
    .footer-container { padding: 36px 0 0; }
    .footer-bottom-bar { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── Scrollbar sutil ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-cement-light); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ── Selection ── */
::selection { background: var(--gold-subtle); color: var(--white-pure); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════ */

/* Base state — hidden before reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Variant: Fade from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Variant: Fade from right */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Variant: Scale in (for cards) */
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}
.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays for grid children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════
   FLOATING & BREATHING KEYFRAMES
   ══════════════════════════════════════════════ */

/* Gentle float for the location badge */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.location-badge {
    animation: float 4s ease-in-out infinite;
}
.location-badge:hover {
    animation-play-state: paused;
}

/* Subtle breathing glow on the showcase hollow logo */
@keyframes breathe-glow {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(201, 169, 78, 0.15)); }
    50% { filter: drop-shadow(0 0 24px rgba(201, 169, 78, 0.35)); }
}

.showcase-hollow-logo {
    animation: breathe-glow 3.5s ease-in-out infinite;
}

/* Hero tag dot pulse */
@keyframes tag-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 169, 78, 0.5); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(201, 169, 78, 0); }
}

.tag-dot {
    animation: tag-pulse 2.5s ease-in-out infinite;
}

/* Dash indicator shimmer */
@keyframes dash-shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

.dash-active {
    background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright), var(--gold-dim));
    background-size: 200% 100%;
    animation: dash-shimmer 3s ease-in-out infinite;
}

/* ══════════════════════════════════════════════
   ENHANCED HOVER MICRO-INTERACTIONS
   ══════════════════════════════════════════════ */

/* Value cards — inner glow sweep on hover */
.value-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 78, 0.04), transparent);
    transition: left 0.6s var(--ease);
    pointer-events: none;
}
.value-card:hover::after {
    left: 120%;
}

/* Modality card — border glow animation on hover */
.modality-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent 40%, rgba(201, 169, 78, 0.12) 50%, transparent 60%);
    background-size: 300% 300%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
    animation: border-sweep 3s ease-in-out infinite;
}

@keyframes border-sweep {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.modality-card:hover::after {
    opacity: 1;
}

/* Plan featured card — subtle pulse shadow */
@keyframes plan-glow {
    0%, 100% { box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(201, 169, 78, 0.2); }
    50% { box-shadow: 0 16px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(201, 169, 78, 0.35); }
}

.plan-featured {
    animation: plan-glow 4s ease-in-out infinite;
}

/* Coach card — avatar ring glow on hover */
.coach-card:hover .coach-avatar {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 169, 78, 0.2);
}

/* Nav link — smooth underline grow */
.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    border-radius: 1px;
    transition: all 0.35s var(--ease);
    transform: translateX(-50%);
}
.nav-link:hover::before {
    width: 100%;
}
.nav-link.active::before {
    width: 100%;
}
/* Remove the old static ::after for active */
.nav-link.active::after { display: none; }

/* Footer social btn — rotation on hover (handled in footer section) */

/* ══════════════════════════════════════════════
   SMOOTH SECTION SEPARATORS
   ══════════════════════════════════════════════ */

/* Thin gold line that reveals between sections */
.section-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.8s var(--ease), width 0.8s var(--ease);
}
.section-divider.visible {
    opacity: 1;
    width: 120px;
}

/* ══════════════════════════════════════════════
   PARALLAX DEPTH HINTS (CSS-only)
   ══════════════════════════════════════════════ */

/* Hero watermark moves slower (visual depth via scroll) */
.hero-watermark {
    transition: transform 0.1s linear;
}

/* Fighter image subtle depth shift on scroll */
.fighter-image-wrapper {
    transition: transform 0.3s var(--ease);
}

/* ══════════════════════════════════════════════
   COUNTER / NUMBER ANIMATION SUPPORT
   ══════════════════════════════════════════════ */
.animate-number {
    display: inline-block;
    transition: all 0.4s var(--ease);
}

/* ══════════════════════════════════════════════
   CURSOR FOLLOW GLOW (applied via JS)
   ══════════════════════════════════════════════ */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 78, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    opacity: 0;
}
.cursor-glow.active {
    opacity: 1;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .location-badge,
    .showcase-hollow-logo,
    .tag-dot,
    .dash-active,
    .plan-featured,
    .pulse-dot {
        animation: none;
    }
}
