/* =================================================================
   WRO 2026 Baja California — Robots Meet Culture
   ================================================================= */

:root {
    --c-bg: #ffffff;
    --c-text: #0E0B22;
    --c-muted: #6B6B7A;
    --c-line: #ECECF1;

    --c-primary: #4700AC;
    --c-primary-deep: #0031FF;
    --c-primary-soft: #F2EEFF;

    --c-dark: #0A0826;
    --c-dark-2: #14102E;

    --c-accent-orange: #FF6A3D;
    --c-accent-yellow: #FFD93D;
    --c-accent-pink: #FF3DA8;
    --c-accent-cyan: #45D9FF;
    --c-accent-green: #45FFB0;

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;

    --shadow-card: 0 12px 40px -16px rgba(20, 16, 46, 0.16);
    --shadow-lg: 0 24px 60px -20px rgba(72, 36, 229, 0.28);

    --font-display: "Outfit", system-ui, sans-serif;
    --font-body: "Outfit", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 0.4em;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0 0 1em;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav .container {
    max-width: 2086px;
    width: 100%;
}


/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .15s ease, background .2s, color .2s, border-color .2s, box-shadow .2s;
    white-space: nowrap;
}

.btn--primary {
    background: var(--c-primary-deep);
    color: #fff;
}

.btn--primary:hover {
    background: var(--c-primary);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    border-color: var(--c-primary-deep);
    color: var(--c-primary-deep);
}

.btn--ghost:hover {
    border-color: var(--c-primary);
    color: var(--c-primary);
}

.btn--ghost--white {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.btn--ghost--white:hover {
    border-color: #fff;
    background: #fff;
    color: var(--c-primary-deep);
}

.btn--ghost-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn--ghost-light:hover img {
    filter: invert(13%) sepia(98%) saturate(6708%) hue-rotate(229deg) brightness(99%) contrast(141%);
}

.btn--white {
    background: #fff;
    color: #0031FF;
}

.btn--white:hover {
    background: var(--c-primary-soft);
}

.btn--sm {
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* ---------- Eyebrows ---------- */
.eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 12px;
    display: inline-block;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 1);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.kicker__dot {
    width: 8px;
    height: 8px;
    background: var(--c-accent-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(69, 255, 176, 0.2);
}

.section-head {
    margin-bottom: 48px;
}

.section-head--center {
    text-align: center;
}

.section-head h2 {
    margin-bottom: 8px;
}

.muted-link {
    color: var(--c-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* =================================================================
   NAV — ACTUALIZADO
   ================================================================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #4700AC;
    backdrop-filter: blur(12px);
}

.nav__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 72px;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    order: 1;
}

.logo-mark {}

.logo-mark span:nth-child(1) {
    margin-left: 40px;
}

.nav__logo span:nth-child(2) {
    margin-left: 40px;
}

.logo-mark span:nth-child(3) {
    background: var(--c-accent-cyan);
}

.logo-mark span:nth-child(4) {
    background: var(--c-accent-yellow);
}

.logo-mark span {
    border-radius: 2px;
}

.logo-text small {
    font-weight: 500;
    opacity: .6;
    margin-left: 4px;
}

.nav__menu {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex: 1;
    font-size: 0.92rem;
    order: 2;
    margin-left: 0;
}

.nav__menu a {
    color: #FFFFFF;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
}

.nav__menu a:hover {
    color: #f1f1f1;
}

.nav__cta {
    padding: 10px 18px;
    font-size: 0.88rem;
    flex-shrink: 0;
    order: 3;
}

.nav__burger {
    display: none;
    background: transparent;
    border: 0;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    order: 4;
}

.nav__burger span {
    display: block;
    height: 2px;
    background: var(--c-text);
    border-radius: 2px;
}

.nav__cta {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 18px 25px 18px 26px;
    gap: 19px;

    margin: 0 auto;
    width: 191px;
    height: 40px;

    background: #0031FF;
    border-radius: 10px;

    /* Inside auto layout */
    flex: none;
    order: 2;
    flex-grow: 0;

}

@media (max-width: 980px) {
    .nav__menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #4700AC;
        flex-direction: column;
        padding: 20px 24px;
        border-bottom: 1px solid #4700AC;
        justify-content: flex-start;
        flex: unset;
    }

    .nav__burger span {
        background: #fff;
    }

    .nav__menu a {
        font-size: 18px;
    }

    .nav__menu.open {
        display: flex;
    }

    .nav__burger {
        display: flex;
    }

    .nav__cta {
        display: none;
    }
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
    position: relative;
    overflow: hidden;
    background: #000;
    color: #fff;
    padding: 96px 0 110px;
    min-height: 870px;
    display: flex;
    justify-content: center;
    /* Centers along the main axis (usually horizontal) */
    align-items: center;
}

.hero__pixels {
    position: absolute;
}

.hero__pixels--left {
    top: 0;
    left: 0;
    background: url('assets/hero_art_left.svg');
    width: 936px;
    height: 870px;
    background-size: cover;
}

.hero__pixels--right {
    bottom: 0;
    right: 0;
    background: url('assets/hero_art_right.svg');
    width: 129px;
    height: 194px;
    background-size: cover;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 115px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero .container {
    max-width: 1160px;
}

.hero__title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin: 0 0 28px;
    line-height: 0.95;
    font-weight: 700;
}

.hero__title-row {
    display: flex;
    align-items: baseline;
    gap: 18px;
    flex-wrap: wrap;
}

.hero__meet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.35em;
    background: #fff;
    color: var(--c-text);
    padding: 6px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-family: var(--font-body);
    vertical-align: middle;
    margin-bottom: 0.18em;
}

