/* ============================================
   MVSJ — main.css: Estilos globales
   Elegancia Folklórica Contemporánea
   ============================================ */

/* ----------------------------------------
   VARIABLES CSS
   ---------------------------------------- */
:root {
    /* Colores principales — traje 2026 "Familia" */
    --coral:          #E85D5D;
    --coral-light:    #FF7B7B;
    --coral-dark:     #C94444;
    --morado:         #7B2D8E;
    --morado-deep:    #4A1A54;
    --morado-light:   #9B4DB0;
    --gold:           #D4A853;
    --gold-light:     #FFD693;
    --gold-dark:      #A8832F;

    /* Fondos */
    --dark:           #0A0A0F;
    --darker:         #050508;
    --dark-card:      #111118;
    --dark-surface:   #1A1A24;
    --dark-border:    #2A2A38;

    /* Texto */
    --light:          #F5F0EA;
    --light-muted:    rgba(245, 240, 234, 0.6);
    --light-subtle:   rgba(245, 240, 234, 0.3);

    /* Glass */
    --glass:          rgba(255, 255, 255, 0.06);
    --glass-border:   rgba(255, 255, 255, 0.1);
    --glass-hover:    rgba(255, 255, 255, 0.12);

    /* Gradientes */
    --grad-hero:      linear-gradient(135deg, var(--coral) 0%, var(--morado-deep) 60%, var(--darker) 100%);
    --grad-coral:     linear-gradient(135deg, var(--coral), var(--coral-dark));
    --grad-gold:      linear-gradient(135deg, var(--gold), var(--gold-dark));
    --grad-brand:     linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);

    /* Funcionales */
    --success:        #00C853;
    --warning:        #FFB300;
    --error:          #FF5252;
    --info:           #448AFF;

    /* Tipografía */
    --font-display:   'Bebas Neue', sans-serif;
    --font-elegant:   'Playfair Display', serif;
    --font-body:      'Outfit', sans-serif;
    --font-accent:    'Cinzel', serif;

    /* Espaciado */
    --section-py:     6rem;
    --section-px:     2rem;
    --container-max:  1200px;
    --radius:         16px;
    --radius-sm:      8px;
    --radius-xs:      4px;

    /* Transiciones */
    --t-fast:         0.2s ease;
    --t-base:         0.3s ease;
    --t-smooth:       0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Sombras */
    --shadow-card:    0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-sm:      0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-glow-coral:  0 0 30px rgba(232, 93, 93, 0.3);
    --shadow-glow-gold:   0 0 30px rgba(212, 168, 83, 0.3);
    --shadow-glow-morado: 0 0 30px rgba(123, 45, 142, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--darker);
    color: var(--light);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    /* Noise texture sutil */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-base); }
a:hover { color: var(--coral-light); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ----------------------------------------
   TIPOGRAFÍA
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.display { font-family: var(--font-display); letter-spacing: 0.05em; text-transform: uppercase; }
.elegant { font-family: var(--font-elegant); }
.accent  { font-family: var(--font-accent); }

.text-coral      { color: var(--coral); }
.text-gold       { color: var(--gold); }
.text-morado     { color: var(--morado); }
.text-muted      { color: var(--light-muted); }
.text-gradient   {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----------------------------------------
   LAYOUT
   ---------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--section-px);
}

.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

.section {
    padding: var(--section-py) var(--section-px);
}

.section--dark    { background: var(--darker); }
.section--surface { background: var(--dark-surface); }
.section--card    { background: var(--dark-card); }

/* ----------------------------------------
   BOTONES
   ---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}

.btn::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.5s ease;
}

.btn:hover::before { left: 100%; }

.btn--coral {
    background: var(--grad-coral);
    color: #fff;
    box-shadow: var(--shadow-glow-coral);
}
.btn--coral:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(232, 93, 93, 0.5);
    color: #fff;
}

.btn--gold {
    background: var(--grad-gold);
    color: var(--darker);
    box-shadow: var(--shadow-glow-gold);
}
.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(212, 168, 83, 0.5);
}

.btn--outline {
    border: 2px solid var(--glass-border);
    color: var(--light);
    background: var(--glass);
    backdrop-filter: blur(8px);
}
.btn--outline:hover {
    border-color: var(--coral);
    color: var(--coral);
    background: rgba(232, 93, 93, 0.1);
}

.btn--ghost {
    color: var(--light-muted);
    padding: 0.5rem 0;
    border-radius: 0;
}
.btn--ghost::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--coral);
    transition: width var(--t-base);
}
.btn--ghost:hover { color: var(--coral); }
.btn--ghost:hover::after { width: 100%; }

.btn--sm  { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn--lg  { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--xl  { padding: 1.25rem 3rem; font-size: 1.15rem; letter-spacing: 0.05em; }

/* ----------------------------------------
   CARDS
   ---------------------------------------- */
