/**
 * Micky Sánchez Theme - Main Styles
 * @version 1.0.0
 */

:root {
    --black: #000;
    --black-soft: #0a0a0a;
    --black-card: #111;
    --gold: #b8956c;
    --gold-light: #d4b896;
    --white: #fff;
    --grey: #666;
    --grey-light: #999;
    
    --font-display: 'Cormorant', Georgia, serif;
    --font-body: 'Inter', sans-serif;
    
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { 
    font-size: 16px; 
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 99999;
}

::selection { background: var(--gold); color: var(--black); }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; font: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Cursor - Using default system cursor */
.cursor { display: none !important; }
a { cursor: pointer; }
button { cursor: pointer; }

/* Preloader */
#preloader { position: fixed; inset: 0; background: var(--black); z-index: 100000; display: flex; align-items: center; justify-content: center; }
.loader-inner { text-align: center; }
.loader-name { font-family: var(--font-display); font-size: clamp(36px, 8vw, 72px); font-weight: 300; font-style: italic; color: var(--gold); letter-spacing: 0.1em; }
.loader-bar { width: 120px; height: 1px; background: rgba(255,255,255,0.1); margin: 30px auto 0; overflow: hidden; }
.loader-progress { height: 100%; width: 0%; background: var(--gold); }

/* Nav */
.nav { 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    z-index: 1000; 
    padding: 15px 0; 
    transition: all 0.5s var(--ease); 
    background: rgba(0,0,0,0.95);
}
@media (min-width: 768px) { 
    .nav { 
        padding: 30px 0; 
        background: transparent;
    } 
}
.nav.scrolled { 
    padding: 12px 0; 
    background: rgba(0,0,0,0.98); 
    backdrop-filter: blur(20px); 
}
@media (min-width: 768px) { .nav.scrolled { padding: 20px 0; } }
.nav-inner { max-width: 1800px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); display: flex; justify-content: space-between; align-items: center; }
.nav-logo { font-family: var(--font-display); font-size: 18px; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; }
.nav-menu { display: none; gap: 40px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 1024px) { .nav-menu { display: flex; } }
.nav-menu li { list-style: none; }
.nav-link { font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.6; transition: opacity 0.3s; }
.nav-link:hover { opacity: 1; }
.nav-cta { font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; padding: 14px 28px; border: 1px solid rgba(255,255,255,0.2); transition: all 0.4s var(--ease); display: none; }
@media (min-width: 768px) { .nav-cta { display: block; } }
.nav-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.nav-toggle { display: flex; flex-direction: column; gap: 6px; padding: 10px; background: none; border: none; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span { width: 24px; height: 1px; background: var(--white); transition: all 0.4s var(--ease); display: block; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; background: var(--black); z-index: 999; display: flex; flex-direction: column; justify-content: center; padding: 0 clamp(30px, 8vw, 80px); opacity: 0; visibility: hidden; transition: all 0.5s var(--ease); }
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: clamp(28px, 7vw, 48px); font-weight: 300; font-style: italic; line-height: 1.5; opacity: 0; transform: translateX(-30px); transition: all 0.5s var(--ease), color 0.3s; display: block; }
.mobile-menu.active a { opacity: 1; transform: translateX(0); }
.mobile-menu a:hover { color: var(--gold); }

