/* ==========================================================================
   MAKE SOME NOISE 2027 — Dance Convention Website
   ========================================================================== */

/* ===== VARIABLES ===== */
:root {
    --pink: #FF0066;
    --cyan: #00C8F0;
    --yellow: #FFD700;
    --purple: #7B00FF;
    --dark: #0A0A0A;
    --dark2: #111111;
    --dark3: #1A1A1A;
    --white: #FFFFFF;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Bebas Neue', sans-serif; font-weight: 400; line-height: 1.1; }

/* ===== NAVBAR ===== */
nav {
    position: fixed; top: 0; width: 100%; z-index: 9999;
    padding: 15px 60px; display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,10,10,0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s, padding 0.3s;
}
nav.scrolled { padding: 10px 60px; background: rgba(10,10,10,0.95); }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.3s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--pink); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; position: relative; }
.nav-icon:hover { border-color: var(--pink); background: rgba(255,0,102,0.1); }
.nav-icon svg { width: 18px; height: 18px; fill: none; stroke: rgba(255,255,255,0.8); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cart-badge { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; background: var(--pink); border-radius: 50%; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: white; }

/* ===== HERO (INDEX) ===== */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../img/fotos/Versión Manchas (3).png') center/cover no-repeat; filter: brightness(0.25) contrast(1.2); }
.hero-splash-1 { position: absolute; top: -100px; right: -100px; width: 500px; opacity: 0.15; pointer-events: none; }
.hero-splash-2 { position: absolute; bottom: -80px; left: -80px; width: 400px; opacity: 0.12; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 0 80px; max-width: 900px; }
.hero-tag { display: inline-block; background: var(--pink); color: white; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 8px 24px; margin-bottom: 30px; clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%); }
.hero-logo { width: clamp(300px, 40vw, 550px); height: auto; margin-bottom: 15px; filter: drop-shadow(0 0 40px rgba(255,0,102,0.3)); }
.hero-subtitle { font-size: 14px; letter-spacing: 6px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.hero-info { display: flex; gap: 50px; margin-bottom: 50px; }
.hero-info-item { display: flex; flex-direction: column; }
.hero-info-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.hero-info-value { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--white); }
.hero-info-value.accent { color: var(--cyan); }
.hero-buttons { display: flex; gap: 20px; }
.hero-dancer { position: absolute; right: 0; bottom: 0; width: 45%; height: 100%; overflow: hidden; }
.hero-dancer img { width: 100%; height: 100%; object-fit: cover; object-position: center top; mask-image: linear-gradient(to right, transparent 0%, black 15%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%); }
.hero-dancer::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, var(--dark) 0%, transparent 30%); }

/* ===== BUTTONS ===== */
.btn-primary { background: var(--pink); color: white; border: none; padding: 16px 45px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; cursor: pointer; clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%); transition: all 0.3s; }
.btn-primary:hover { background: #ff1a75; transform: scale(1.05); }
.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); padding: 14px 45px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; cursor: pointer; transition: all 0.3s; }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-buy { width: 100%; background: var(--pink); border: none; color: white; padding: 16px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; cursor: pointer; transition: all 0.3s; }
.btn-buy:hover { background: #ff1a75; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,0,102,0.3); }
.btn-send { width: 100%; background: var(--pink); color: white; border: none; padding: 16px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 3px; cursor: pointer; transition: all 0.3s; }
.btn-send:hover { background: #ff1a75; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255,0,102,0.3); }

/* ===== NEON LINE ===== */
.neon-line { width: 100%; height: 3px; background: linear-gradient(to right, var(--pink), var(--cyan), var(--yellow), var(--purple)); }

/* ===== TICKER ===== */
.ticker { background: var(--dark2); padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.ticker-content { display: flex; justify-content: center; gap: 60px; align-items: center; }
.ticker-item { display: flex; align-items: center; gap: 12px; }
.ticker-number { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--pink); }
.ticker-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); line-height: 1.4; }
.ticker-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ===== SECTION TITLE ===== */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: 'Bebas Neue', sans-serif; font-size: 60px; letter-spacing: 4px; }
.section-title p { color: rgba(255,255,255,0.5); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-top: 10px; }
.highlight { color: var(--pink); }
.highlight-cyan { color: var(--cyan); }
.highlight-yellow { color: var(--yellow); }