.card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(232, 93, 93, 0.3);
}

.card--glass {
    background: var(--glass);
    border-color: var(--glass-border);
    backdrop-filter: blur(12px);
}

/* ----------------------------------------
   BADGES
   ---------------------------------------- */
.badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge--coral   { background: rgba(232, 93, 93, 0.15); color: var(--coral); border: 1px solid rgba(232,93,93,0.3); }
.badge--gold    { background: rgba(212, 168, 83, 0.15); color: var(--gold); border: 1px solid rgba(212,168,83,0.3); }
.badge--morado  { background: rgba(123, 45, 142, 0.15); color: var(--morado-light); border: 1px solid rgba(123,45,142,0.3); }
.badge-sede     { background: var(--gold); color: var(--darker); font-size: 0.65rem; padding: 0.15rem 0.5rem; border-radius: 3px; margin-left: 4px; vertical-align: middle; }
.badge-sede-sm  { font-size: 0.6rem; background: rgba(212,168,83,0.2); color: var(--gold); border-radius: 3px; padding: 0.1rem 0.4rem; margin-left: 4px; }

/* ----------------------------------------
   SEPARADOR DECORATIVO ANDINO
   ---------------------------------------- */
.andean-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 2rem 0;
}

.andean-divider svg { display: block; width: 100%; }

.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}
.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.section-divider__ornament {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ----------------------------------------
   SCROLL REVEAL (clases añadidas por JS)
   ---------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ----------------------------------------
   LOADER
   ---------------------------------------- */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-logo {
    width: 80px; height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.loader-pulse {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--grad-brand);
    animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.8; }
    50%       { transform: scale(1.1); opacity: 1; }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: loaderText 1.2s ease-in-out infinite alternate;
}

@keyframes loaderText {
    from { opacity: 0.5; }
    to   { opacity: 1; }
}

/* ----------------------------------------
   NAVBAR
   ---------------------------------------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: background var(--t-base), backdrop-filter var(--t-base), box-shadow var(--t-base);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    padding: 0.6rem 0;
}

.navbar__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.navbar__logo-icon { position: relative; }

.navbar__logo-dot {
    position: absolute;
    top: -2px; right: -2px;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--coral);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

.navbar__logo-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.2;
    color: var(--light);
}
.navbar__logo-text strong { display: block; font-weight: 700; color: var(--gold); }

.navbar__links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.navbar__link {
    padding: 0.5rem 0.875rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-muted);
    border-radius: var(--radius-sm);
    transition: color var(--t-base), background var(--t-base);
    position: relative;
}

.navbar__link:hover,
.navbar__link.active { color: var(--light); }

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--coral);
    border-radius: 2px;
    transition: width var(--t-base);
}
.navbar__link:hover::after,
.navbar__link.active::after { width: 60%; }

.navbar__link--dropdown {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
}

.navbar__chevron { transition: transform var(--t-base); }
.navbar__chevron.rotated { transform: rotate(180deg); }

/* Dropdown menú */
.navbar__item--dropdown,
.navbar__item--mega {
    position: relative;
}

.navbar__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: rgba(17, 17, 24, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    box-shadow: var(--shadow-card);
}

.navbar__dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    color: var(--light-muted);
    border-radius: var(--radius-xs);
    transition: all var(--t-base);
    white-space: nowrap;
}
.navbar__dropdown-link:hover {
    color: var(--light);
    background: var(--glass);
}

