/* ==========================================
   IRONDRIVER PALERMO - STYLES
   ========================================== */

/* ==========================================
   Variables & Reset
   ========================================== */
:root {
    --primary-color: #f2661a;
    --secondary-color: #ff8a3d;
    --dark-bg: #0a0907;
    --dark-gray: #100d0a;
    --panel: #16130f;
    --light-gray: rgba(255, 255, 255, 0.09);
    --text-primary: #f5f2ec;
    --text-secondary: #cfc8bc;
    --text-muted: #a49e93;
    --accent-gradient: linear-gradient(135deg, #f2661a 0%, #ff8a3d 100%);
    --shadow-glow: none;
    --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04);
    --shadow-card-hover: 0 18px 40px rgba(0, 0, 0, 0.35);
    --border-radius-sm: 10px;
    --border-radius-md: 14px;
    --border-radius-lg: 18px;
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --line: rgba(255, 255, 255, 0.09);
    --orange: #f2661a;
    --bg: #0a0907;
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(255, 107, 53, 0.02) 50px,
            rgba(255, 107, 53, 0.02) 51px
        );
    pointer-events: none;
    z-index: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================
   Container
   ========================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

section {
    position: relative;
    z-index: 1;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-iron {
    color: var(--text-primary);
}

.logo-driver {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-location {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-event {
    display: none;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background: #000;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #000;
    /* Evita que capas compositadas oculten el video en algunos GPUs */
    transform: translateZ(0);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Fuerza capa propia sin filtros que rompen el decode de video */
    transform: translateZ(0);
    backface-visibility: hidden;
    opacity: 1;
    background: #000;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(10, 9, 7, 0.28) 0%, rgba(10, 9, 7, 0.12) 38%, rgba(10, 9, 7, 0.72) 78%, var(--dark-bg) 100%),
        linear-gradient(90deg, rgba(10, 9, 7, 0.62) 0%, rgba(10, 9, 7, 0.18) 55%, transparent 78%);
}

/* Capas decorativas desactivadas: tapaban el video y generaban issues de compositor */
.hero-overlay::before,
.hero-overlay::after {
    content: none;
    display: none;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Líneas de velocidad que pasan */
.speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
}

.speed-lines::before,
.speed-lines::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 107, 53, 0.4),
        transparent
    );
    animation: speedLineMove 3s linear infinite;
}

.speed-lines::before {
    top: 20%;
    animation-delay: 0s;
}

.speed-lines::after {
    top: 80%;
    animation-delay: 1.5s;
}

@keyframes speedLineMove {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Efecto de escaneo HUD vertical */
.hud-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 107, 53, 0.3),
        rgba(247, 147, 30, 0.5),
        rgba(255, 107, 53, 0.3),
        transparent
    );
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    animation: hudScan 8s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes hudScan {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(100vh);
        opacity: 0.6;
    }
    90% {
        opacity: 0;
    }
}

/* Corners técnicos en las esquinas */
.tech-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    pointer-events: none;
}

.tech-corner::before,
.tech-corner::after {
    content: '';
    position: absolute;
    background: rgba(255, 107, 53, 0.3);
}

.tech-corner::before {
    width: 20px;
    height: 2px;
}

.tech-corner::after {
    width: 2px;
    height: 20px;
}

.tech-corner.top-left {
    top: 100px;
    left: 50px;
    border-right: none;
    border-bottom: none;
}

.tech-corner.top-left::before {
    top: 0;
    left: 0;
}

.tech-corner.top-left::after {
    top: 0;
    left: 0;
}

.tech-corner.top-right {
    top: 100px;
    right: 50px;
    border-left: none;
    border-bottom: none;
}

.tech-corner.top-right::before {
    top: 0;
    right: 0;
}

.tech-corner.top-right::after {
    top: 0;
    right: 0;
}

.tech-corner.bottom-left {
    bottom: 100px;
    left: 50px;
    border-right: none;
    border-top: none;
    animation: cornerPulse 3s ease-in-out infinite;
}

.tech-corner.bottom-left::before {
    bottom: 0;
    left: 0;
}

.tech-corner.bottom-left::after {
    bottom: 0;
    left: 0;
}

.tech-corner.bottom-right {
    bottom: 100px;
    right: 50px;
    border-left: none;
    border-top: none;
    animation: cornerPulse 3s ease-in-out infinite 1.5s;
}

.tech-corner.bottom-right::before {
    bottom: 0;
    right: 0;
}

.tech-corner.bottom-right::after {
    bottom: 0;
    right: 0;
}

@keyframes cornerPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem 74px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin: 0 0 18px;
}

.hero-kicker::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: 0.01em;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    max-width: 16ch;
}

.title-line {
    display: block;
}

.title-line:nth-child(1),
.title-line:nth-child(2),
.title-line:nth-child(3) {
    font-size: clamp(2.1rem, 6.2vw, 4.6rem);
}