.hero__culture {
    background: linear-gradient(120deg, var(--c-accent-orange), var(--c-accent-yellow), var(--c-accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #fff;
}

.hero__lede {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.86);
    max-width: 480px;
    margin-bottom: 28px;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 24px;
}

.countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown__unit {
    /* Frame 119 */

    box-sizing: border-box;

    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    margin: 0 auto;
    width: 98px;
    height: 98px;
    border: 1px solid #00AEEF;
    border-radius: 20px;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;

}

.countdown__num {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.2rem;
    letter-spacing: -0.04em;
    color: #fff;
}

.countdown__lbl {
    font-size: 0.7rem;
    text-transform: lowercase;
    color: #00AEEF;
    margin-top: 4px;
}

.hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__ctas .btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.hero__ctas .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 880px) {
    .hero {
        padding: 64px 0 80px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .countdown__num {
        font-size: 2rem;
    }
}

/* =================================================================
   STATS
   ================================================================= */
.stats {
    background: #8C52FF;
    color: #fff;
    padding: 22px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* centra horizontalmente */
    justify-content: center;
    /* centra verticalmente */
    text-align: center;
    /* centra el texto */
    gap: 25px;
}

.stat__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.stat__lbl {
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    letter-spacing: -0.18px;
}

.stat__lbl em {
    font-style: normal;
    opacity: 0.7;
}

@media (max-width: 880px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =================================================================
   INFO
   ================================================================= */
.information_row {
    background: #fff;
    color: #000;
    padding: 35px 0;
}

.information_row__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 62px;
    align-items: center;
}

.information_block {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centra horizontalmente */
    justify-content: center;
    /* centra verticalmente */
    text-align: center;
    /* centra el texto */
    gap: 0px;
    position: relative;
}

.information_block:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #000;
    top: 0;
    bottom: 0;
    right: -31px;
}

.information_row .information_block:last-child:after {
    display: none;
}

.information_row__divider {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.information_row__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.03em;
}

.information_row__lbl {
    font-size: 18px;
    line-height: 1.3;
    color: #000;
    letter-spacing: -0.18px;
}

.stat__lbl em {
    font-style: normal;
    opacity: 0.7;
}

