/* ============================================================
   RICKY LÓPEZ — LANDING PAGE
   Diseño premium dark mode · aiteco.pro
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
    --gold: #FFD700;
    --gold-dim: #c9a900;
    --dark: #0a0a0a;
    --dark2: #111111;
    --dark3: #1a1a1a;
    --dark4: #242424;
    --light: #e8e8e8;
    --muted: #888;
    --border: rgba(255,255,255,0.08);
    --radius: 12px;
    --nav-h: 72px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}
.btn-gold {
    background: var(--gold);
    color: #0a0a0a;
    box-shadow: 0 0 0 0 rgba(255,215,0,0.4);
}
.btn-gold:hover {
    background: #ffe033;
    box-shadow: 0 8px 32px rgba(255,215,0,0.25);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}
.btn-xl {
    padding: 18px 40px;
    font-size: 15px;
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header h2 { margin-top: 0; }

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}
h2 em {
    font-style: italic;
    color: var(--gold);
}

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
    display: flex;
    gap: 32px;
    margin-left: auto;
}
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gold);
    color: #0a0a0a;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all var(--transition);
    margin-left: 8px;
}
.nav-cta:hover { background: #ffe033; transform: translateY(-1px); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: all var(--transition);
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh; /* 16:9 */
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0.15) 40%,
        rgba(10,10,10,0.6) 80%,
        rgba(10,10,10,0.95) 100%
    );
}
.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.hero-logo {
    width: min(320px, 60vw);
    height: auto;
    filter: drop-shadow(0 8px 40px rgba(0,0,0,0.6));
    animation: heroFadeIn 1.2s ease both;
}
.hero-tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    animation: heroFadeIn 1.2s ease 0.3s both;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: heroFadeIn 1.2s ease 0.8s both;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════════ */
.ticker {
    background: var(--gold);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    gap: 32px;
    animation: ticker 30s linear infinite;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0a0a0a;
}
.ticker-track .sep { opacity: 0.5; }
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   SOBRE RICKY
══════════════════════════════════════════════════════════════ */
.sobre {
    padding: 120px 0;
    background: var(--dark);
}
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.sobre-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}
.sobre-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.sobre-img:hover img { transform: scale(1.04); }
.sobre-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--gold);
    color: #0a0a0a;
    padding: 16px 20px;
    border-radius: 10px;
    text-align: center;
    line-height: 1.2;
}
.badge-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    font-family: 'Cormorant Garamond', serif;
}
.badge-txt {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.sobre-content { display: flex; flex-direction: column; gap: 24px; }
.sobre-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}
.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-lbl {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   MUSICA / SPOTIFY
══════════════════════════════════════════════════════════════ */
.musica {
    padding: 120px 0;
    background: var(--dark2);
}
.spotify-wrap {
    max-width: 700px;
    margin: 0 auto 48px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.plataformas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.plataforma-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--light);
    transition: all var(--transition);
}
.plataforma-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   GALERIA
══════════════════════════════════════════════════════════════ */
.galeria {
    padding: 120px 0;
    background: var(--dark);
}
.galeria-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.gal-btn {
    padding: 9px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}
.gal-btn:hover, .gal-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #0a0a0a;
}
.galeria-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}
.gal-scroll-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,215,0,0.2);
    background: rgba(255,215,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255,215,0,0.6);
    transition: all var(--transition);
    opacity: 0.5;
}
.gal-scroll-btn:hover {
    opacity: 1;
    background: rgba(255,215,0,0.1);
    border-color: rgba(255,215,0,0.4);
    color: var(--gold);
}
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 12px;
    flex: 1;
}
.gal-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    transition: opacity var(--transition), transform var(--transition);
}
.gal-item.gal-tall { grid-row: span 2; }
.gal-item.gal-wide { grid-column: span 2; }
.gal-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-hover {
    position: absolute;
    inset: 0;
    background: rgba(255,215,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gal-item:hover .gal-hover { opacity: 1; }
.gal-hover span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0a0a0a;
}
.gal-item.hidden { display: none; }

/* ══════════════════════════════════════════════════════════════
   CONTRATACIONES
══════════════════════════════════════════════════════════════ */
.contrataciones {
    padding: 120px 0;
    background: var(--dark2);
}
.contratos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}
.contrato-card {
    position: relative;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition);
}
.contrato-card:hover {
    border-color: rgba(255,215,0,0.3);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.contrato-featured {
    background: var(--dark4);
    border-color: rgba(255,215,0,0.4);
}
.contrato-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #0a0a0a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    white-space: nowrap;
}
.contrato-icon {
    color: var(--gold);
    margin-bottom: 4px;
}
.contrato-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}
.contrato-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    flex: 1;
}
.contrato-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.contrato-list li {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    padding-left: 16px;
    position: relative;
}
.contrato-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
}