.word {
    display: inline;
    margin: 0 0.12em 0 0;
}

.word.highlight {
    color: var(--primary-color);
    background: none;
    -webkit-text-fill-color: currentColor;
    text-shadow: none;
}

/* Animación épica para REAL */
.word.speed-word {
    position: relative;
    display: inline-block;
    animation: speedSlide 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s forwards;
    transform: translateX(-200%);
    opacity: 0;
}

@keyframes speedSlide {
    0% {
        transform: translateX(-200%);
        opacity: 0;
    }
    70% {
        transform: translateX(20%);
        opacity: 1;
    }
    85% {
        transform: translateX(-10%);
    }
    95% {
        transform: translateX(5%);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Rastro de velocidad/tierra */
.speed-trail {
    position: absolute;
    left: -50px;
    top: 50%;
    width: 40px;
    height: 8px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 107, 53, 0.6), 
        rgba(247, 147, 30, 0.4),
        transparent
    );
    transform: translateY(-50%) skewX(-25deg);
    opacity: 0;
    border-radius: 4px;
    filter: blur(2px);
}

.speed-trail:nth-child(2) {
    animation: trail 2s ease-out 2s;
    animation-delay: 2.1s;
    top: 30%;
    width: 35px;
    height: 6px;
}

.speed-trail:nth-child(3) {
    animation: trail 2s ease-out 2s;
    animation-delay: 2.15s;
    top: 70%;
    width: 30px;
    height: 5px;
}

.speed-trail:nth-child(4) {
    animation: trail 2s ease-out 2s;
    animation-delay: 2.2s;
    top: 40%;
    width: 25px;
    height: 4px;
    left: -30px;
}

.speed-trail:nth-child(5) {
    animation: trail 2s ease-out 2s;
    animation-delay: 2.25s;
    top: 60%;
    width: 20px;
    height: 3px;
    left: -20px;
}

.speed-trail:nth-child(6) {
    animation: trail 2s ease-out 2s;
    animation-delay: 2.3s;
    top: 80%;
    width: 15px;
    height: 2px;
    left: -10px;
}

@keyframes trail {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(-50%) skewX(-25deg) scale(1);
    }
    20% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.6;
        transform: translateX(-100px) translateY(-50%) skewX(-25deg) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateX(-200px) translateY(-50%) skewX(-25deg) scale(0.3);
    }
}

/* Partículas continuas que siguen pasando */
.continuous-particle {
    position: absolute;
    right: -20px;
    width: 30px;
    height: 5px;
    background: linear-gradient(90deg, 
        rgba(255, 107, 53, 0.4),
        rgba(247, 147, 30, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    opacity: 0;
    border-radius: 3px;
    filter: blur(1.5px);
    animation: continuousFlow 2.5s ease-in-out infinite;
    z-index: -1;
}

/* Diferentes delays y posiciones para cada partícula */
.continuous-particle:nth-child(7) {
    animation-delay: 4s;
    top: 35%;
    width: 35px;
    height: 6px;
}

.continuous-particle:nth-child(8) {
    animation-delay: 4.6s;
    top: 55%;
    width: 28px;
    height: 4px;
}

.continuous-particle:nth-child(9) {
    animation-delay: 5.2s;
    top: 70%;
    width: 32px;
    height: 5px;
}

.continuous-particle:nth-child(10) {
    animation-delay: 5.8s;
    top: 45%;
    width: 25px;
    height: 4px;
}

@keyframes continuousFlow {
    0% {
        opacity: 0;
        transform: translateX(0) skewX(-25deg) scale(0.8);
    }
    15% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.4;
        transform: translateX(-150px) skewX(-25deg) scale(0.6);
    }
    100% {
        opacity: 0;
        transform: translateX(-300px) skewX(-25deg) scale(0.3);
    }
}

.hero-subtitle {
    max-width: 560px;
    font-size: 1.12rem;
    font-weight: 400;
    color: #e7e3da;
    margin: 0 0 28px;
    line-height: 1.55;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    max-width: none;
    margin: 0;
}

.hero-cta-row {
    display: contents;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.95rem 1.55rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.16s, background 0.2s, color 0.2s, border-color 0.2s, filter 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    white-space: nowrap;
    line-height: 1.1;
    min-height: 52px;
}

.btn:hover {
    box-shadow: none;
    transform: translateY(-2px);
}

.btn::before {
    display: none;
}

.btn:hover::before {
    display: none;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.btn-primary {
    background: var(--primary-color);
    color: #160a02;
    box-shadow: none;
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
    box-shadow: none;
    filter: none;
    animation: none;
}

.btn-primary:hover svg {
    transform: none;
}

.hero-btn-reservas {
    padding: 0.95rem 1.7rem;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 12px rgba(242, 102, 26, 0.18);
    animation: none;
}

.hero-btn-reservas:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(242, 102, 26, 0.24);
    filter: none;
}

.hero-btn-reservas svg {
    width: 18px;
    height: 18px;
}

.hero-btn-whatsapp {
    padding: 0.95rem 1.55rem;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: #25D366;
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.16);
}