@media (max-width: 880px) {
    .information_row__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =================================================================
   ABOUT
   ================================================================= */


.about-theme {
    color: #fff;
    background: #000;
    background-size: contain;
    background-position: top center;
    padding-bottom: 200px;
    background-repeat: no-repeat;
}

.about-theme__stage {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
    /* alto del lienzo escalado de tu Figma 1804px */
    padding: 0 24px;
}

/* Texto ¿Qué es la WRO? — arriba, centro-izquierda */
.about-theme__block--about {
    position: absolute;
    top: 150px;
    left: 15%;
    width: 570px;
}

/* Texto Robots meet culture — abajo, derecha */
.about-theme__block--theme {
    position: absolute;
    bottom: -50px;
    right: -10%;
    width: 570px;
}

.about-theme__block .eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 18px;
}

.about-theme__block h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 22px;
    line-height: 1.05;
    font-family: 'Outfit';
}

.about-theme__block p {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    font-family: 'Outfit';
}

/* Mobile: el posicionamiento absoluto colapsa a flujo normal */
@media (max-width: 820px) {
    .about-theme__stage {
        height: auto;
        padding: 60px 24px;
    }

    .about-theme__block--about,
    .about-theme__block--theme {
        position: static;
        width: 100%;
        left: auto;
        top: auto;
        margin-bottom: 48px;
    }
}

/* =================================================================
   VIDEO / CONTACT
   ================================================================= */
.videoband {
    padding: 0;
    background: #4700AC url(assets/wro_video.svg);
    background-size: inherit;
    background-position: top left;
    background-repeat: no-repeat;
}

.videoband__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    margin: 0 auto;
    min-height: 380px;
}

/* ----- Izquierda: media + botón play ----- */
.videoband__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.videoband__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videoband__play {
    position: relative;
    z-index: 1;
    width: 84px;
    height: 84px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease, background .2s;
}

.videoband__play svg {
    margin-left: 5px;
}

.videoband__media:hover .videoband__play {
    transform: scale(1.06);
    background: rgba(0, 0, 0, 0.25);
}

/* ----- Derecha: panel morado ----- */
.videoband__panel {
    background: var(--c-primary, #4700AC);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 56px 48px;
}

.videoband__star {
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
}

.videoband__content {
    text-align: center;
    max-width: 380px;
}

.videoband__content h3 {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;
}

.videoband__content p {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

/* ----- Mobile ----- */
@media (max-width: 768px) {
    .videoband__inner {
        grid-template-columns: 1fr;
    }

    .videoband__media {
        min-height: 260px;
    }

    .videoband__panel {
        gap: 16px;
        padding: 40px 24px;
    }

    .videoband__star {
        font-size: 1.8rem;
    }
}

/* ----- Asteriscos giratorios ----- */
.videoband__star {
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    display: inline-block;
    animation: vb-spin 9s linear infinite;
}

.videoband__star--rev {
    animation-direction: reverse;
}

@keyframes vb-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .videoband__star {
        animation: none;
    }
}

/* El botón media reset (porque ahora es <button>) */
.videoband__media {
    border: 0;
    padding: 0;
    width: 100%;
    cursor: pointer;
    background: transparent;
}

/* ----- Modal de video ----- */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal.open {
    display: flex;
}

.video-modal__box {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
}

.video-modal__box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-modal__close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    border: 0;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.video-modal__close:hover {
    background: #f1f1f1;
}

@media (max-width: 768px) {
    .video-modal__close {
        top: 8px;
        right: 8px;
    }
}


#videoModalMount {
    width: 100%;
    height: 100%;
}

#videoModalMount iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video-modal__box {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    overflow: unset !important;
    /* ... */
}

/* =================================================================
   THEME — Robots meet culture
   ================================================================= */
.theme {
    position: relative;
    background: var(--c-dark);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.theme__pixels {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 8% 30%, var(--c-accent-orange) 0 6px, transparent 7px),
        radial-gradient(circle at 92% 18%, var(--c-accent-cyan) 0 6px, transparent 7px),
        radial-gradient(circle at 14% 85%, var(--c-accent-pink) 0 6px, transparent 7px),
        radial-gradient(circle at 88% 78%, var(--c-accent-yellow) 0 6px, transparent 7px);
    opacity: 0.5;
    pointer-events: none;
}