/* ===== ABOUT ===== */
.about { padding: 120px 80px; position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1300px; margin: 0 auto; }
.about-images { position: relative; height: 500px; }
.about-img-1 { position: absolute; top: 0; left: 0; width: 65%; height: 70%; object-fit: cover; border: 3px solid var(--pink); }
.about-img-2 { position: absolute; bottom: 0; right: 0; width: 60%; height: 65%; object-fit: cover; border: 3px solid var(--cyan); }
.about-splash { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; opacity: 0.3; }
.about-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 52px; margin-bottom: 25px; line-height: 1; }
.about-text p { color: rgba(255,255,255,0.6); line-height: 1.8; font-size: 15px; margin-bottom: 20px; }
.about-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--yellow); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px; }

/* ===== CATEGORIES ===== */
.categories { padding: 100px 80px; background: var(--dark2); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; max-width: 1300px; margin: 0 auto; }
.cat-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s, filter 0.6s; }
.cat-card:hover img { transform: scale(1.1); filter: brightness(0.4); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; transition: background 0.4s; }
.cat-card:hover .cat-card-overlay { background: linear-gradient(to top, rgba(255,0,102,0.85) 0%, rgba(10,10,10,0.5) 50%, transparent 100%); }
.cat-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; margin-bottom: 8px; }
.cat-card-desc { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ===== WORKSHOPS PREVIEW (INDEX) ===== */
.workshops { padding: 120px 80px; position: relative; }
.ws-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1300px; margin: 0 auto; }
.ws-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 40px; position: relative; overflow: hidden; transition: border-color 0.3s; }
.ws-card:hover { border-color: var(--cyan); }
.ws-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(to right, var(--cyan), var(--purple)); opacity: 0; transition: opacity 0.3s; }
.ws-card:hover::before { opacity: 1; }
.ws-number { font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: rgba(255,255,255,0.05); position: absolute; top: 10px; right: 20px; }
.ws-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; margin-bottom: 10px; color: var(--cyan); }
.ws-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 15px; }
.ws-tag { display: inline-block; background: rgba(0,200,240,0.1); color: var(--cyan); padding: 5px 14px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 100px 80px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,0,102,0.15), rgba(0,200,240,0.15)); }
.cta-banner h2 { font-family: 'Bebas Neue', sans-serif; font-size: 72px; position: relative; z-index: 1; margin-bottom: 20px; }
.cta-banner p { position: relative; z-index: 1; color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 40px; }
.cta-banner .btn-primary { position: relative; z-index: 1; }

/* ===== PAGE HERO (INNER PAGES) ===== */
.page-hero { padding: 160px 80px 80px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,0,102,0.1), rgba(0,200,240,0.08)); }
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(50px, 8vw, 80px); letter-spacing: 6px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 16px; letter-spacing: 2px; text-transform: uppercase; margin-top: 10px; position: relative; z-index: 1; }
.page-hero-splash { position: absolute; top: -50px; right: -80px; width: 400px; opacity: 0.1; pointer-events: none; }

/* ===== COMP-SECTION (shared section for inner pages) ===== */
.comp-section { padding: 100px 80px; max-width: 100%; }
.comp-section.alt { background: var(--dark2); }

.comp-subtitle {
    font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 3px;
    margin-bottom: 40px; display: flex; align-items: center; gap: 16px;
    max-width: 1300px; margin-left: auto; margin-right: auto; margin-bottom: 40px;
}
.comp-subtitle::before { content: ''; width: 4px; height: 30px; background: var(--pink); flex-shrink: 0; }
.comp-subtitle.cyan::before { background: var(--cyan); }