/* INCLUYE */
.incluye-wrap {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
}
.incluye-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 32px;
    text-align: center;
}
.incluye-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.incluye-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}
.incluye-item svg { color: var(--gold); flex-shrink: 0; }
.incluye-opcional {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.incluye-opcional strong { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIOS
══════════════════════════════════════════════════════════════ */
.testimonios {
    padding: 120px 0;
    background: var(--dark);
}
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.test-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all var(--transition);
}
.test-card:hover {
    border-color: rgba(255,215,0,0.2);
    transform: translateY(-4px);
}
.test-stars { display: flex; gap: 4px; color: var(--gold); }
.test-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    flex: 1;
}
.test-author { display: flex; flex-direction: column; gap: 4px; }
.test-name { font-size: 13px; font-weight: 600; color: #fff; }
.test-event { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.faq {
    padding: 120px 0;
    background: var(--dark2);
}
.faq-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-left h2 { margin-bottom: 16px; }
.faq-left p { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.faq-right { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    font-family: 'Inter', sans-serif;
    text-align: left;
    gap: 16px;
    transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-arrow { flex-shrink: 0; transition: transform var(--transition); color: var(--muted); }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--gold); }
.faq-item.open .faq-q { color: var(--gold); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
    padding: 0 0 22px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════════════════════════ */
.contacto {
    padding: 160px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.contacto::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.contacto-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.contacto-inner h2 { font-size: clamp(36px, 6vw, 72px); }
.contacto-sub {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
}
.contacto-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 80px 0 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 280px;
}
.footer-nav h4, .footer-social h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
    font-size: 14px;
    color: var(--muted);
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--light); }
.social-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--muted);
    transition: all var(--transition);
}
.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0a0a0a;
    transform: translateY(-3px);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom a {
    color: var(--gold);
    transition: opacity var(--transition);
}
.footer-bottom a:hover { opacity: 0.7; }

/* ══════════════════════════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════════════════════════ */
.fab-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    transition: all var(--transition);
}
.fab-wa:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
    .sobre-img { aspect-ratio: 16/9; max-height: 400px; }
    .galeria-grid { grid-template-columns: repeat(3, 1fr); }
    .contratos-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .test-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .faq-inner { grid-template-columns: 1fr; gap: 48px; }
    .faq-left { position: static; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .incluye-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --nav-h: 60px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav.menu-open .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(10,10,10,0.97);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }
    .nav.menu-open .nav-links a { font-size: 16px; }
    .sobre, .musica, .galeria, .contrataciones, .testimonios, .faq, .contacto { padding: 80px 0; }
    .sobre-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .sobre-img { max-width: 100%; width: 100%; aspect-ratio: auto; max-height: none; }
    .galeria-container { gap: 12px; }
    .gal-scroll-btn { width: 36px; height: 36px; }
    .galeria-grid { display: flex; overflow-x: auto; overflow-y: hidden; gap: 12px; scroll-snap-type: x mandatory; padding-bottom: 12px; }
    .galeria-grid::-webkit-scrollbar { height: 4px; }
    .galeria-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 10px; }
    .galeria-grid::-webkit-scrollbar-thumb { background: rgba(255,215,0,0.3); border-radius: 10px; }
    .galeria-grid::-webkit-scrollbar-thumb:hover { background: rgba(255,215,0,0.5); }
    .gal-item { flex: 0 0 calc(100vw - 48px); height: auto; scroll-snap-align: start; }
    .gal-item:first-child { flex: 0 0 calc(100vw - 48px); height: auto; }
    .gal-item.gal-tall { flex: 0 0 calc(100vw - 48px); height: auto; }
    .gal-item.gal-wide { flex: 0 0 calc(100vw - 48px); height: auto; }
    .test-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .incluye-wrap { padding: 32px 24px; }
    .incluye-grid { grid-template-columns: 1fr; }
    h2 { font-size: 32px; }
    .contacto-inner h2 { font-size: 36px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-logo { width: min(240px, 70vw); }
    .sobre-stats { grid-template-columns: 1fr; }
    .sobre-img { max-width: 100%; width: 100%; aspect-ratio: auto; max-height: none; }
    .galeria-container { gap: 10px; }
    .gal-scroll-btn { width: 32px; height: 32px; }
    .galeria-grid { display: flex; overflow-x: auto; overflow-y: hidden; gap: 12px; scroll-snap-type: x mandatory; padding-bottom: 12px; }
    .gal-item { flex: 0 0 calc(100vw - 32px); height: auto; scroll-snap-align: start; }
    .gal-item:first-child { flex: 0 0 calc(100vw - 32px); height: auto; }
    .gal-item.gal-tall { flex: 0 0 calc(100vw - 32px); height: auto; }
    .gal-item.gal-wide { flex: 0 0 calc(100vw - 32px); height: auto; }
    .fab-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}


/* ══════════════════════════════════════════════════════════════
   MERCHING
══════════════════════════════════════════════════════════════ */
.merching {
    padding: 120px 0;
    background: var(--dark);
}
.merch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}
.merch-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.merch-card:hover {
    border-color: rgba(255,215,0,0.3);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.merch-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--dark4);
}
.merch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.merch-card:hover .merch-img img { transform: scale(1.05); }
.merch-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    padding: 24px 24px 12px;
}
.merch-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    padding: 0 24px 24px;
    flex: 1;
}
.merch-card .btn {
    margin: 0 24px 24px;
    justify-content: center;
}

/* ══════════════════════════════════════════════════════════════
   BANNER HERO
══════════════════════════════════════════════════════════════ */
.banner-hero {
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE - MERCHING
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .merch-grid { grid-template-columns: 1fr; gap: 32px; }
    .banner-hero { height: auto; min-height: 300px; aspect-ratio: 16 / 9; }
}

@media (max-width: 480px) {
    .banner-hero { height: auto; min-height: 220px; aspect-ratio: 16 / 10; }
}