.theme__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.theme__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(110deg, var(--c-accent-orange), var(--c-accent-yellow), var(--c-accent-pink), var(--c-accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 24px;
}

.theme__lede {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
}

.theme__card {
    background: linear-gradient(160deg, var(--c-primary), #7A53FF);
    border-radius: var(--r-xl);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.theme__card-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.theme__card h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    font-weight: 700;
}

@media (max-width: 880px) {
    .theme__grid {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   CATEGORIES
   ================================================================= */
.cats {
    padding: 100px 0;
    background: #F9F5E8;
}

.cats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.cat {
    background: #F9F5E8;
    padding: 32px 28px;
    text-align: center;
    transition: transform .2s;
    position: relative;
}

.cats__grid .cat:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #000;
    top: 0;
    bottom: 0;
    right: -35px;
}

.cats .cats__grid .cat:last-child:after {
    display: none;
}

.cat:hover {
    transform: translateY(-4px);
    border-color: transparent;
}

.cat__age {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
    margin-bottom: 18px;
}

.cat__illu {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.cat__title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cat__quota {
    color: #BE1E2D;
    font-size: 0.88rem;
    margin-bottom: 14px;
}

.cat__quota strong {
    color: var(--c-text);
}

.cat__copy {
    color: #000;
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.cat__cta {
    width: 100%;
}

.cat__link {
    display: inline-block;
    margin-top: 20px;
    color: var(--c-primary-deep);
    font-weight: 600;
    font-size: 0.88rem;
}

.cat__link:hover {
    text-decoration: underline;
}

@media (max-width: 880px) {
    .cats__grid {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   HOW — Steps
   ================================================================= */
.how {
    padding: 100px 0;
    position: relative;
}

.how__art_left {
    position: absolute;
    bottom: 0;
    left: 0;
}

.how__art_right {
    position: absolute;
    top: -63.5px;
    right: 0;
}

.how__grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}

.how__intro h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
}

.how__intro p {
    color: #000;
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, var(--c-primary) 0 33%, var(--c-primary) 33%);
}

.step {
    background: #fff;
    padding: 14px 4px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: transparent;
    color: #4700AC;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px dotted #4700AC;
}

.step h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step p {
    color: #000;
    font-size: 0.9rem;
}

.step__price {
    font-size: 0.85rem;
    color: var(--c-text) !important;
}

@media (max-width: 880px) {
    .how__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .steps::before {
        display: none;
    }
}

/* =================================================================
   GALLERY
   ================================================================= */
.gallery {
    background: #000 url('assets/art_wro_baja_california_2026.png');
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
}

.gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gallery__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
}

.gallery__title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.gallery__lede {
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 16px;
    position: relative;
}

.gphoto {
    border-radius: var(--r-lg);
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform .25s;
}

.gphoto:hover {
    transform: scale(1.02);
}

.gphoto--lg {
    grid-row: span 2;
}

.gphoto--md {
    grid-column: span 2;
}

@media (max-width: 880px) {
    .gallery__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
    }

    .gphoto--lg {
        grid-column: span 2;
    }
}

/* =================================================================
   CALENDAR
   ================================================================= */
.calendar {
    padding: 100px 0;
    background: #000;
}

.calendar .section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.calendar .section-head h2 {
    color: #fff;
}

.calendar .eyebrow {
    color: #fff;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding-top: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    top: calc(var(--dot-center-y, 35%));
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 0;
    left: 6%;
    right: 6%;
}

.timeline__bar {
    position: absolute;
    top: 50px;
    left: 6%;
    right: 6%;
    height: 4px;
    background: #8C52FF;
    border-radius: 2px;
}

.timeline__bar {
    background: linear-gradient(to right, #FF883C, #8C52FF);
    transition: clip-path 0.5s ease;
}

.timeline__step {
    text-align: center;
    position: relative;
}

.timeline__dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #8C52FF;
    margin: 9px auto 18px;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--c-line);
    position: relative;
    z-index: 1;
}

.timeline__step.done .timeline__dot {
    background: var(--c-primary);
    box-shadow: 0 0 0 2px var(--c-primary);
}

.timeline__step.current .timeline__dot {
    background: var(--c-accent-orange);
    box-shadow: 0 0 0 2px var(--c-accent-orange), 0 0 0 8px rgba(255, 106, 61, 0.18);
    width: 28px;
    height: 28px;
    margin-top: 4px;
}

.timeline__tag {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-accent-orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.timeline__label {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: #fff;
}

.timeline__date {
    color: #fff;
    font-size: 0.8rem;
}

@media (max-width: 880px) {
    .timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .timeline__bar {
        display: none;
    }
}

/* =================================================================
   PUERTO RICO
   ================================================================= */
.pr {
    position: relative;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    overflow: visible;
}

.pr__bg {
    position: absolute;
    inset: 0;
    background: url(assets/WRO_Puerto_Rico.jpg);
    z-index: 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.pr__bg::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200px;
    height: 244px;
    background-image: url(assets/art_pr_left.svg);
    background-repeat: no-repeat;
    display: block;
}

.pr__bg::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 128px;
    height: 128px;
    background-image: url(assets/art_pr_right.svg);
    background-repeat: no-repeat;
    display: block;
    margin-top: -64px;
}

.pr__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.pr h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 18px;
}

