/* --- Variables y Configuración Global --- */
:root {
    --color-bg-main: #050000;
    --color-deep-red: #2a0000;
    --color-neon-red: #ff1a1a;
    --color-text-silver: #e0e0e0;
    --color-text-muted: #8c8c8c;
    --font-primary: 'Montserrat', sans-serif;
    --font-tech: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--color-bg-main);
    color: var(--color-text-silver);
    font-family: var(--font-primary);
    overflow-x: hidden;
    width: 100vw;
}

/* --- Fondo Animado y Efectos --- */
#hero-bg-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2; object-fit: cover; opacity: 0.8;
}

.vignette-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, transparent 40%, var(--color-deep-red) 90%, #000000 100%);
    pointer-events: none;
}

/* --- Layout Principal (HERO) --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Logos Superiores (Fijos arriba) */
.top-logos {
    position: absolute;
    top: 25px;
    width: 90%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 26, 26, 0.1);
}

.logo-item {
    font-family: var(--font-tech);
    font-size: clamp(0.5rem, 2vw, 0.9rem);
    letter-spacing: 2px;
    white-space: nowrap;
    font-weight: 700;
}

/* Contenedor de Texto Central (Hero Content) */
.hero-content {
    background: rgba(0, 0, 0, 0.65); 
    padding: 2.5rem 1.5rem; 
    border-radius: 15px; 
    box-shadow: 0 0 50px rgba(0, 0, 0, 1); 
    backdrop-filter: blur(12px); 
    border: 1px solid rgba(255, 26, 26, 0.2); 
    width: 95%;
    max-width: 800px;
}

/* Evitar saltos de línea */
.nowrap {
    white-space: nowrap;
    display: inline-block;
}

/* Subtítulo: Colectivos */
.sub-title {
    font-size: clamp(0.55rem, 2.5vw, 1.2rem);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
    font-weight: 700;
    line-height: 1.4;
    width: 100%;
}

.presentan-text {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 5px;
    margin-top: 8px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

/* Título Principal: LASTER EN CALI */
.main-title {
    font-size: clamp(1.4rem, 5.8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    font-weight: 900;
    width: 100%;
}

.glitch-text {
    color: var(--color-text-silver);
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 26, 26, 0.7);
}

.color-accent { color: var(--color-neon-red); }

/* Fecha */
.date-text {
    font-size: clamp(1.3rem, 4vw, 2.8rem);
    color: var(--color-text-silver);
    letter-spacing: 6px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 26, 26, 0.3);
    padding-top: 15px;
    display: inline-block;
}

/* Contenedor de Botones (Fijos abajo) */
.cta-container {
    position: absolute;
    bottom: 40px;
    width: 90%;
    max-width: 600px;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.neon-button {
    display: inline-block; text-decoration: none; text-align: center;
    padding: 15px 30px; background-color: rgba(0, 0, 0, 0.85);  
    color: var(--color-text-silver); text-shadow: 0 0 8px rgba(255, 26, 26, 0.8);
    border: 2px solid var(--color-neon-red); font-family: var(--font-tech);
    font-weight: 700; font-size: 1.1rem; letter-spacing: 2px;
    cursor: pointer; transition: all 0.3s ease; text-transform: uppercase;
    box-shadow: 0 0 10px rgba(255, 26, 26, 0.5) inset, 0 0 15px rgba(255, 26, 26, 0.4);
    backdrop-filter: blur(5px);
}

.neon-button:hover {
    background-color: var(--color-neon-red); color: black; text-shadow: none; 
    box-shadow: 0 0 20px var(--color-neon-red), 0 0 40px var(--color-neon-red);
}

.ghost-button {
    border-color: var(--color-text-silver); color: var(--color-text-silver);
    text-shadow: none; box-shadow: none; background-color: rgba(0, 0, 0, 0.6); 
}

/* --- SECCIONES DE CONTENIDO --- */
.content-section {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 5rem 2rem;
    position: relative; z-index: 10; 
    background: linear-gradient(to bottom, transparent, rgba(5,0,0,0.98) 15%, rgba(5,0,0,0.98) 85%, transparent);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem); color: var(--color-text-silver); margin-bottom: 2.5rem;
    letter-spacing: 4px; text-shadow: 0 0 15px rgba(255, 26, 26, 0.5); text-align: center;
}

.experience-card {
    background: rgba(10, 0, 0, 0.75); border-left: 5px solid var(--color-neon-red); 
    border-radius: 8px; width: 100%; max-width: 850px; 
    padding: 3.5rem 2.5rem; box-shadow: 0 20px 50px rgba(0,0,0,0.9);
    backdrop-filter: blur(10px); text-align: center;
}

.experience-text {
    font-size: clamp(1rem, 2.5vw, 1.4rem); line-height: 1.8; color: var(--color-text-silver);
    margin-bottom: 1.5rem; font-weight: 400;
}

.highlight-red {
    color: var(--color-neon-red); font-family: var(--font-tech); font-weight: 900;
    letter-spacing: 1px; text-shadow: 0 0 10px rgba(255, 26, 26, 0.4);
}

.ticket-card {
    background: rgba(15, 0, 0, 0.85); border: 1px solid var(--color-deep-red);
    border-radius: 12px; width: 100%; max-width: 420px; padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    backdrop-filter: blur(5px); transition: all 0.3s ease;
}

.ticket-price { font-size: 4rem; font-weight: 900; color: #fff; margin: 1rem 0; }
.currency { font-size: 1.2rem; color: var(--color-text-muted); }

.map-container {
    width: 100%; max-width: 900px; border: 2px solid #222; border-radius: 15px;
    overflow: hidden; box-shadow: 0 0 40px rgba(0,0,0,1);
}

/* --- RESPONSIVE (Celulares) --- */
@media (max-width: 768px) {
    .top-logos { top: 15px; padding: 8px 12px; }
    .hero-content { padding: 2rem 1rem; }
    .cta-container { bottom: 25px; }
    .button-group { flex-direction: column; gap: 12px; }
    .neon-button { width: 100%; }
}