/* HERO */
.hero { position: relative; height: 100vh; height: 100dvh; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-bg video { filter: brightness(0.7); }
.hero-img { filter: brightness(0.8); }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.3) 100%); }
@media (min-width: 1024px) { .hero-gradient { background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%); } }
.hero-content { position: absolute; bottom: 0; left: 0; right: 0; padding: clamp(30px, 6vw, 80px); padding-bottom: clamp(50px, 10vh, 120px); }
@media (min-width: 1024px) { .hero-content { right: auto; max-width: 650px; } }
.hero-name { font-family: var(--font-display); font-size: clamp(48px, 12vw, 120px); font-weight: 300; line-height: 0.9; letter-spacing: -0.02em; margin-bottom: 20px; }
.hero-name em { font-style: italic; display: block; color: var(--gold); }
.hero-tagline { font-size: clamp(12px, 1.5vw, 14px); font-weight: 300; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 30px; }
.hero-cta-btn { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 5px; background: var(--gold); color: var(--black); padding: 18px 35px; transition: all 0.4s var(--ease); }
.hero-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(184,149,108,0.4); }
.hero-cta-btn .cta-main { font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-cta-btn .cta-sub { font-size: 10px; font-weight: 400; opacity: 0.7; }
@media (max-width: 768px) { .hero-cta-btn { padding: 15px 28px; } }
.hero-meta { position: absolute; bottom: clamp(30px, 6vw, 80px); right: clamp(30px, 6vw, 80px); text-align: right; display: none; }
@media (min-width: 1024px) { .hero-meta { display: block; } }
.hero-meta-item { margin-bottom: 20px; }
.hero-meta-label { font-size: 10px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 5px; }
.hero-meta-value { font-family: var(--font-display); font-size: 14px; font-weight: 400; letter-spacing: 0.05em; }
.hero-scroll { position: absolute; bottom: clamp(30px, 6vw, 80px); left: 50%; transform: translateX(-50%); display: none; }
@media (min-width: 1200px) { .hero-scroll { display: block; } }
.hero-scroll-line { width: 1px; height: 60px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 20px; background: var(--gold); animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown { 0% { top: -20px; } 100% { top: 100%; } }

/* SECTIONS */
.section { padding: clamp(50px, 10vh, 160px) 0; position: relative; overflow: hidden; }
@media (min-width: 768px) { .section { padding: clamp(80px, 15vh, 160px) 0; } }
.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.container-wide { max-width: 1600px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.section-header { margin-bottom: clamp(25px, 5vh, 60px); }
.section-number { font-family: var(--font-display); font-size: 12px; font-style: italic; color: var(--gold); margin-bottom: 15px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 6vw, 64px); font-weight: 300; line-height: 1.1; }
.section-title em { font-style: italic; color: var(--gold); }

/* ABOUT */
.about { background: var(--black-soft); }
.about-intro { display: grid; grid-template-columns: 1fr; gap: 60px; margin-bottom: 80px; overflow: hidden; }
@media (min-width: 1024px) { .about-intro { grid-template-columns: 1fr 1.3fr; gap: 100px; align-items: start; } }
.about-image { position: relative; overflow: hidden; }
.about-image img { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(30%); transition: filter 0.6s; }
.about-image:hover img { filter: grayscale(0%); }
.about-badge { position: absolute; bottom: -10px; right: 10px; width: 100px; height: 100px; background: var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; }
@media (min-width: 768px) { .about-badge { bottom: -20px; right: -20px; width: 110px; height: 110px; } }
@media (min-width: 768px) { .about-badge { width: 130px; height: 130px; } }
.about-badge span:first-child { font-family: var(--font-display); font-size: 40px; font-weight: 300; color: var(--black); line-height: 1; }
.about-badge span:last-child { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
.about-content h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 300; line-height: 1.1; margin-bottom: 30px; }
.about-content h2 em { font-style: italic; color: var(--gold); }
.about-lead { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px); font-weight: 300; font-style: italic; line-height: 1.5; color: var(--white); margin-bottom: 30px; padding-left: 20px; border-left: 2px solid var(--gold); }
.about-text { font-size: 15px; font-weight: 300; line-height: 1.9; color: var(--grey-light); margin-bottom: 20px; }
.about-text strong { color: var(--white); font-weight: 500; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
@media (min-width: 768px) { .about-stats { display: flex; flex-wrap: wrap; gap: 40px; text-align: left; } }
.about-stat-num { font-family: var(--font-display); font-size: clamp(28px, 5vw, 42px); font-weight: 300; color: var(--gold); line-height: 1; }
.about-stat-label { font-size: 10px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-top: 8px; }
@media (min-width: 768px) { .about-stat-label { font-size: 11px; letter-spacing: 0.15em; } }

/* Timeline */
.timeline { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 768px) { .timeline { margin-top: 80px; padding-top: 60px; } }
.timeline-title { font-family: var(--font-display); font-size: clamp(24px, 4vw, 36px); font-weight: 300; margin-bottom: 30px; text-align: center; }
@media (min-width: 768px) { .timeline-title { margin-bottom: 50px; } }
.timeline-title em { font-style: italic; color: var(--gold); }
.timeline-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
@media (min-width: 768px) { .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
@media (min-width: 1200px) { .timeline-grid { grid-template-columns: repeat(4, 1fr); } }
.timeline-item { padding: 20px; background: var(--black-card); border-left: 2px solid var(--gold); transition: all 0.4s var(--ease); }
@media (min-width: 768px) { .timeline-item { padding: 30px; } }
.timeline-item:hover { transform: translateY(-5px); background: rgba(184, 149, 108, 0.05); }
.timeline-year { font-family: var(--font-display); font-size: 32px; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 10px; }
@media (min-width: 768px) { .timeline-year { font-size: 42px; margin-bottom: 15px; } }
.timeline-event { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 8px; }
@media (min-width: 768px) { .timeline-event { font-size: 14px; margin-bottom: 10px; } }
.timeline-desc { font-size: 12px; font-weight: 300; line-height: 1.6; color: var(--grey); }
@media (min-width: 768px) { .timeline-desc { font-size: 13px; line-height: 1.7; } }

/* VIDEOS */
.videos { background: var(--black); }
.videos-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .videos-grid { grid-template-columns: repeat(3, 1fr); } }
.video-card { position: relative; aspect-ratio: 16/9; background: var(--black-card); overflow: hidden; display: block; }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: all 0.6s var(--ease); }
.video-card::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); transition: background 0.4s; z-index: 1; }
.video-card:hover::before { background: rgba(0,0,0,0.2); }
.video-card:hover img { transform: scale(1.05); }
.video-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 70px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; transition: all 0.4s var(--ease); }
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.1); }
.video-play svg { width: 20px; height: 20px; fill: var(--black); margin-left: 3px; }
.video-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; z-index: 2; }
.video-title { font-size: 14px; font-weight: 500; margin-bottom: 5px; }
.video-date { font-size: 12px; color: var(--grey-light); }