/* Mega menú */
.navbar__mega {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
    background: rgba(17, 17, 24, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.navbar__mega-grid {
    display: grid;
    grid-template-columns: 1fr 200px;
}

.navbar__mega-col { padding: 1.5rem; }

.navbar__mega-col--img { padding: 0; }

.navbar__mega-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.navbar__mega-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-xs);
    transition: all var(--t-base);
    color: var(--light-muted);
}
.navbar__mega-link:hover { color: var(--light); background: var(--glass); }

.navbar__mega-icon { color: var(--coral); font-size: 0.4rem; flex-shrink: 0; }

.navbar__mega-link strong { display: block; font-size: 0.875rem; color: var(--light); }
.navbar__mega-link small  { font-size: 0.75rem; color: var(--light-muted); }

.navbar__mega-img-wrap {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.navbar__mega-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    transition: filter var(--t-base);
}
.navbar__mega-img-wrap:hover .navbar__mega-img { filter: brightness(0.8); }

.navbar__mega-img-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    background: linear-gradient(to top, rgba(5,5,8,0.9) 0%, transparent 70%);
}

.navbar__mega-quote {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--gold);
    line-height: 1.4;
}

/* Acciones navbar */
.navbar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.navbar__cta { font-size: 0.875rem; padding: 0.55rem 1.25rem; }

/* Hamburguesa */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-xs);
    transition: background var(--t-base);
}
.navbar__hamburger:hover { background: var(--glass); }
.navbar__hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: all var(--t-base);
}

.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* Menú móvil */
.navbar__mobile {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--t-smooth);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.navbar__mobile.open { transform: translateX(0); }

.navbar__mobile-inner {
    padding: 5rem 2rem 3rem;
    width: 100%;
    max-width: 440px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbar__mobile-links { display: flex; flex-direction: column; gap: 0.25rem; }
.navbar__mobile-links > li > a {
    display: block;
    padding: 0.875rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    border-radius: var(--radius-sm);
    transition: all var(--t-base);
}
.navbar__mobile-links > li > a:hover { background: var(--glass); color: var(--coral); }

.navbar__mobile-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    border-radius: var(--radius-sm);
    transition: all var(--t-base);
}
.navbar__mobile-toggle:hover { background: var(--glass); }

.navbar__mobile-sub {
    display: none;
    flex-direction: column;
    padding-left: 1.5rem;
    gap: 0.125rem;
}
.navbar__mobile-sub.open { display: flex; }
.navbar__mobile-sub li a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--light-muted);
    border-radius: var(--radius-xs);
    transition: all var(--t-base);
}
.navbar__mobile-sub li a:hover { color: var(--coral); background: var(--glass); }

/* ----------------------------------------
   WHATSAPP FLOTANTE
   ---------------------------------------- */
.wa-float {
    position: fixed;
    bottom: 24px; left: 24px;
    z-index: 900;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--t-base), box-shadow var(--t-base);
    animation: waPulse 3s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50%       { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

.wa-float__tooltip {
    position: absolute;
    left: calc(100% + 12px);
    background: #25D366;
    color: white;
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-8px);
    transition: opacity var(--t-base), transform var(--t-base);
}

.wa-float:hover .wa-float__tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ----------------------------------------
   REPRODUCTOR DE MÚSICA
   ---------------------------------------- */
.music-player {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    transition: all var(--t-base);
}

.music-player:hover { border-color: var(--gold); }

.music-player__btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--t-base);
    position: relative;
}

.music-player__btn:hover { transform: scale(1.1); }

.music-player__note {
    position: absolute;
    font-size: 0.75rem;
    top: -6px; right: -4px;
    animation: noteFloat 2s ease-in-out infinite;
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0) rotate(0); opacity: 0.7; }
    50%       { transform: translateY(-6px) rotate(10deg); opacity: 1; }
}

.music-player__label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--light-muted);
    font-style: italic;
}

/* ----------------------------------------
   MODAL DE TÉRMINOS
   ---------------------------------------- */
.terms-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.terms-modal.hidden {
    opacity: 0;
    visibility: hidden;
}

.terms-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.terms-modal__content {
    position: relative;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-card);
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from { transform: scale(0.85) translateY(20px); opacity: 0; }
    to   { transform: scale(1) translateY(0); opacity: 1; }
}

.terms-modal__logo { margin-bottom: 1.5rem; display: flex; justify-content: center; }