/* ===== BASES ===== */
.bases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1300px; margin: 0 auto; }
.base-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 40px; position: relative; overflow: hidden; }
.comp-section.alt .base-card { background: var(--dark); }
.base-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; }
.base-card:nth-child(1)::before { background: var(--pink); }
.base-card:nth-child(2)::before { background: var(--cyan); }
.base-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; margin-bottom: 8px; }
.base-card .base-type { font-size: 12px; color: var(--pink); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 24px; }
.base-card:nth-child(2) .base-type { color: var(--cyan); }
.base-ages { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.base-age-tag { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 8px 16px; font-size: 13px; color: rgba(255,255,255,0.7); }
.base-age-tag span { color: rgba(255,255,255,0.35); font-size: 11px; margin-left: 6px; }
.base-divisions h4 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 2px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.base-div-list { display: flex; flex-wrap: wrap; gap: 8px; }
.base-div-tag { background: rgba(255,0,102,0.08); color: var(--pink); padding: 6px 14px; font-size: 12px; font-weight: 600; letter-spacing: 1px; }
.base-card:nth-child(2) .base-div-tag { background: rgba(0,200,240,0.08); color: var(--cyan); }

/* ===== JUECES ===== */
.jueces-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; max-width: 1300px; margin: 0 auto; }
.juez-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.06); text-align: center; padding: 40px 30px; transition: all 0.3s; }
.juez-card:hover { border-color: var(--pink); transform: translateY(-4px); }
.juez-avatar { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--pink), var(--purple)); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 32px; }
.juez-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; margin-bottom: 6px; }
.juez-card p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== TABULACIÓN ===== */
.tab-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; max-width: 1300px; margin: 0 auto 40px; }
.tab-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 40px 30px; text-align: center; position: relative; overflow: hidden; }
.comp-section:not(.alt) .tab-card { background: var(--dark2); }
.comp-section.alt .tab-card { background: var(--dark); }
.tab-percent { font-family: 'Bebas Neue', sans-serif; font-size: 64px; line-height: 1; margin-bottom: 10px; }
.tab-card:nth-child(1) .tab-percent { color: var(--pink); }
.tab-card:nth-child(2) .tab-percent { color: var(--cyan); }
.tab-card:nth-child(3) .tab-percent { color: var(--yellow); }
.tab-card:nth-child(4) .tab-percent { color: var(--purple); }
.tab-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 2px; margin-bottom: 8px; }
.tab-card p { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.tab-bar { position: absolute; bottom: 0; left: 0; height: 3px; }
.tab-card:nth-child(1) .tab-bar { width: 40%; background: var(--pink); }
.tab-card:nth-child(2) .tab-bar { width: 25%; background: var(--cyan); }
.tab-card:nth-child(3) .tab-bar { width: 25%; background: var(--yellow); }
.tab-card:nth-child(4) .tab-bar { width: 10%; background: var(--purple); }
.tab-note { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); padding: 24px 30px; font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 1300px; margin: 0 auto; }
.tab-note strong { color: var(--white); }