/* EVENTS */
.events { background: var(--black-soft); position: relative; overflow: hidden; }
.events-canvas { position: absolute; inset: 0; z-index: 0; opacity: 0.4; }
.events > .container { position: relative; z-index: 1; }
.events-list { display: flex; flex-direction: column; }

/* Mobile event item - centered */
.event-item { 
    display: flex; 
    flex-direction: column; 
    gap: 12px; 
    padding: 25px 15px; 
    border-bottom: 1px solid rgba(255,255,255,0.08); 
    transition: all 0.4s var(--ease); 
    text-align: center;
}
@media (min-width: 768px) { 
    .event-item { 
        display: grid; 
        grid-template-columns: 100px 1fr auto; 
        gap: 30px; 
        padding: 40px 25px; 
        text-align: left;
        align-items: center;
    } 
}
@media (min-width: 1024px) { .event-item { grid-template-columns: 140px 1fr 1fr auto; gap: 50px; } }
.event-item:hover { background: rgba(184, 149, 108, 0.03); }

/* Event date */
.event-date { display: flex; align-items: baseline; gap: 10px; justify-content: center; }
@media (min-width: 768px) { .event-date { display: block; text-align: center; } }
.event-day { font-family: var(--font-display); font-size: 42px; font-weight: 300; color: var(--gold); line-height: 1; }
@media (min-width: 768px) { .event-day { font-size: 48px; color: var(--white); } }
.event-item:hover .event-day { color: var(--gold); }
.event-month { font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); }
@media (min-width: 768px) { .event-month { font-size: 10px; letter-spacing: 0.2em; margin-top: 5px; } }

/* Event info */
.event-info { }
.event-info h3 { font-family: var(--font-display); font-size: 20px; font-weight: 400; margin-bottom: 6px; }
@media (min-width: 768px) { .event-info h3 { font-size: clamp(20px, 3vw, 28px); margin-bottom: 8px; } }
.event-location { font-size: 13px; color: var(--grey); display: flex; align-items: center; gap: 6px; justify-content: center; }
@media (min-width: 768px) { .event-location { justify-content: flex-start; gap: 8px; } }
.event-location svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

.event-time { display: none; font-size: 14px; color: var(--grey-light); }
@media (min-width: 1024px) { .event-time { display: block; } }