.hero-btn-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.22);
}

.hero-btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

.hero-btn-tienda {
    padding: 0.95rem 1.55rem;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
    gap: 0.55rem;
}

.hero-btn-tienda:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
    filter: none;
}

.hero-btn-tienda svg {
    width: 18px;
    height: 18px;
}

.hero-btn-tienda:hover svg {
    transform: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--primary-color);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(400%);
    }
}

/* ==========================================
   Stats Section
   ========================================== */
.stats-section {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 3rem;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: var(--border-radius-md);
    border: 2px solid var(--light-gray);
    border-top: 3px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-plus,
.stat-percent {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    display: inline-block;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-header::before {
    display: none;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    padding: 0;
    border: none;
    position: relative;
}

.section-tag::before {
    content: '';
    position: static;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    opacity: 1;
    left: auto;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.85rem, 4.2vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.section-title .highlight {
    color: var(--primary-color);
    background: none;
    -webkit-text-fill-color: currentColor;
}

/* ==========================================
   Experience Section
   ========================================== */
.experience-section {
    padding: 5.5rem 0 6rem;
    background: var(--dark-bg);
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 30%, rgba(242, 102, 26, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.experience-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 2.75rem;
    align-items: center;
}

.experience-copy .section-tag {
    justify-content: flex-start;
}

.experience-copy .section-title {
    margin: 0.35rem 0 1rem;
    max-width: 12ch;
}

.experience-lead {
    margin: 0 0 1.75rem;
    max-width: 34rem;
    font-size: 1.12rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.experience-points {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin: 0 0 2rem;
    padding: 0;
}

.experience-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.45;
}

.experience-points__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.experience-points__icon svg {
    width: 16px;
    height: 16px;
}

.experience-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.experience-actions .btn {
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    font-size: 0.82rem;
}

.experience-video-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 10;
    min-height: 340px;
    max-height: 480px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #000;
    transform: translateZ(0);
}

.experience-video-wrap .experience-video,
.experience-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.experience-mosaic {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    margin: 2.25rem auto 0;
    height: clamp(240px, 28vw, 360px);
    background: #000;
    overflow: hidden;
    border: 3px solid #000;
    border-radius: 18px;
    box-shadow: 0 24px 60px -40px rgba(0, 0, 0, 0.65);
}

.experience-mosaic__slice {
    flex: 1;
    position: relative;
    overflow: hidden;
    transform: skewX(-7deg);
    margin: 0 -20px;
    border-left: 3px solid #000;
    min-width: 0;
}

.experience-mosaic__slice:first-child {
    margin-left: -58px;
    border-left: none;
}

.experience-mosaic__slice:last-child {
    margin-right: -58px;
}

.experience-mosaic__inner {
    position: relative;
    width: 118%;
    height: 100%;
    margin-left: -9%;
    transform: skewX(7deg);
}

.experience-mosaic__slice:first-child .experience-mosaic__inner {
    width: 124%;
    margin-left: -4%;
}

.experience-mosaic__slice:last-child .experience-mosaic__inner {
    width: 124%;
    margin-left: -14%;
}

.experience-mosaic__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.55s ease;
}

.experience-mosaic__slice:hover img {
    transform: scale(1.03);
}

/* Bajamos el encuadre de las fotos 3 y 4 para mostrar más la parte inferior */
.experience-mosaic__slice:nth-child(3) .experience-mosaic__inner,
.experience-mosaic__slice:nth-child(4) .experience-mosaic__inner {
    margin-top: 0;
    height: 100%;
}

.experience-mosaic__slice:nth-child(3) .experience-mosaic__inner img {
    object-position: center 78%;
}

.experience-mosaic__slice:nth-child(4) .experience-mosaic__inner img {
    object-position: center 82%;
}

@media (max-width: 980px) {
    .experience-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-copy .section-title {
        max-width: none;
    }

    .experience-video-wrap {
        min-height: 280px;
        max-height: 400px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 900px) {
    .experience-mosaic {
        flex-direction: column;
        height: auto;
        margin-top: 1.5rem;
        border-radius: 14px;
    }

    .experience-mosaic__slice {
        margin: 0;
        transform: none;
        border-left: none;
        border-top: 3px solid #000;
        min-height: 200px;
        height: auto;
    }

    .experience-mosaic__slice:first-child {
        margin-left: 0;
        border-top: none;
    }

    .experience-mosaic__slice:last-child {
        margin-right: 0;
    }

    .experience-mosaic__inner,
    .experience-mosaic__slice:first-child .experience-mosaic__inner,
    .experience-mosaic__slice:last-child .experience-mosaic__inner {
        width: 100%;
        margin-left: 0;
        transform: none;
    }
}

@media (max-width: 640px) {
    .experience-section {
        padding: 3.5rem 0 4rem;
    }

    .experience-video-wrap {
        min-height: 220px;
        max-height: 300px;
        border-radius: 12px;
    }

    .experience-actions {
        flex-direction: column;
    }

    .experience-actions .btn {
        width: 100%;
    }

    .experience-mosaic__slice {
        min-height: 170px;
    }
}

/* ==========================================
   Divider Section
   ========================================== */
.divider-section {
    position: relative;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-gray);
    overflow: hidden;
}

.divider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(247, 147, 30, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.divider-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 53, 0.06);
    pointer-events: none;
}

.divider-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.divider-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.divider-content p {
    font-size: 1.4rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

/* ==========================================
   Categorías (grilla tipo landing)
   ========================================== */
.simulators-section {
    padding: 7rem 0;
    background: var(--dark-gray);
}

.cat-head {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.cat-head .section-title {
    margin-top: 10px;
}

.cat-head__sub {
    margin: 0;
    max-width: 34rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cat-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 56px;
    }
    .cat-head__sub {
        text-align: right;
    }
}

.cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .cat-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: minmax(280px, auto);
    }
    .cat-card--c7 { grid-column: span 7; }
    .cat-card--c5 { grid-column: span 5; }
    .cat-card--c4 { grid-column: span 4; }
    .cat-card--c3 { grid-column: span 3; }
    .cat-card--r2 { grid-row: span 2; }
}

.cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 288px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.3s, transform 0.35s;
    background: #000;
}

.cat-card:hover {
    border-color: rgba(242, 102, 26, 0.4);
}

.cat-card:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.cat-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.cat-card:hover .cat-card__bg {
    transform: scale(1.05);
}

.cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, rgba(10, 9, 7, 0.42) 48%, transparent 100%);
    transition: background 0.5s;
}

.cat-card:hover .cat-card__overlay {
    background: linear-gradient(to top, var(--bg) 0%, rgba(10, 9, 7, 0.22) 55%, transparent 100%);
}

.cat-card__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(245, 242, 236, 0.15);
    font-size: 4.5rem;
    user-select: none;
    pointer-events: none;
    transition: color 0.5s;
}

.cat-card--featured .cat-card__num {
    font-size: 5.5rem;
}

@media (min-width: 768px) {
    .cat-card__num { font-size: 4.5rem; }
    .cat-card--featured .cat-card__num { font-size: 7.5rem; }
}

.cat-card:hover .cat-card__num {
    color: rgba(242, 102, 26, 0.82);
}

.cat-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}

@media (min-width: 768px) {
    .cat-card__body { padding: 32px; }
}

.cat-card__line {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--orange);
    transition: width 0.5s;
}

.cat-card:hover .cat-card__line {
    width: 80px;
}

.cat-card h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: 0.01em;
    font-size: 1.65rem;
    color: var(--text-primary);
}

.cat-card--featured h3 {
    font-size: clamp(1.75rem, 3.2vw, 3rem);
}

@media (min-width: 768px) {
    .cat-card:not(.cat-card--featured) h3 { font-size: 1.85rem; }
}

.cat-card__desc {
    margin: 0;
    max-width: 28rem;
    font-size: 0.875rem;
    line-height: 1.62;
    color: var(--text-muted);
    opacity: 0.92;
}

@media (min-width: 768px) {
    .cat-card__desc {
        transform: translateY(8px);
        opacity: 0;
        transition: transform 0.5s, opacity 0.5s;
    }
    .cat-card:hover .cat-card__desc {
        transform: translateY(0);
        opacity: 0.92;
    }
}

.cat-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    opacity: 0;
    transition: opacity 0.5s;
}

.cat-card__cta svg {
    transition: transform 0.3s;
}

.cat-card:hover .cat-card__cta {
    opacity: 1;
}

.cat-card:hover .cat-card__cta svg {
    transform: translate(2px, -2px);
}

@media (max-width: 767px) {
    .cat-card__cta { opacity: 1; }
}

/* Legacy simulator cards (por si quedan en otras vistas) */
.simulators-grid {
    display: grid;
    gap: 3rem;
}

.simulator-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--panel);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: var(--transition);
    position: relative;
}

.simulator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gradient);
    transition: height 0.4s ease;
}

.simulator-card:hover::before {
    height: 100%;
}

.simulator-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover);
    transform: translateX(8px) scale(1.01);
}

.simulator-card:nth-child(even) {
    direction: rtl;
    border-left: none;
    border-right: 4px solid var(--primary-color);
}