.pr p {
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.pr__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 36px auto;
}

.pr__stats>div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--r-md);
    padding: 18px;
}

.pr__stats span {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
}

.pr__stats small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
}

/* =================================================================
   TRAVEL
   ================================================================= */

.travel-section {
    padding: 100px 0;
    background: var(--white);
    background: url(assets/WRO_Baja_California_2026_Planea_tu_viaje.svg);
    background-size: inherit;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.travel-section .section-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    margin-bottom: 12px;
    display: inline-block;
}

.map-placeholder__location {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.map-placeholder__location_info {}

.map-placeholder__location_button {}


.travel-col h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0;
}

.flight-cards {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.flight-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    padding: 16px
}

.airline-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0
}

.flight-info {
    flex: 1
}

.flight-info strong {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    display: block
}

.code-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #4700AC;
    color: #fff;
    font-family: monospace;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: .15s
}

.code-pill:hover {
    background: #0031FF;
}

.code-pill .copy-icon {
    font-size: 11px;
    opacity: .6
}

.hotel-cards {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.hotel-card {
    gap: 16px;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    display: flex;
    padding: 16px;
    background: #fff;
}

.hotel-img {
    height: 100%;
    width: 50%;
}

.hotel-body {
    padding: 0px
}

.hotel-body strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 4px
}

.hotel-body .code-pill {
    margin-top: 6px
}

.map-placeholder {
    margin-top: 24px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden
}

.travel-grid p {
    margin: 0 !important;
}

/* =================================================================
   OFFICIAL SPONSORS
   ================================================================= */
.sponsors_official {
    background: #F9F5E8;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    color: #000;
}

.sponsors_official .eyebrow--light {
    color: #000;
}

.sponsors_official h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 40px;
    text-align: center;
    color: #000;
}

.sponsors_official__grid {
    display: flex;
    gap: 16px;
    margin-bottom: 0px;
}

.sponsor {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-md);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.sponsors_official__cta {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: start;
}

.sponsors_official__copy h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.sponsors_official__copy p {
    color: rgba(255, 255, 255, 0.72);
}

/* =================================================================
   SPONSORS
   ================================================================= */
.sponsors {
    background: #000 url('assets/art_right_patrocinador.svg');
    color: #fff;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: right 10%;
}

.sponsors h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 40px;
    text-align: center;
}

.sponsors__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 80px;
}

.sponsor {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r-md);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.sponsors__cta {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 48px;
    align-items: start;
}