/* Event CTA */
.event-cta { margin-top: 5px; }
@media (min-width: 768px) { .event-cta { margin-top: 0; } }
.event-btn { 
    font-size: 10px; 
    font-weight: 500; 
    letter-spacing: 0.15em; 
    text-transform: uppercase; 
    padding: 12px 24px; 
    border: 1px solid rgba(255,255,255,0.3); 
    transition: all 0.4s var(--ease); 
    display: inline-block; 
}
@media (min-width: 768px) { .event-btn { font-size: 11px; padding: 14px 28px; } }
.event-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* DISCO */
.disco { background: var(--black); }
.disco-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .disco-grid { grid-template-columns: 1fr 1fr; gap: 100px; } }
.disco-visual { position: relative; display: flex; justify-content: center; }
.disco-glow { position: absolute; width: 200px; height: 200px; background: radial-gradient(circle, rgba(184, 149, 108, 0.15) 0%, transparent 60%); border-radius: 50%; filter: blur(40px); animation: glow 4s ease-in-out infinite; }
@media (min-width: 768px) { .disco-glow { width: 300px; height: 300px; filter: blur(60px); } }
@keyframes glow { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.2); opacity: 0.8; } }
.disco-album { position: relative; width: clamp(220px, 60vw, 380px); height: clamp(220px, 60vw, 380px); z-index: 1; }
.disco-cover { position: absolute; width: 100%; height: 100%; z-index: 2; box-shadow: 0 30px 60px rgba(0,0,0,0.5); transition: transform 0.8s var(--ease); }
@media (min-width: 768px) { .disco-cover { box-shadow: 0 40px 80px rgba(0,0,0,0.5); } }
.disco-cover img { width: 100%; height: 100%; object-fit: cover; }
.disco-vinyl { position: absolute; width: 96%; height: 96%; top: 2%; left: 12%; border-radius: 50%; background: radial-gradient(circle at 50% 50%, #1a1a1a 22%, transparent 22.5%), radial-gradient(circle at 50% 50%, #2a2a2a 23%, transparent 23.5%), repeating-radial-gradient(circle at 50% 50%, #0a0a0a 0px, #0a0a0a 2px, #141414 2px, #141414 4px); box-shadow: -20px 20px 60px rgba(0,0,0,0.5); z-index: 1; transition: all 0.8s var(--ease); }
.disco-vinyl::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 35%; height: 35%; border-radius: 50%; background: radial-gradient(circle at 50% 50%, var(--gold) 12%, transparent 12.5%), linear-gradient(135deg, #222 0%, #1a1a1a 100%); }
.disco-album:hover .disco-cover { transform: translateX(-30px); }
.disco-album:hover .disco-vinyl { left: 55%; transform: rotate(60deg); }
.disco-content { text-align: center; }
@media (min-width: 1024px) { .disco-content { text-align: left; } }
.disco-year { font-family: var(--font-display); font-size: 13px; font-style: italic; color: var(--gold); margin-bottom: 8px; }
@media (min-width: 768px) { .disco-year { font-size: 14px; margin-bottom: 10px; } }
.disco-title { font-family: var(--font-display); font-size: clamp(28px, 6vw, 52px); font-weight: 300; margin-bottom: 15px; }
@media (min-width: 768px) { .disco-title { margin-bottom: 20px; } }
.disco-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--grey-light); margin-bottom: 25px; max-width: 450px; }
@media (min-width: 768px) { .disco-desc { font-size: 15px; line-height: 1.8; margin-bottom: 35px; } }
@media (max-width: 1023px) { .disco-desc { margin: 0 auto 25px; } }
.disco-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
@media (min-width: 1024px) { .disco-links { justify-content: flex-start; } }
.disco-link { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border: 1px solid rgba(255,255,255,0.1); font-size: 13px; transition: all 0.4s var(--ease); }
.disco-link:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.disco-link svg { width: 20px; height: 20px; }

/* Songs MP3 - Integrated Player */
.disco-songs { 
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 25px 0;
    max-width: 500px;
}
@media (max-width: 1023px) {
    .disco-songs {
        margin: 25px auto;
    }
}

#disco-audio { display: none; }

.disco-song { 
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}
.disco-song:hover { 
    background: rgba(184, 149, 108, 0.1);
    border-color: rgba(184, 149, 108, 0.3);
}
.disco-song.playing {
    background: rgba(184, 149, 108, 0.15);
    border-color: var(--gold);
}

.disco-song-num {
    font-family: var(--font-display);
    font-size: 14px;
    font-style: italic;
    color: var(--grey);
    min-width: 25px;
}

.disco-song-play {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gold);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.disco-song:hover .disco-song-play,
.disco-song.playing .disco-song-play {
    transform: scale(1.08);
    box-shadow: 0 5px 20px rgba(184, 149, 108, 0.4);
}
.disco-song-play svg {
    width: 18px;
    height: 18px;
    fill: var(--black);
    position: absolute;
    transition: opacity 0.2s;
}
.disco-song-play .play-icon { margin-left: 2px; }
.disco-song-play .pause-icon { opacity: 0; }
.disco-song.playing .disco-song-play .play-icon { opacity: 0; }
.disco-song.playing .disco-song-play .pause-icon { opacity: 1; }

.disco-song-title {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.disco-song-progress {
    display: none;
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.disco-song.playing .disco-song-progress {
    display: block;
}
@media (min-width: 480px) {
    .disco-song-progress { width: 80px; }
}
.disco-song-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.disco-song-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding: 5px 10px;
    background: rgba(184, 149, 108, 0.1);
    border-radius: 4px;
}
.disco-song.playing .disco-song-badge {
    background: var(--gold);
    color: var(--black);
}

/* GALLERY */
.gallery { background: var(--black-soft); padding-bottom: 60px; }
.gallery-header { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; text-align: center; }
@media (min-width: 768px) { .gallery-header { text-align: center; margin-bottom: 50px; } }

/* Mobile: Carousel */
.gallery-scroll { 
    display: flex; 
    gap: 12px; 
    overflow-x: auto; 
    overflow-y: hidden;
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch; 
    scrollbar-width: none; 
    -ms-overflow-style: none;
    padding: 20px;
}
.gallery-scroll::-webkit-scrollbar { display: none; }

/* Mobile gallery items */
.gallery-item { 
    flex-shrink: 0; 
    width: 75vw;
    max-width: 280px;
    aspect-ratio: 3/4;
    position: relative; 
    overflow: hidden; 
    scroll-snap-align: center;
    border-radius: 8px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: all 0.6s var(--ease); }
.gallery-item::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3); transition: background 0.4s; z-index: 1; }
.gallery-item:hover img { filter: grayscale(0%); transform: scale(1.05); }
.gallery-item:hover::before { background: rgba(0,0,0,0.1); }

/* Desktop: Masonry Grid */
@media (min-width: 768px) { 
    .gallery-scroll { 
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 180px;
        gap: 8px;
        overflow: visible;
        padding: 0;
    }
    
    .gallery-item { 
        width: 100%;
        max-width: none;
        aspect-ratio: auto;
        border-radius: 4px;
        scroll-snap-align: unset;
    }
    
    /* Diferentes tamaños para variedad visual */
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(4) { grid-row: span 2; }
    .gallery-item:nth-child(6) { grid-column: span 2; }
    .gallery-item:nth-child(8) { grid-row: span 2; }
    .gallery-item:nth-child(11) { grid-column: span 2; }
}