.terms-modal__title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.terms-modal__title strong { color: var(--gold); display: block; font-size: 1.1em; }

.terms-modal__subtitle {
    font-style: italic;
    color: var(--coral);
    margin-bottom: 1.5rem;
    font-family: var(--font-elegant);
}

.terms-modal__body {
    color: var(--light-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}
.terms-modal__body a { color: var(--coral); text-decoration: underline; }

/* ----------------------------------------
   HERO INTERNO (páginas internas)
   ---------------------------------------- */
.page-hero {
    position: relative;
    padding: 8rem 2rem 5rem;
    overflow: hidden;
    text-align: center;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    z-index: 0;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232,93,93,0.2) 0%, rgba(74,26,84,0.5) 60%, rgba(5,5,8,0.9) 100%);
    z-index: 1;
}

.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.page-hero__tag::before { content: '◆'; font-size: 0.5rem; }

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--light);
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--light-muted);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--light-muted);
    margin-top: 1.5rem;
    justify-content: center;
}
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb__sep { color: var(--gold); }

/* ----------------------------------------
   SECTION HEADER (títulos de sección)
   ---------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.75rem;
}
.section-header__tag::before,
.section-header__tag::after { content: '—'; color: var(--gold); }

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header__desc {
    font-size: 1.05rem;
    color: var(--light-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}

.footer__divider { height: 40px; }

.footer__body { padding: 3rem 0 2rem; }

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer__col--brand { }

.footer__logo { margin-bottom: 1rem; }

.footer__brand-name {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.footer__brand-name strong { color: var(--gold); display: block; font-size: 1.1em; }

.footer__lema {
    font-family: var(--font-elegant);
    font-style: italic;
    color: var(--coral);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.footer__hashtag {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--light-muted);
    transition: all var(--t-base);
}

.footer__social-link--instagram:hover { background: rgba(225,48,108,0.2); color: #E1306C; border-color: #E1306C; }
.footer__social-link--facebook:hover  { background: rgba(24,119,242,0.2); color: #1877F2; border-color: #1877F2; }
.footer__social-link--tiktok:hover    { background: rgba(105,201,208,0.2); color: #69C9D0; border-color: #69C9D0; }
.footer__social-link--youtube:hover   { background: rgba(255,0,0,0.2); color: #FF0000; border-color: #FF0000; }

.footer__col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__list a {
    font-size: 0.875rem;
    color: var(--light-muted);
    transition: color var(--t-base);
}
.footer__list a:hover { color: var(--coral); }

.footer__list-cta { color: var(--coral) !important; font-weight: 600; }

.footer__contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--light-muted);
    transition: color var(--t-base);
}
.footer__contact-link:hover { color: var(--coral); }
.footer__contact-link svg { flex-shrink: 0; }

.footer__bottom {
    border-top: 1px solid var(--dark-border);
    padding: 1.25rem 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--light-subtle);
}
.footer__copy a:hover { color: var(--gold); }

.footer__hashtag-bottom {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.footer__credits {
    font-size: 0.75rem;
    color: var(--light-subtle);
}

/* ----------------------------------------
   VISTAS DE ERROR
   ---------------------------------------- */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-page__code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 20vw, 12rem);
    line-height: 1;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-page__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.error-page__desc {
    color: var(--light-muted);
    margin-bottom: 2rem;
    max-width: 400px;
}

/* ----------------------------------------
   UTILS
   ---------------------------------------- */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.mt-auto      { margin-top: auto; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.fade-in { animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Glow SVG decorativo (fondo) */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.glow-blob--coral  { background: rgba(232, 93, 93, 0.15); }
.glow-blob--morado { background: rgba(123, 45, 142, 0.15); }
.glow-blob--gold   { background: rgba(212, 168, 83, 0.1); }

/* Formularios globales */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--light-muted); }
.form-control {
    width: 100%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: var(--light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--t-base), box-shadow var(--t-base);
}
.form-control:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232, 93, 93, 0.15);
}
.form-control::placeholder { color: var(--light-subtle); }
.form-control option { background: var(--dark-card); }

.form-error { font-size: 0.8rem; color: var(--error); margin-top: 0.25rem; }
.form-success { font-size: 0.8rem; color: var(--success); margin-top: 0.25rem; }