.simulator-card:nth-child(even)::before {
    left: auto;
    right: 0;
}

.simulator-card:nth-child(even):hover {
    transform: translateX(-8px) scale(1.01);
}

.simulator-card:nth-child(even) > * {
    direction: ltr;
}

.simulator-image {
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
    min-height: 280px;
}

.simulator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease, filter 0.3s ease;
    filter: grayscale(0.2);
    position: absolute;
    top: 0;
    left: 0;
}

.simulator-card:hover .simulator-image img {
    filter: grayscale(0);
}

.simulator-card:hover .simulator-image img {
    transform: scale(1.1);
}

.simulator-overlay {
    position: absolute;
    top: 0;
    left: 0;
}

.simulator-tag {
    padding: 0.6rem 1.5rem;
    background: var(--primary-color);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    border-radius: 0 0 var(--border-radius-sm) 0;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
}

.simulator-content {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.simulator-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.simulator-content > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.simulator-features {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.simulator-features li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.simulator-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* ==========================================
   Services Section
   ========================================== */
.services-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(247, 147, 30, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.25rem 1.75rem;
    background: var(--panel);
    border-radius: 0;
    border: 1px solid var(--line);
    border-top: 2px solid var(--primary-color);
    transition: border-color 0.3s, transform 0.35s, background 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    isolation: isolate;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    width: auto;
    height: auto;
    background: linear-gradient(90deg, transparent, rgba(242, 102, 26, 0.08));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::before {
    width: auto;
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 102, 26, 0.35);
    border-top-color: var(--secondary-color);
    box-shadow: var(--shadow-card-hover);
}

.service-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    flex: 1 1 auto;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    margin-top: auto;
    padding-top: 2rem;
    min-height: 2rem;
}

.service-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.85rem;
    margin: -0.65rem -0.85rem;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #25D366;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    position: relative;
    z-index: 2;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.service-cta:hover {
    color: #1ebe57;
    transform: translateX(2px);
}

/* ==========================================
   Location Section
   ========================================== */
.location-section {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.address,
.hours {
    display: flex;
    gap: 1.5rem;
}

.address svg,
.hours svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.address strong,
.hours strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.address p,
.hours p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.location-map {
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid var(--light-gray);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.location-map:hover {
    box-shadow: var(--shadow-card-hover);
    transform: scale(1.01);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: 8rem 0;
    background: var(--dark-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.75rem;
    background: var(--panel);
    border-radius: 0;
    border: 1px solid var(--line);
    transition: border-color 0.3s, transform 0.35s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transition: var(--transition);
}

.contact-card-whatsapp::before {
    background: #25D366;
}

.contact-card-instagram::before {
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-card-email::before {
    background: var(--accent-gradient);
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-card-whatsapp:hover {
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.15);
}

.contact-card-instagram:hover {
    box-shadow: 0 12px 40px rgba(225, 48, 108, 0.15);
}

.contact-card-email:hover {
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.instagram-icon {
    background: rgba(225, 48, 108, 0.15);
    color: #E1306C;
}

.email-icon {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-color);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.contact-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.contact-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card-whatsapp .contact-card-action {
    color: #25D366;
}

.contact-card-instagram .contact-card-action {
    color: #E1306C;
}

.contact-card-email .contact-card-action {
    color: var(--primary-color);
}

.contact-card:hover .contact-card-action {
    gap: 0.75rem;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--dark-gray);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--light-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: var(--border-radius-sm);
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-social a:hover {
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: none;
}

.footer-social a:hover svg {
    color: var(--primary-color);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================
   Responsive Design
   ========================================== */

/* Prevent horizontal overflow globally */
#main-container {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 1024px) {
    .simulator-card,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .simulator-card:nth-child(even) {
        direction: ltr;
        border-left: 4px solid var(--primary-color);
        border-right: 2px solid var(--light-gray);
    }

    .simulator-card {
        gap: 0;
    }

    .simulator-image {
        min-height: 260px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }

    .location-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 17px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .nav-menu {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1.25rem;
    }

    /* Hero mobile */
    .hero {
        align-items: center;
    }

    .hero-content {
        padding: 52px 1.25rem 48px;
        text-align: center;
    }

    .hero-kicker {
        justify-content: center;
    }

    .hero-title {
        margin-left: auto;
        margin-right: auto;
        max-width: min(100%, 560px);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 24px;
        padding: 0;
        text-align: center;
    }

    .hero-cta {
        gap: 0.75rem;
        padding: 0;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        align-items: stretch;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .hero-cta .btn {
        width: 100%;
        flex: none;
        min-width: 0;
        justify-content: center;
        white-space: nowrap;
        border-radius: 10px;
        padding: 1rem 1.35rem;
        font-size: 0.9rem;
        min-height: 50px;
    }

    .hero-btn-reservas,
    .hero-btn-tienda,
    .hero-btn-whatsapp {
        padding: 1rem 1.35rem;
        font-size: 0.9rem;
        letter-spacing: 0.04em;
        gap: 0.5rem;
    }

    .hero-btn-reservas svg,
    .hero-btn-tienda svg,
    .hero-btn-whatsapp svg {
        width: 18px;
        height: 18px;
    }

    /* Hide tech corners on mobile */
    .tech-corner {
        display: none;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 3rem;
    }

    .section-tag {
        font-size: 0.7rem;
        padding: 0;
    }

    .section-tag::before {
        width: 22px;
    }

    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    /* Experience section */
    .experience-section {
        padding: 5rem 0;
    }

    /* Divider */
    .divider-section {
        padding: 4rem 0;
    }

    .divider-content h2 {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .divider-content p {
        font-size: 1.05rem;
    }

    .divider-section::after {
        width: 300px;
        height: 300px;
    }

    /* Simulators */
    .simulators-section {
        padding: 5rem 0;
    }

    .simulator-image {
        min-height: 200px;
    }

    .simulator-content {
        padding: 1.75rem 1.5rem;
    }

    .simulator-content h3 {
        font-size: 1.6rem;
    }

    .simulator-content > p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .simulator-features li {
        font-size: 1.05rem;
    }

    .simulator-card:hover {
        transform: none;
    }

    .simulator-card:nth-child(even):hover {
        transform: none;
    }

    /* Services */
    .services-section {
        padding: 5rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-number {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .service-price {
        font-size: 1.2rem;
    }

    /* Location */
    .location-section {
        padding: 5rem 0;
    }

    .location-info h2 {
        font-size: 2rem;
    }

    .address strong,
    .hours strong {
        font-size: 1.15rem;
    }

    .address p,
    .hours p {
        font-size: 1.05rem;
    }

    .location-map {
        height: 300px;
    }

    /* Contact */
    .contact-section {
        padding: 5rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .contact-card:hover {
        transform: none;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2.5rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-column h4 {
        margin-bottom: 0.75rem;
    }

    .footer-brand p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Stats */
    .stats-section {
        padding: 5rem 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-plus,
    .stat-percent {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-item:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        justify-content: center;
        padding: 0.95rem 1.2rem;
        font-size: 0.86rem;
        white-space: nowrap;
        width: 100%;
    }

    .hero-btn-reservas,
    .hero-btn-tienda,
    .hero-btn-whatsapp {
        padding: 0.95rem 1.2rem;
        font-size: 0.86rem;
        letter-spacing: 0.04em;
        gap: 0.45rem;
    }

    .hero-btn-reservas svg,
    .hero-btn-tienda svg,
    .hero-btn-whatsapp svg {
        width: 17px;
        height: 17px;
    }

    .logo-image {
        height: 28px;
    }

    .logo-location {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .footer-logo-image {
        height: 36px;
    }

    .feature-card:hover {
        transform: none;
    }

    .service-card:hover {
        transform: none;
    }
}

/* ==========================================
   Animations & Utilities
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Efecto de glow en hover para elementos interactivos */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: var(--shadow-card);
    }
    50% {
        box-shadow: var(--shadow-card-hover);
    }
}

/* Animación de entrada suave para cards */
@keyframes card-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(0deg);
    }
}

/* Efecto de brillo que pasa */
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Smooth Scroll */
html.has-scroll-smooth {
    overflow: hidden;
}

html.has-scroll-dragging {
    user-select: none;
}

.has-scroll-smooth body {
    overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
    min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
    height: 100vh;
    display: inline-block;
    white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    height: 100%;
}

.c-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 11px;
    height: 100%;
    transform-origin: center right;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
}

.c-scrollbar:hover {
    transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
    opacity: 1;
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 0.5;
    width: 7px;
    border-radius: 10px;
    margin: 2px;
    cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
    cursor: grabbing;
}

/* ==========================================
   Scroll to Top Button
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.32);
}

/* ==========================================
   Custom Cursor (Optional)
   ========================================== */
.custom-cursor,
.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    mix-blend-mode: difference;
}

.custom-cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.custom-cursor.active,
.custom-cursor-follower.active {
    transform: translate(-50%, -50%) scale(1.5);
}

@media (max-width: 768px) {
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
}

/* ==========================================
   Loading States
   ========================================== */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================
   Reviews Section
   ========================================== */
.reviews-section {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.reviews-carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    margin-top: 3rem;
}

.reviews-carousel__viewport {
    overflow: hidden;
    width: 100%;
}

.reviews-carousel__track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.reviews-carousel__nav {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    flex-shrink: 0;
    z-index: 2;
}

.reviews-carousel__nav:hover {
    border-color: rgba(242, 102, 26, 0.45);
    color: var(--primary-color);
}

.reviews-carousel__nav:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.review-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: border-color 0.3s, transform 0.35s;
    flex: 0 0 calc((100% - 2.5rem) / 3);
    min-width: 0;
    min-height: 280px;
}

.review-card:hover {
    border-color: rgba(242, 102, 26, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover);
}

.review-stars {
    color: #FBBC04;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    flex: 1;
    margin: 0;
}

.review-card--long .review-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    overflow: hidden;
}

.review-card--long.is-expanded .review-text {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.review-more {
    align-self: flex-start;
    background: none;
    border: none;
    padding: 0.35rem 0;
    margin: -0.25rem 0 0;
    color: var(--primary-color);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.review-more:hover {
    color: var(--secondary-color);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #34A853);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.review-author strong {
    color: var(--text-primary);
    font-size: 0.95rem;
    display: block;
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.reviews-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.5rem;
}

.reviews-carousel__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;
    transition: width 0.2s, background 0.2s;
}

.reviews-carousel__dot.is-active {
    width: 22px;
    background: var(--primary-color);
}

.reviews-summary {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

@media (max-width: 980px) {
    .review-card {
        flex-basis: calc((100% - 1.25rem) / 2);
    }
}

@media (max-width: 640px) {
    .reviews-carousel {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .reviews-carousel__nav {
        display: none;
    }

    .review-card {
        flex-basis: 100%;
        min-height: 240px;
    }
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--dark-gray);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 60px;
    padding: 1rem 2.5rem;
}

.rating-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.rating-stars {
    color: #FBBC04;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.rating-count::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92a5.06 5.06 0 0 1-2.2 3.32v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.1z'/%3E%3Cpath fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23FBBC05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    padding: 6rem 2rem;
    background: var(--dark-gray);
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    gap: 1rem;
}

.faq-question:hover {
    color: var(--text-secondary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1.4rem;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--text-primary);
}

/* ==========================================
   Reviews & FAQ Responsive
   ========================================== */
@media (max-width: 768px) {
    .reviews-section,
    .faq-section {
        padding: 4rem 1.2rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-card:hover {
        transform: none;
    }

    .reviews-rating {
        padding: 0.8rem 1.5rem;
        gap: 0.75rem;
    }

    .rating-number {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 1.2rem 0;
    }
}

@media (max-width: 480px) {
    .reviews-section,
    .faq-section {
        padding: 3rem 1rem;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .reviews-rating {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: var(--border-radius-sm);
        padding: 1rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* ==========================================
   Floating CTA
   ========================================== */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.9rem 1.8rem;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 900;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 1.2rem;
        right: 1.2rem;
        padding: 0.75rem 1.4rem;
        font-size: 0.75rem;
    }

    body.has-event-bar .floating-cta {
        display: none;
    }
}

/* ==========================================
   Floating Event CTA (mobile-only, solo si hay evento)
   ========================================== */
.floating-event-cta {
    display: none;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.85rem;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(21, 28, 31, 0.98) 100%),
        linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(255, 107, 53, 0.15));
    border: 1px solid rgba(0, 229, 255, 0.5);
    border-radius: 22px;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    z-index: 900;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.55),
        0 0 28px rgba(0, 229, 255, 0.18);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    overflow: hidden;
}

.floating-event-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(0, 229, 255, 0.2), transparent 38%);
    pointer-events: none;
}

.floating-event-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-event-cta:active {
    transform: translateY(1px);
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 229, 255, 0.3);
}

.floating-event-cta__copy,
.floating-event-cta__button {
    position: relative;
    z-index: 1;
}

.floating-event-cta__copy {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.floating-event-cta__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #00E5FF;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.floating-event-cta__dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00E5FF;
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
    animation: eventBarPulse 2s ease-out infinite;
}

.floating-event-cta__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    line-height: 1.25;
    text-transform: uppercase;
}

.floating-event-cta__button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.7rem 0.85rem;
    border-radius: 999px;
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.35);
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.floating-event-cta__arrows {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    color: currentColor;
    transition: transform 0.25s ease;
}

.floating-event-cta:active .floating-event-cta__button svg {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .floating-event-cta {
        display: inline-flex;
    }
}

@media (max-width: 380px) {
    .floating-event-cta {
        padding: 0.75rem;
        gap: 0.65rem;
    }

    .floating-event-cta__kicker {
        font-size: 0.56rem;
    }

    .floating-event-cta__text {
        font-size: 0.82rem;
    }

    .floating-event-cta__button {
        padding: 0.62rem 0.7rem;
        font-size: 0.6rem;
    }
}

/* ==========================================
   Mobile Menu
   ========================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.6rem;
        font-weight: 600;
    }

    .nav-link-event {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 0.18rem;
        padding: 0.8rem 1.15rem;
        border: 1px solid rgba(255, 107, 53, 0.65);
        border-radius: 16px;
        background: rgba(255, 107, 53, 0.1);
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.12);
        color: #fff;
        text-align: center;
    }

    .nav-link-event::after {
        display: none;
    }

    .nav-link-event__title {
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.25rem;
        font-weight: 800;
        letter-spacing: 0.11em;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .nav-link-event__meta {
        max-width: 240px;
        overflow: hidden;
        color: #00E5FF;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.7rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        line-height: 1.2;
        text-overflow: ellipsis;
        text-transform: uppercase;
        white-space: nowrap;
    }
    
    .nav-hamburger {
        z-index: 1000;
    }
    
    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}

/* ==========================================
   Event Bar (barra superior de evento destacado)
   ========================================== */

/* Color de acento de la barra.
   Por defecto: cyan neón (estilo HUD / telemetría).
   Si querés otro tono, cambiá solo estas 3 variables:
   - Verde lime:      accent #39FF14   accent-soft rgba(57,255,20, .7)
   - Verde claro:     accent #00D97E   accent-soft rgba(0,217,126,.7)
   - Celeste pastel:  accent #7DD3FC   accent-soft rgba(125,211,252,.7) */
.event-bar {
    --event-accent: #00E5FF;
    --event-accent-soft: rgba(0, 229, 255, 0.7);
    --event-accent-glow: rgba(0, 229, 255, 0.08);
    --event-accent-hover: rgba(0, 229, 255, 0.5);

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 54px;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background: linear-gradient(90deg, #0A0A0A 0%, #0B1418 50%, #0A0A0A 100%);
    border-bottom: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--text-primary);
    text-decoration: none;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.event-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, var(--event-accent-glow) 0%, transparent 70%);
    pointer-events: none;
}

.event-bar:hover {
    background: linear-gradient(90deg, #0A0A0A 0%, #0E1C22 50%, #0A0A0A 100%);
    border-bottom-color: var(--event-accent-hover);
}

.event-bar__inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 100%;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.event-bar__copy {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.event-bar__label {
    display: none;
    color: var(--event-accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-bar__dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--event-accent);
    box-shadow: 0 0 0 0 var(--event-accent-soft);
    animation: eventBarPulse 2s ease-out infinite;
}

.event-bar__date {
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--event-accent);
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    white-space: nowrap;
}

.event-bar__separator {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.25);
    user-select: none;
}

.event-bar__text {
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    max-width: 50ch;
}

.event-bar__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding-left: 0.85rem;
    margin-left: 0.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--event-accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.event-bar__cta svg {
    width: 13px;
    height: 13px;
    transition: transform 0.25s ease;
}

.event-bar:hover .event-bar__cta {
    color: #fff;
}

.event-bar:hover .event-bar__cta svg {
    transform: translateX(3px);
}

@keyframes eventBarPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 7px rgba(0, 229, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

/* Cuando hay barra de evento:
   - Empujamos el navbar hacia abajo (el navbar es fixed).
   - Empujamos el contenido centrado del hero hacia abajo para que no
     quede "apretado" contra el navbar (que ahora ocupa más espacio arriba). */
body.has-event-bar .navbar {
    top: 54px;
}

body.has-event-bar .hero {
    padding-top: 54px;
}

/* Tablet */
@media (max-width: 900px) {
    .event-bar__text {
        max-width: 32ch;
    }
}

/* Mobile: banner de evento más legible y con CTA claro */
@media (max-width: 640px) {
    .event-bar {
        height: 58px;
        justify-content: flex-start;
        padding: 0.55rem 0.9rem;
        background:
            linear-gradient(90deg, rgba(10, 10, 10, 0.98) 0%, rgba(13, 29, 35, 0.98) 100%),
            radial-gradient(circle at 12% 30%, rgba(0, 229, 255, 0.22), transparent 42%);
    }

    .event-bar__inner {
        width: 100%;
        gap: 0.6rem;
        font-size: 0.82rem;
    }

    .event-bar__date,
    .event-bar__separator {
        display: none;
    }

    .event-bar__copy {
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.08rem;
    }

    .event-bar__label {
        display: block;
        font-size: 0.58rem;
        line-height: 1.15;
    }

    .event-bar__text {
        width: 100%;
        max-width: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.92rem;
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .event-bar__cta {
        align-self: stretch;
        padding: 0 0.85rem;
        margin-left: 0;
        border-left: 0;
        border-radius: 999px;
        background: var(--accent-gradient);
        color: #fff;
        font-size: 0.62rem;
        letter-spacing: 0.09em;
        gap: 0.35rem;
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.32);
    }

    .event-bar__cta-text {
        display: inline;
    }

    .event-bar__cta svg {
        width: 12px;
        height: 12px;
    }

    body.has-event-bar .navbar {
        top: 58px;
    }

    body.has-event-bar .hero {
        padding-top: 58px;
    }
}