@media (min-width: 1024px) {
    .gallery-scroll {
        grid-auto-rows: 220px;
        gap: 10px;
    }
}

@media (min-width: 1200px) {
    .gallery-scroll {
        grid-auto-rows: 250px;
    }
}

/* Mobile carousel indicators */
.gallery-indicators { display: flex; justify-content: center; gap: 8px; padding: 20px 0 40px; }
@media (min-width: 768px) { .gallery-indicators { display: none; } }
.gallery-indicator { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); transition: all 0.3s; }
.gallery-indicator.active { background: var(--gold); transform: scale(1.2); }

/* Scroll hint for mobile */
.gallery-hint { display: block; text-align: center; font-size: 10px; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
@media (min-width: 768px) { .gallery-hint { display: none; } }

/* CTA */
.cta { background: var(--black); text-align: center; padding: clamp(40px, 8vh, 120px) 0; }
.cta-inner { max-width: 600px; margin: 0 auto; padding: 0 20px; }
.cta-title { font-family: var(--font-display); font-size: clamp(24px, 5vw, 48px); font-weight: 300; line-height: 1.2; margin-bottom: 15px; }
@media (min-width: 768px) { .cta-title { margin-bottom: 20px; } }
.cta-text { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--grey-light); margin-bottom: 30px; }
@media (min-width: 768px) { .cta-text { font-size: 15px; line-height: 1.8; margin-bottom: 40px; } }
.cta-btn { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 16px 35px; transition: all 0.4s var(--ease); }
@media (min-width: 768px) { .cta-btn { font-size: 12px; letter-spacing: 0.2em; padding: 20px 45px; } }
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(184, 149, 108, 0.3); }

/* FOOTER */
.footer { background: var(--black); padding: 50px 0 30px; border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
@media (min-width: 768px) { .footer { padding: 80px 0 40px; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 35px; padding-bottom: 40px; text-align: center; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); text-align: left; gap: 50px; padding-bottom: 60px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; } }
.footer-brand { max-width: 300px; margin: 0 auto; }
@media (min-width: 768px) { .footer-brand { margin: 0; } }
.footer-logo { font-family: var(--font-display); font-size: 24px; font-weight: 300; margin-bottom: 20px; }
.footer-desc { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--grey); margin-bottom: 25px; }
.footer-social { display: flex; gap: 10px; justify-content: center; }
@media (min-width: 768px) { .footer-social { justify-content: flex-start; } }
.footer-social a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.1); transition: all 0.4s; }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a:hover svg { fill: var(--black); }
.footer-social svg { width: 16px; height: 16px; fill: var(--white); transition: fill 0.3s; }
.footer-col { }
.footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; font-weight: 300; color: var(--grey); margin-bottom: 12px; transition: all 0.3s; }
.footer-col a:hover { color: var(--white); transform: translateX(5px); }
@media (max-width: 767px) { .footer-col a:hover { transform: none; } }
.footer-bottom { display: flex; flex-direction: column; gap: 15px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 12px; color: var(--grey); text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom a { color: var(--gold); }

/* WhatsApp */
.whatsapp { position: fixed; bottom: 30px; right: 30px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); transition: all 0.4s var(--ease); }
.whatsapp:hover { transform: scale(1.1) translateY(-3px); }
.whatsapp svg { width: 26px; height: 26px; fill: #fff; }

/* Animations - Enhanced */
[data-anim] { opacity: 0; transform: translateY(60px); }
[data-anim="fade"] { transform: translateY(0); }
[data-anim="left"] { transform: translateX(-60px); }
[data-anim="right"] { transform: translateX(60px); }
[data-anim="scale"] { transform: scale(0.9); }
[data-anim].visible { 
    opacity: 1; 
    transform: translateY(0) translateX(0) scale(1); 
    transition: opacity 1s var(--ease), transform 1.2s var(--ease); 
}

/* Stagger delays for children */
[data-anim].visible [data-anim-child] { opacity: 1; transform: translateY(0); }
[data-anim-child] { opacity: 0; transform: translateY(30px); transition: opacity 0.6s var(--ease), transform 0.8s var(--ease); }
[data-anim-child]:nth-child(1) { transition-delay: 0.1s; }
[data-anim-child]:nth-child(2) { transition-delay: 0.2s; }
[data-anim-child]:nth-child(3) { transition-delay: 0.3s; }
[data-anim-child]:nth-child(4) { transition-delay: 0.4s; }
[data-anim-child]:nth-child(5) { transition-delay: 0.5s; }
[data-anim-child]:nth-child(6) { transition-delay: 0.6s; }

/* Timeline items animation */
.timeline-item { opacity: 0; transform: translateY(40px) scale(0.95); transition: all 0.7s var(--ease); }
.timeline-item.visible { opacity: 1; transform: translateY(0) scale(1); }
.timeline-item:nth-child(1) { transition-delay: 0s; }
.timeline-item:nth-child(2) { transition-delay: 0.15s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.45s; }

/* Event items animation */
.event-item { opacity: 0; transform: translateX(-30px); transition: all 0.6s var(--ease); }
.event-item.visible { opacity: 1; transform: translateX(0); }
.event-item:nth-child(1) { transition-delay: 0s; }
.event-item:nth-child(2) { transition-delay: 0.12s; }
.event-item:nth-child(3) { transition-delay: 0.24s; }

/* Video cards animation */
.video-card { opacity: 0; transform: translateY(50px) scale(0.95); transition: all 0.7s var(--ease); }
.video-card.visible { opacity: 1; transform: translateY(0) scale(1); }
.video-card:nth-child(1) { transition-delay: 0s; }
.video-card:nth-child(2) { transition-delay: 0.15s; }
.video-card:nth-child(3) { transition-delay: 0.3s; }

/* Gallery items animation */
.gallery-item { opacity: 0; transform: scale(0.9); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.gallery-item.visible { opacity: 1; transform: scale(1); }

/* About image special animation */
.about-image { overflow: hidden; }
.about-image img { transition: transform 1.5s var(--ease), filter 0.6s; }
.about-image.visible img { animation: imageReveal 1.2s var(--ease) forwards; }
@keyframes imageReveal { 
    0% { transform: scale(1.2); opacity: 0; } 
    100% { transform: scale(1); opacity: 1; } 
}

/* Stats counter effect */
.about-stat-num { transition: all 0.8s var(--ease); }

/* Disco album hover enhancement */
.disco-album { transition: transform 0.6s var(--ease); }
.disco-album:hover { transform: translateY(-10px); }

/* Section headers */
.section-header { overflow: hidden; }
.section-number { opacity: 0; transform: translateY(20px); transition: all 0.6s var(--ease) 0.2s; }
.section-title { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease) 0.3s; }
[data-anim].visible .section-number,
[data-anim].visible .section-title { opacity: 1; transform: translateY(0); }

/* CTA button pulse */
.cta-btn { position: relative; overflow: hidden; }
.cta-btn::after { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: rgba(255,255,255,0.2); 
    transform: translateX(-100%); 
    transition: transform 0.6s var(--ease); 
}
.cta-btn:hover::after { transform: translateX(100%); }

/* WordPress specific */
.wp-block-image img { height: auto; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* ===== SERVICIOS ===== */
.services { background: var(--black); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
.service-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 35px 30px; text-align: center; transition: all 0.4s var(--ease); position: relative; }
.service-card:hover { background: rgba(184,149,108,0.05); border-color: rgba(184,149,108,0.2); transform: translateY(-5px); }
.service-card.featured { border-color: var(--gold); background: rgba(184,149,108,0.08); }
.service-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black); font-size: 10px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; }
.service-icon { width: 60px; height: 60px; margin: 0 auto 20px; background: rgba(184,149,108,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.service-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--grey-light); line-height: 1.6; }
.services-cta { text-align: center; margin-top: 40px; }
.btn-download { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 14px 28px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s var(--ease); }
.btn-download:hover { background: var(--gold); color: var(--black); }
.btn-download svg { width: 18px; height: 18px; fill: currentColor; }