/* ===== PREMIACIÓN ===== */
.premios-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; max-width: 1300px; margin: 0 auto; }
.premio-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.06); padding: 35px; transition: all 0.3s; }
.premio-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.premio-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; color: var(--yellow); margin-bottom: 10px; }
.premio-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.premio-reward { display: inline-block; margin-top: 12px; background: rgba(255,215,0,0.08); color: var(--yellow); padding: 6px 14px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.medalla-note { max-width: 1300px; margin: 0 auto 40px; background: rgba(255,215,0,0.05); border: 1px solid rgba(255,215,0,0.15); padding: 24px 30px; font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; display: flex; align-items: center; gap: 16px; }
.medalla-note span { font-size: 36px; flex-shrink: 0; }

/* ===== WORKSHOPS PAGE ===== */
.wf-intro { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.wf-intro p { color: rgba(255,255,255,0.5); font-size: 15px; line-height: 1.8; }
.wf-intro strong { color: var(--white); }
.wf-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1300px; margin: 0 auto; }
.wf-info-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 40px; text-align: center; transition: all 0.3s; }
.wf-info-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.wf-info-icon { font-size: 40px; margin-bottom: 20px; }
.wf-info-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; margin-bottom: 12px; color: var(--cyan); }
.wf-info-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* Maestros */
.maestros-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; max-width: 1300px; margin: 0 auto; }
.maestro-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.06); text-align: center; padding: 40px 25px; transition: all 0.3s; }
.maestro-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.maestro-avatar { width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--purple)); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 32px; }
.maestro-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; margin-bottom: 6px; }
.maestro-card p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* Becas */
.becas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; max-width: 1300px; margin: 0 auto; }
.beca-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 35px; text-align: center; transition: all 0.3s; }
.beca-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.beca-icon { font-size: 36px; margin-bottom: 16px; }
.beca-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; margin-bottom: 10px; color: var(--yellow); }
.beca-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ===== BOLETOS ===== */
.boletos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; }
.boleto-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 50px 40px; position: relative; transition: all 0.3s; overflow: hidden; }
.boleto-card:hover { border-color: var(--pink); transform: translateY(-4px); }
.boleto-card.featured { border-color: var(--pink); }
.boleto-card.featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--pink), var(--purple)); }
.boleto-tag { display: inline-block; background: rgba(255,0,102,0.1); color: var(--pink); padding: 6px 14px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.boleto-card:nth-child(2) .boleto-tag { background: rgba(0,200,240,0.1); color: var(--cyan); }
.boleto-name { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 3px; margin-bottom: 10px; }
.boleto-price { font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: var(--pink); line-height: 1; margin-bottom: 5px; }
.boleto-price .currency { font-size: 22px; vertical-align: super; }
.boleto-price .unit { font-size: 16px; color: rgba(255,255,255,0.4); font-family: 'Montserrat', sans-serif; font-weight: 400; }
.boleto-card:nth-child(2) .boleto-price { color: var(--cyan); }
.boleto-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.boleto-features { list-style: none; margin-bottom: 35px; }
.boleto-features li { padding: 8px 0; font-size: 14px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 10px; }
.boleto-features li::before { content: '✓'; color: var(--pink); font-weight: 700; font-size: 14px; }
.boleto-card:nth-child(2) .boleto-features li::before { color: var(--cyan); }
.boleto-card:nth-child(2) .btn-buy { background: var(--cyan); }
.boleto-card:nth-child(2) .btn-buy:hover { background: #00d4ff; box-shadow: 0 8px 25px rgba(0,200,240,0.3); }

/* Costos Grid */
.costos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1300px; margin: 0 auto; }
.costo-item { background: var(--dark); border: 1px solid rgba(255,255,255,0.06); padding: 30px 20px; text-align: center; transition: all 0.3s; }
.costo-item:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.costo-item h4 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px; margin-bottom: 10px; color: rgba(255,255,255,0.8); }
.costo-price { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--pink); margin-bottom: 6px; }
.costo-item p { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ===== CONTACTO ===== */
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px; margin: 0 auto; align-items: start; }
.contacto-info h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; margin-bottom: 30px; }
.contacto-item { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.contacto-icon { width: 50px; height: 50px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
.contacto-item:hover .contacto-icon { border-color: var(--pink); background: rgba(255,0,102,0.05); }
.contacto-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--pink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contacto-item-text h4 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px; margin-bottom: 4px; }
.contacto-item-text p { font-size: 14px; color: rgba(255,255,255,0.5); }
.contacto-item-text a { color: var(--pink); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.contacto-item-text a:hover { color: #ff4d8d; }
.contacto-form { background: var(--dark2); border: 1px solid rgba(255,255,255,0.06); padding: 45px; }
.contacto-form h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; background: var(--dark); border: 1px solid rgba(255,255,255,0.08); color: white; font-family: 'Montserrat', sans-serif; font-size: 14px; padding: 14px 18px; outline: none; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--pink); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group textarea { height: 120px; resize: vertical; }

/* ===== FOOTER ===== */
footer { background: var(--dark2); border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 80px 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1300px; margin: 0 auto 60px; }
.footer-brand .footer-logo { height: 90px; width: auto; margin-bottom: 15px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.7; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; margin-bottom: 20px; color: var(--white); }
.footer-col a { display: block; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; text-align: center; color: rgba(255,255,255,0.3); font-size: 13px; max-width: 1300px; margin: 0 auto; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-link { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: all 0.3s; }
.social-link:hover { border-color: var(--pink); background: rgba(255,0,102,0.1); color: var(--pink); }

/* ===== UTILITY ===== */
.glow-pink { text-shadow: 0 0 30px rgba(255,0,102,0.5); }
.glow-cyan { text-shadow: 0 0 30px rgba(0,200,240,0.5); }

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== HAMBURGER BUTTON ===== */
.nav-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; position: relative; padding: 8px;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2px; background: var(--white);
    transition: all 0.3s ease; transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 360px; height: 100vh;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
    z-index: 9998; padding: 100px 40px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255,255,255,0.06);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu-links a {
    display: block; padding: 20px 0; font-family: 'Bebas Neue', sans-serif;
    font-size: 28px; letter-spacing: 4px; color: rgba(255,255,255,0.6);
    text-decoration: none; transition: all 0.3s;
}
.mobile-menu-links a:hover, .mobile-menu-links a.active { color: var(--pink); padding-left: 10px; }

/* Mobile menu overlay */
.mobile-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 9997; opacity: 0; visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* Prevent scroll when menu open */
body.menu-open { overflow: hidden; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
    nav { padding: 12px 30px; }
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 12px; letter-spacing: 1px; }
    .hero-dancer { width: 40%; }
    .hero-content { padding: 0 50px; max-width: 700px; }
    .hero-logo { width: clamp(260px, 35vw, 450px); }
    .hero-info-value { font-size: 26px; }
    .about { padding: 100px 50px; }
    .about-grid { gap: 50px; }
    .categories { padding: 80px 50px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .workshops { padding: 100px 50px; }
    .section-title h2 { font-size: 50px; }
    .cta-banner h2 { font-size: 56px; }
    .bases-grid { grid-template-columns: 1fr; }
    .jueces-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .tab-grid { grid-template-columns: repeat(2, 1fr); }
    .maestros-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .wf-info-grid { grid-template-columns: repeat(3, 1fr); }
    .costos-grid { grid-template-columns: repeat(4, 1fr); }
    .boletos-grid { gap: 30px; }
    .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; }
    .comp-section { padding: 80px 40px; }
    .page-hero { padding: 140px 40px 60px; }
}

/* ===== RESPONSIVE — SMALL TABLET ===== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-dancer { display: none; }
    .hero-content { max-width: 100%; text-align: center; padding: 0 40px; }
    .hero-info { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { min-height: 400px; }
    .ws-grid { grid-template-columns: repeat(2, 1fr); }
    .jueces-grid { grid-template-columns: repeat(2, 1fr); }
    .maestros-grid { grid-template-columns: repeat(2, 1fr); }
    .wf-info-grid { grid-template-columns: repeat(2, 1fr); }
    .costos-grid { grid-template-columns: repeat(2, 1fr); }
    .boletos-grid { grid-template-columns: 1fr; max-width: 550px; margin: 0 auto; }
    .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
    nav { padding: 12px 20px; }
    .nav-logo img { height: 30px; }
    .nav-icon { width: 36px; height: 36px; }
    .nav-icon svg { width: 16px; height: 16px; }
    .cart-badge { width: 16px; height: 16px; font-size: 9px; }
    .hero { min-height: auto; height: auto; padding: 130px 20px 70px; }
    .hero-content { padding: 0; }
    .hero-tag { font-size: 10px; padding: 6px 18px; letter-spacing: 2px; margin-bottom: 20px; }
    .hero-logo { width: clamp(220px, 65vw, 380px); margin-bottom: 10px; }
    .hero-subtitle { font-size: 11px; letter-spacing: 4px; margin-bottom: 30px; }
    .hero-info { flex-direction: column; gap: 10px; margin-bottom: 35px; }
    .hero-info-value { font-size: 24px; }
    .hero-info-label { font-size: 10px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; }
    .neon-line { height: 2px; }
    .ticker-content { gap: 15px; flex-wrap: wrap; justify-content: center; padding: 0 10px; }
    .ticker-number { font-size: 28px; }
    .ticker-label { font-size: 10px; }
    .ticker-sep { height: 30px; }
    .about { padding: 70px 20px; }
    .about-images { min-height: 280px; }
    .about-img-1 { width: 60%; height: 65%; }
    .about-img-2 { width: 55%; height: 60%; }
    .about-text h2 { font-size: 38px; }
    .about-text p { font-size: 14px; }
    .about-stats { flex-direction: row; gap: 20px; flex-wrap: wrap; justify-content: center; text-align: center; }
    .stat-number { font-size: 38px; }
    .stat-label { font-size: 11px; }
    .categories { padding: 70px 20px; }
    .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .cat-card-title { font-size: 22px; }
    .cat-card-desc { font-size: 11px; }
    .cat-card-overlay { padding: 20px; }
    .workshops { padding: 70px 20px; }
    .ws-grid { grid-template-columns: 1fr; gap: 20px; }
    .ws-card { padding: 30px; }
    .ws-card h3 { font-size: 24px; }
    .section-title h2 { font-size: 38px; }
    .section-title p { font-size: 12px; }
    .cta-banner { padding: 60px 20px; }
    .cta-banner h2 { font-size: 42px; }
    .cta-banner p { font-size: 14px; }
    .page-hero { padding: 120px 20px 40px; }
    .page-hero h1 { font-size: clamp(36px, 10vw, 56px); }
    .page-hero p { font-size: 13px; }
    .comp-section { padding: 60px 20px; }
    .comp-subtitle { font-size: 28px; }
    .base-card { padding: 30px; }
    .base-card h3 { font-size: 24px; }
    .base-age-tag { padding: 6px 12px; font-size: 12px; }
    .base-div-tag { padding: 5px 10px; font-size: 11px; }
    .jueces-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .juez-card { padding: 30px 20px; }
    .juez-avatar { width: 70px; height: 70px; font-size: 26px; }
    .juez-card h3 { font-size: 18px; }
    .tab-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .tab-card { padding: 30px 20px; }
    .tab-percent { font-size: 48px; }
    .tab-card h3 { font-size: 15px; }
    .tab-note { font-size: 13px; padding: 20px; }
    .premios-grid { grid-template-columns: 1fr; gap: 16px; }
    .premio-card { padding: 28px; }
    .premio-card h3 { font-size: 20px; }
    .medalla-note { font-size: 14px; padding: 20px; }
    .wf-intro p { font-size: 14px; }
    .wf-info-grid { grid-template-columns: 1fr; gap: 16px; }
    .wf-info-card { padding: 30px; }
    .maestros-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .maestro-card { padding: 30px 20px; }
    .becas-grid { grid-template-columns: 1fr; gap: 16px; }
    .beca-card { padding: 28px; }
    .boletos-grid { grid-template-columns: 1fr; max-width: 100%; }
    .boleto-card { padding: 35px 28px; }
    .boleto-name { font-size: 30px; }
    .boleto-price { font-size: 48px; }
    .costos-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .costo-item { padding: 24px 16px; }
    .costo-price { font-size: 30px; }
    .contacto-grid { grid-template-columns: 1fr; gap: 30px; }
    .contacto-info h3 { font-size: 24px; }
    .contacto-form { padding: 30px; }
    .contacto-form h3 { font-size: 24px; }
    footer { padding: 50px 20px 25px; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand .footer-logo { height: 70px; margin: 0 auto 15px; }
    .social-links { justify-content: center; }
    .footer-col h4 { font-size: 18px; margin-bottom: 14px; }
    .footer-col a { font-size: 13px; }
    .footer-bottom { font-size: 11px; padding-top: 20px; }
}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 480px) {
    nav { padding: 10px 15px; }
    .nav-logo img { height: 26px; }
    .hero { padding: 120px 15px 60px; }
    .hero-tag { font-size: 9px; padding: 5px 14px; }
    .hero-logo { width: clamp(200px, 75vw, 320px); }
    .hero-subtitle { font-size: 10px; letter-spacing: 3px; }
    .hero-info-value { font-size: 22px; }
    .btn-primary, .btn-outline { padding: 14px 24px; font-size: 16px; letter-spacing: 2px; }
    .btn-buy, .btn-send { padding: 14px; font-size: 16px; letter-spacing: 2px; }
    .ticker { padding: 15px 0; }
    .ticker-content { gap: 10px; }
    .ticker-number { font-size: 24px; }
    .ticker-label { font-size: 9px; letter-spacing: 1px; }
    .ticker-sep { height: 25px; }
    .about { padding: 50px 15px; }
    .about-images { min-height: 240px; }
    .about-text h2 { font-size: 32px; }
    .about-stats { gap: 15px; }
    .stat-number { font-size: 32px; }
    .categories { padding: 50px 15px; }
    .cat-grid { gap: 8px; }
    .cat-card-title { font-size: 18px; }
    .cat-card-desc { display: none; }
    .cat-card-overlay { padding: 15px; }
    .workshops { padding: 50px 15px; }
    .ws-card { padding: 25px 20px; }
    .section-title h2 { font-size: 32px; letter-spacing: 2px; }
    .section-title { margin-bottom: 35px; }
    .cta-banner { padding: 50px 15px; }
    .cta-banner h2 { font-size: 34px; }
    .cta-banner p { font-size: 13px; margin-bottom: 25px; }
    .page-hero { padding: 110px 15px 30px; }
    .page-hero h1 { font-size: clamp(30px, 10vw, 44px); letter-spacing: 3px; }
    .page-hero p { font-size: 12px; letter-spacing: 1px; }
    .comp-section { padding: 40px 15px; }
    .comp-subtitle { font-size: 24px; letter-spacing: 2px; }
    .base-card { padding: 24px 18px; }
    .base-card h3 { font-size: 22px; }
    .base-age-tag { padding: 5px 10px; font-size: 11px; }
    .base-age-tag span { font-size: 10px; }
    .jueces-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .juez-card { padding: 24px 14px; }
    .juez-avatar { width: 60px; height: 60px; font-size: 22px; }
    .juez-card h3 { font-size: 16px; }
    .juez-card p { font-size: 11px; }
    .tab-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .tab-card { padding: 24px 14px; }
    .tab-percent { font-size: 40px; }
    .tab-card h3 { font-size: 13px; letter-spacing: 1px; }
    .tab-card p { font-size: 11px; }
    .tab-note { font-size: 12px; padding: 16px; }
    .premio-card { padding: 22px 18px; }
    .premio-card h3 { font-size: 18px; }
    .premio-card p { font-size: 13px; }
    .medalla-note { font-size: 13px; padding: 16px; flex-direction: column; text-align: center; }
    .wf-info-card { padding: 24px 18px; }
    .wf-info-card h3 { font-size: 20px; }
    .maestros-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .maestro-card { padding: 24px 14px; }
    .maestro-avatar { width: 60px; height: 60px; font-size: 22px; }
    .beca-card { padding: 22px 18px; }
    .beca-card h3 { font-size: 18px; }
    .boleto-card { padding: 28px 20px; }
    .boleto-name { font-size: 26px; }
    .boleto-price { font-size: 42px; }
    .boleto-desc { font-size: 13px; }
    .boleto-features li { font-size: 13px; padding: 6px 0; }
    .costos-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .costo-item { padding: 20px 12px; }
    .costo-item h4 { font-size: 14px; }
    .costo-price { font-size: 26px; }
    .costo-item p { font-size: 11px; }
    .contacto-item { gap: 14px; }
    .contacto-icon { width: 44px; height: 44px; }
    .contacto-icon svg { width: 18px; height: 18px; }
    .contacto-form { padding: 24px 18px; }
    .form-group input, .form-group textarea { padding: 12px 14px; font-size: 13px; }
    .form-group label { font-size: 11px; }
    footer { padding: 40px 15px 20px; }
    .footer-brand .footer-logo { height: 60px; }
    .footer-brand p { font-size: 13px; }
    .footer-col a { font-size: 12px; }
    .mobile-menu { padding: 90px 30px 30px; }
    .mobile-menu-links a { font-size: 24px; padding: 16px 0; }
}