.sponsors__copy h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.sponsors__copy p {
    color: #fff;
}

.sponsors__benefits {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 12px;
}

.sponsors__benefits li {
    position: relative;
    padding-left: 16px;
    color: #fff;
    font-size: 0.9rem;
}

.sponsors__benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 50%;
}

.sponsors__form {
    color: #fff;
    border-radius: var(--r-xl);
    padding: 0 32px;
    display: grid;
    gap: 14px;
}

.form-head {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.sponsors__form label {
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--c-text);
    gap: 6px;
}

.sponsors__form input {
    border: 1.5px solid var(--c-line);
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color .15s;
}

.sponsors__form input:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px var(--c-primary-soft);
}

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

.sponsors__form button {
    margin-top: 8px;
    justify-self: end;
}

.exhibitor {
    margin-top: 80px;
    background: #F9F5E8;
    border: 1px solid #F9F5E8;
    padding: 50px 75px;
    display: flex;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.exhibitor h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 40px;
    color: #000;
    text-align: center;
}

.exhibitor p {
    color: #000;
    margin-bottom: 24px;
    text-align: center;
}

.exhibitor__specs {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    white-space: pre-wrap;
    width: 100%;
    justify-content: space-between;
}

.exhibitor__specs>div {
    flex: 0 0 calc(25% - 24px);
    max-width: calc(25% - 24px);
    box-sizing: border-box;
    flex-direction: column;
}

.exhibitor__specs_box {

    display: flex;
    border: 1px solid #00AEEF;
    border-radius: 40px;
    flex-direction: column;
    justify-content: center;
    max-height: 152px;
}

.exhibitor__specs span {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.3rem;
    color: #000;
}

.exhibitor__specs small {
    color: #000;
    font-size: 0.72rem;
}

@media (max-width: 880px) {
    .sponsors__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsors__cta {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .exhibitor {
        grid-template-columns: 1fr;
    }
}

.art_section {
    overflow: visible;
    height: 0;
    position: relative;
}

.art_section img {
    position: absolute;
    top: -700px;
    z-index: 0;
}

/* =================================================================
   INFO / CONTACT
   ================================================================= */
.info {
    padding: 100px 0;
    background: #000 url(assets/wro_baja_california_2026_info_general.png);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}

.info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
    align-items: stretch;
}

.info__card {
    grid-column: 1;
    grid-row: 1;
}

.info__contacts__footer {
    grid-column: 1;
    grid-row: 2;
    background: #fff;
}

.info__contacts__footer_container {
    display: flex;
}

.info__contacts__footer_container div {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.info__contacts__footer_container div:last-child {}

.info__card {
    background: #000000;
    color: #fff;
    border-radius: 0;
    padding: 40px;
    position: relative;
}

.info__card h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: #fff;
}

.info__card h3 {
    font-size: 1.05rem;
    margin: 28px 0 14px;
    color: #fff;
    font-weight: 500;
}

.info__list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: grid;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.info__list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.info__list li .stat__icon {
    width: 24px;
}

.info__list strong {
    margin-right: 10px;
}

.info__contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 0.9rem;
}

.info__contacts a {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 10px;
    padding: 10px;
    color: #fff;
    display: flex;
    gap: 16px;
    align-items: center;
}

.info__contacts a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.info__contacts a .button__icon {
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.info__map {
    border-radius: var(--r-xl);
    background:
        radial-gradient(circle at 60% 40%, var(--c-primary) 0 8px, transparent 9px),
        linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 50%, #C7D2FE 100%);
    position: relative;
    min-height: 460px;
}

.info__map::after {
    content: "📍 CAR Tijuana";
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-card);
}

@media (max-width: 880px) {
    .info__grid {
        grid-template-columns: 1fr;
    }

    .info__contacts {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   FAQ
   ================================================================= */
.faq {
    background: #000 url(assets/fondo_preguntas_frecuentes_wro.png);
    color: #fff;
    padding: 100px 0;
    background-size: cover;
    background-position: top;
}

.faq h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 40px;
    text-align: left;
    padding-left: 30px;
}

.faq__list {
    max-width: 820px;
    margin: 0;
    padding: 0 30px 30px 30px;
    background: #000;
}

.faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px 0;
}