/* ===== TESTIMONIOS ===== */
.testimonials { background: var(--black-soft); }
.testimonials-slider { display: grid; grid-template-columns: 1fr; gap: 25px; }
@media (min-width: 768px) { .testimonials-slider { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
@media (min-width: 1024px) { .testimonials-slider { grid-template-columns: repeat(3, 1fr); } }
/* Ajustes para diferentes cantidades */
@media (min-width: 768px) { 
    .testimonials-slider.items-1 { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .testimonials-slider.items-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
    .testimonials-slider.items-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) { 
    .testimonials-slider.items-4 { grid-template-columns: repeat(4, 1fr); }
    .testimonials-slider.items-5, .testimonials-slider.items-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
    .testimonials-slider.items-5 { grid-template-columns: repeat(5, 1fr); }
    .testimonials-slider.items-6 { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 35px 30px; position: relative; }
.testimonial-card .quote-icon { position: absolute; top: 25px; right: 25px; width: 30px; height: 30px; fill: var(--gold); opacity: 0.3; }
.testimonial-text { font-size: 15px; font-style: italic; line-height: 1.7; color: var(--grey-light); margin-bottom: 20px; }
.testimonial-author { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 15px; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.testimonial-author span { font-size: 12px; color: var(--gold); }
.clients-logos { margin-top: 60px; text-align: center; }
.clients-title { font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-bottom: 25px; }
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 30px; opacity: 0.5; }
.logos-row img { height: 40px; width: auto; filter: grayscale(100%) brightness(2); transition: all 0.3s; }
.logos-row img:hover { filter: grayscale(0%) brightness(1); opacity: 1; }

/* ===== CONTACTO ===== */
.contact { background: var(--black); }
.contact-wrapper { display: grid; grid-template-columns: 1fr; gap: 50px; }
@media (min-width: 1024px) { .contact-wrapper { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } }
.contact-info h2 { font-family: var(--font-display); font-size: clamp(28px, 5vw, 42px); font-weight: 300; line-height: 1.2; margin-bottom: 20px; }
.contact-info h2 em { font-style: italic; color: var(--gold); }
.contact-info > p { font-size: 15px; color: var(--grey-light); line-height: 1.7; margin-bottom: 30px; }
.contact-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); padding: 14px 25px; font-size: 13px; font-weight: 500; border-radius: 8px; transition: all 0.3s; }
.btn-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: currentColor; }
.contact-form-wrap { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 35px; }
@media (max-width: 768px) { .contact-form-wrap { padding: 25px 20px; } }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { width: 100%; }
.form-group input, .form-group select, .form-group textarea { 
    width: 100%; 
    max-width: 100%;
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 8px; 
    padding: 14px 16px; 
    font-size: 16px; 
    color: var(--white); 
    transition: all 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group input[type="date"] {
    min-height: 50px;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(184,149,108,0.05); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--black); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    width: 100%;
    background: var(--gold); 
    color: var(--black); 
    border: none; 
    padding: 16px 30px; 
    font-size: 14px; 
    font-weight: 600; 
    letter-spacing: 0.05em; 
    text-transform: uppercase; 
    cursor: pointer; 
    transition: all 0.3s; 
    margin-top: 5px;
    border-radius: 8px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,149,108,0.3); }
.form-submit svg { width: 18px; height: 18px; fill: currentColor; }

/* ===== VIDEO MODAL ===== */
.modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s; }
.modal.active { opacity: 1; visibility: visible; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.95); }
.modal-content { position: relative; width: 90%; max-width: 900px; z-index: 1; }
.modal-close { position: absolute; top: -50px; right: 0; background: none; border: none; color: var(--white); font-size: 36px; cursor: pointer; transition: color 0.3s; }
.modal-close:hover { color: var(--gold); }
.modal-video { position: relative; padding-bottom: 56.25%; height: 0; background: #000; border-radius: 8px; overflow: hidden; }
.modal-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.97); }
.lightbox-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 40px; cursor: pointer; z-index: 10; transition: color 0.3s; }
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all 0.3s; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }
.lightbox-prev svg, .lightbox-next svg { width: 24px; height: 24px; fill: var(--white); }
.lightbox-prev:hover svg, .lightbox-next:hover svg { fill: var(--black); }
.lightbox-content { position: relative; max-width: 90%; max-height: 85vh; z-index: 1; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-size: 14px; color: var(--grey); z-index: 10; }

/* ===== SKELETON LOADING ===== */
.skeleton-load { background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%); background-size: 200% 100%; animation: skeleton 1.5s infinite; }
@keyframes skeleton { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-load img { opacity: 0; transition: opacity 0.4s; }
.skeleton-load img.loaded { opacity: 1; }

/* ===== GALLERY LIGHTBOX HOVER ===== */
.gallery-item { position: relative; cursor: pointer; }
.gallery-zoom { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-zoom svg { width: 32px; height: 32px; fill: var(--white); }

/* ===== VIDEO CARD CURSOR ===== */
.video-card { cursor: pointer; }

/* ===== STATS BAR ===== */
.stats-bar { background: linear-gradient(135deg, rgba(184,149,108,0.1) 0%, rgba(184,149,108,0.02) 100%); padding: 50px 0; border-top: 1px solid rgba(184,149,108,0.1); border-bottom: 1px solid rgba(184,149,108,0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; text-align: center; max-width: 1400px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.stat-item { }
.stat-number { font-family: var(--font-display); font-size: clamp(36px, 8vw, 56px); font-weight: 300; color: var(--gold); line-height: 1; }
.stat-suffix { font-family: var(--font-display); font-size: clamp(24px, 5vw, 36px); color: var(--gold); }
.stat-label { display: block; font-size: 12px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-top: 8px; }
@media (min-width: 768px) { .stat-label { font-size: 13px; margin-top: 10px; } }

/* ===== SHOWREEL ===== */
.showreel { background: var(--black); }
.showreel-video { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 16/9; }
.showreel-video img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.showreel-video:hover img { transform: scale(1.05); }
.showreel-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; transition: background 0.3s; }
.showreel-video:hover .showreel-overlay { background: rgba(0,0,0,0.5); }
.showreel-play { width: 80px; height: 80px; background: var(--gold); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; }
@media (min-width: 768px) { .showreel-play { width: 100px; height: 100px; } }
.showreel-play:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(184,149,108,0.5); }
.showreel-play svg { width: 30px; height: 30px; fill: var(--black); margin-left: 4px; }
@media (min-width: 768px) { .showreel-play svg { width: 40px; height: 40px; } }
.showreel-text { font-size: 14px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); }
.section-header.centered { text-align: center; }
.section-subtitle { font-size: 15px; color: var(--grey-light); margin-top: 10px; }

/* ===== REPERTOIRE ===== */
.repertoire { background: var(--black-soft); }
.repertoire-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .repertoire-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .repertoire-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .repertoire-grid { grid-template-columns: repeat(4, 1fr); } }
/* Ajustes para diferentes cantidades */
@media (min-width: 900px) { .repertoire-grid.items-1, .repertoire-grid.items-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; } }
@media (min-width: 900px) { .repertoire-grid.items-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .repertoire-grid.items-5, .repertoire-grid.items-6 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1400px) { .repertoire-grid.items-5 { grid-template-columns: repeat(5, 1fr); } .repertoire-grid.items-6 { grid-template-columns: repeat(3, 1fr); } }
.repertoire-category { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 30px 25px; text-align: center; transition: all 0.4s var(--ease); }
.repertoire-category:hover { background: rgba(184,149,108,0.08); border-color: rgba(184,149,108,0.3); transform: translateY(-5px); }
.repertoire-icon { width: 50px; height: 50px; margin: 0 auto 15px; background: rgba(184,149,108,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.repertoire-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.repertoire-category h3 { font-family: var(--font-display); font-size: 18px; font-weight: 400; margin-bottom: 10px; }
.repertoire-category p { font-size: 13px; color: var(--grey-light); line-height: 1.6; }
.repertoire-cta { text-align: center; margin-top: 40px; }

/* ===== HOW TO HIRE / STEPS ===== */
.how-to-hire { background: var(--black); }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
@media (min-width: 600px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; } }
.step-item { text-align: center; padding: 30px 20px; position: relative; }
.step-number { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--gold); opacity: 0.2; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); }
.step-icon { width: 60px; height: 60px; margin: 20px auto 15px; background: rgba(184,149,108,0.1); border: 1px solid rgba(184,149,108,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.step-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.step-item h3 { font-family: var(--font-display); font-size: 16px; font-weight: 400; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--grey); line-height: 1.5; }

/* ===== PRESS / MEDIOS ===== */
.press { background: var(--black-soft); }
.press-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
@media (min-width: 768px) { .press-grid { grid-template-columns: repeat(3, 1fr); } }
.press-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 30px; text-align: center; position: relative; transition: all 0.4s var(--ease); }
.press-item:hover { background: rgba(184,149,108,0.05); border-color: rgba(184,149,108,0.2); }
.press-item.featured { border-color: var(--gold); background: rgba(184,149,108,0.08); }
.press-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black); font-size: 10px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.press-icon { width: 50px; height: 50px; margin: 0 auto 15px; background: rgba(184,149,108,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.press-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.press-item h3 { font-family: var(--font-display); font-size: 18px; font-weight: 400; margin-bottom: 10px; }
.press-item p { font-size: 13px; color: var(--grey-light); line-height: 1.6; margin-bottom: 10px; }
.press-year { font-size: 12px; color: var(--gold); font-weight: 500; }

/* ===== COVERAGE / COBERTURA ===== */
.coverage { background: var(--black); }
.coverage-grid { display: grid; grid-template-columns: 1fr; gap: 25px; }
@media (min-width: 768px) { .coverage-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
.coverage-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 35px 30px; text-align: center; transition: all 0.4s var(--ease); }
.coverage-item:hover { background: rgba(184,149,108,0.05); border-color: rgba(184,149,108,0.2); transform: translateY(-5px); }
.coverage-icon { width: 60px; height: 60px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--gold) 0%, rgba(184,149,108,0.7) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.coverage-icon svg { width: 28px; height: 28px; fill: var(--black); }
.coverage-item h3 { font-family: var(--font-display); font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.coverage-item > p { font-size: 14px; color: var(--grey-light); line-height: 1.6; margin-bottom: 20px; }
.coverage-item ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.coverage-item li { font-size: 13px; color: var(--grey); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 8px; }
.coverage-item li:last-child { border-bottom: none; }
.coverage-item li::before { content: '✓'; color: var(--gold); font-weight: bold; }

/* ===== FAQ ===== */
.faq { background: var(--black-soft); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: rgba(255,255,255,0.1); }
.faq-item.active { border-color: rgba(184,149,108,0.3); background: rgba(184,149,108,0.05); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; background: none; border: none; cursor: pointer; text-align: left; }
.faq-question span { font-size: 15px; font-weight: 500; color: var(--white); flex: 1; padding-right: 15px; }
.faq-question svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 25px 20px; font-size: 14px; color: var(--grey-light); line-height: 1.7; }

/* ===== MOBILE FIX ===== */
@media (max-width: 767px) {
    html {
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Prevenir que cualquier elemento cause scroll horizontal */
    img, video, iframe, table, pre, code {
        max-width: 100% !important;
    }
    
    /* Elementos que podrían causar overflow */
    .hero-content,
    .about-badge,
    .stats-grid,
    .timeline,
    .repertoire-grid,
    .testimonials-slider,
    .faq-grid,
    .contact-wrapper,
    .footer-grid {
        max-width: 100%;
    }
}

/* iOS específico - prevenir bounce horizontal */
@supports (-webkit-touch-callout: none) {
    html, body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
}