.faq__item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.02rem;
    color: #fff;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item summary::after {
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    transition: transform .2s;
}

.faq__item[open] summary::after {
    content: "−";
}

.faq__item p {
    margin-top: 14px;
    color: #fff;
    font-size: 0.95rem;
}

.faq__item p a {
    color: #fff;
    text-decoration: underline;
}

.faq__item p a:hover {
    text-decoration: unset;
}



.faq__cta h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.faq__cta p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}


.faq__cta__details p {
    color: rgba(255, 255, 255, 0.82);
    margin: 20px 0;
}

@media (max-width: 880px) {
    .faq__cta {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   FOOTER
   ================================================================= */
.footer {
    background: var(--c-primary);
    color: #fff;
    padding: 70px 0 28px;
    position: relative;
    overflow: visible;
}

.footer:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 129px;
    height: 257px;
    background-image: url(assets/art_footer.svg);
    background-repeat: no-repeat;
    display: block;
    margin-top: -194px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.footer__brand img {
    max-width: 320px;
}

.footer__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
}

.footer__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 6px;
}

.footer__title span {
    background: #fff;
    color: var(--c-primary-deep);
    padding: 2px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    vertical-align: middle;
    margin: 0 4px;
}

.footer__meta {
    color: #fff;
    font-size: 0.85rem;
    margin-top: 70px;
    text-align: right;
}

.footer__partners {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.footer__partners_logos {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}


.footer__partner {
    padding: 0px;
    position: relative;
}

.footer__partners_logos .footer__partner:first-child:after {
    position: absolute;
    width: 1px;
    height: 100%;
    content: '';
    top: 0;
    bottom: 0;
    right: -35px;
    background: #FFFFFF;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 24px;
    flex-wrap: wrap;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.85);
}

.footer__links a:hover {
    color: #fff;
}


/* Mobile first - estilos base (móvil) */
/* Aquí van tus estilos por defecto, sin media query */


/* Móvil grande / Phablet (≥480px) */
@media (max-width: 767px) {
    .travel-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 48px;
        margin-top: 0;
    }

    .faq__cta {
        gap: 0;
    }

    .faq__cta__details {
        margin-top: 60px;
    }

    .faq__cta__details {
        background: #0031FF;
        padding: 30px;
        color: #fff;
        border-radius: 30px;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .faq__cta-btns {
        display: flex;
        gap: 10px;
        flex-direction: column;
    }

    .map-placeholder {
        width: 100%;
        height: 260px !important;
    }

    .map-placeholder iframe {
        width: 100%;
        height: 260px !important;
    }

    .travel-grid div:last-child {
        background: #fff;
        border-radius: 12px;
    }

    .map-placeholder__location {
        padding: 15px;
    }

    .exhibitor {
        margin-top: 80px;
        background: #F9F5E8;
        border: 1px solid #F9F5E8;
        padding: 30px;
        display: flex;
        grid-template-columns: 1.4fr 1fr;
        gap: 0;
        align-items: center;
        flex-direction: column;
        position: relative;
        z-index: 1;
        border-radius: 12px;
    }

    .exhibitor__specs {
        flex-direction: column;
    }

    .exhibitor__specs>div {
        flex: 0 0 calc(100%);
        max-width: calc(100%);
        box-sizing: border-box;
    }

    .calendar{
        padding-top: 0;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 0;
        /* el espaciado lo damos con padding en cada step */
        padding-top: 0;
    }

    /* Oculta la línea horizontal superior y la barra de progreso */
    .timeline::before,
    .timeline__bar {
        display: none;
    }

    /* Línea vertical que recorre todos los pasos */
    .timeline {
        position: relative;
    }

    .timeline::after {
        content: '';
        position: absolute;
        top: 11px;
        /* alinea con el centro del primer dot (22px/2) */
        bottom: 11px;
        /* recorta antes del centro del último dot */
        left: 10px;
        /* centro del dot: ver padding-left del step */
        width: 4px;
        background: linear-gradient(to bottom, #FF883C, #8C52FF);
        border-radius: 2px;
        z-index: 0;
    }

    /* Cada paso: contenido a la derecha, dot a la izquierda */
    .timeline__step {
        text-align: left;
        padding: 0 0 32px 40px;
        /* espacio inferior + hueco para dot/línea */
        position: relative;
        z-index: 2;
    }

    .timeline__step:last-child {
        padding-bottom: 0;
    }

    /* Dot reposicionado sobre la línea vertical */
    .timeline__dot {
        position: absolute;
        left: 0;
        top: 2px;
        margin: 0;
        width: 22px;
        height: 22px;
        z-index: 1;
    }

    .timeline__step.current .timeline__dot {
        width: 28px;
        height: 28px;
        left: -3px;
        /* recentra el dot grande sobre la línea */
        top: -1px;
    }

    /* Tag "¡Estás aquí!" deja de estar centrado arriba */
    .timeline__tag {
        position: static;
        transform: none;
        display: inline-block;
        margin-bottom: 6px;
    }

    .timeline__label {
        font-size: 1rem;
    }

    .timeline__date {
        font-size: 0.85rem;
        opacity: 0.85;
    }

    .about-theme {
        background: #000 url(assets/WRO_Baja_California_2026_Fondo_Acerca_de_WRO__Responsive.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .about-theme{
        padding: 150px 0;
    }

    .hero__pixels--left{
        width: 530px;
    height: 254px;
    }
    .hero__pixels--right{
         width: 60px;
    height: 90px;   
    }

    .hero .container{
        max-width: calc(100% - 48px);
        padding: 0;
        margin: 120px 0 60px;
    }
    .hero__left, .hero__right{
        width: 100%;
    }
    .countdown{
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__ctas{
        margin-top: 60px;
        justify-content: space-between;
    }
    .countdown__unit{
        border-width: 2px;
    }
    .countdown__lbl {
        font-size: 1rem;
    }
}

/* Laptop / Desktop pequeño (≥1024px) */
@media (min-width: 1024px) {
    .travel-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        margin-top: 0
    }

    .about-theme {
        background: #000 url(assets/WRO_Baja_California_2026_Fondo_Acerca_de_WRO.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .about-theme {
        padding: 100px 0;
    }

    .about-theme__block--about {
        position: unset;
        width: 570px;
        margin: 0 auto;
        text-align: center;
    }

    .about-theme__block--theme {
        position: unset;
        width: 570px;
        margin: 80px auto 0;
        text-align: center;
    }

    .faq__cta {
        margin-top: 60px;
        padding: 30px;
        display: flex;
        grid-template-columns: 1fr auto;
        gap: 100px;
        align-items: center;
    }

    .faq__cta__details {
        background: #0031FF;
        padding: 30px;
        color: #fff;
        border-radius: 30px;
        text-align: center;
    }

    .faq__cta-btns {
        display: flex;
        gap: 10px;
    }
}

/* Desktop (≥1280px) */
@media (min-width: 1280px) {}

/* Desktop grande (≥1536px) */
@media (min-width: 1536px) {
    .about-theme {
        padding: 0;
    }

    .about-theme__block--about {
        position: absolute;
        top: 150px;
        left: 15%;
        width: 570px;
        margin: unset;
        text-align: left;
    }

    .about-theme__block--theme {
        position: absolute;
        bottom: -50px;
        right: -10%;
        width: 570px;
        margin: unset;
        text-align: left;
    }

    .about-theme__stage {
        min-height: 1080px
    }

    .about-theme {
        color: #fff;
        background: #000 url(assets/wro_baja_california_2026_fondo.svg);
        background-size: contain;
        background-position: top center;
        padding-bottom: 200px;
        background-repeat: no-repeat;
    }
}