/* ==========================================================================
   Nerdearla 2025 - Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
    /* Nerdearla Brand Colors */
    --color-amarillo: #FFBA00;
    --color-verde: #00ACA8;
    --color-rojo: #FF323C;
    --color-negro: #000000;

    /* Colors */
    --color-bg: #000000;
    --color-bg-alt: #0a0a0a;
    --color-bg-card: #111111;
    --color-surface: #1a1a1a;

    --color-text: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #707070;

    --color-primary: var(--color-rojo);
    --color-primary-light: #FF5A62;
    --color-secondary: var(--color-verde);

    --color-accent-pink: var(--color-rojo);
    --color-accent-orange: var(--color-amarillo);
    --color-accent-green: var(--color-verde);
    --color-accent-blue: var(--color-verde);
    --color-accent-yellow: var(--color-amarillo);
    --color-accent-red: var(--color-rojo);
    --color-accent-teal: var(--color-verde);

    /* Gradients - Using Nerdearla brand colors */
    --gradient-primary: linear-gradient(135deg, var(--color-rojo) 0%, var(--color-amarillo) 50%, var(--color-verde) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(255, 50, 60, 0.15) 0%, transparent 50%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);

    /* Typography - Nerdearla Brand */
    --font-display: 'Rift Soft', 'Arial Black', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(255, 50, 60, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
    list-style: none;
}

button,
input {
    font-family: inherit;
    font-size: inherit;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

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

.section {
    padding: var(--space-20) 0;
}

.section--dark {
    background-color: var(--color-bg-alt);
}

.section--alt {
    background-color: var(--color-bg-card);
}

.section--light {
    background-color: #f5f5f5;
}

.section--light .section__tag,
.section--light .section__title {
    color: var(--color-negro);
}

.section--cta {
    background: var(--gradient-hero);
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section__header--left {
    text-align: left;
}

.section__tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary-light);
    margin-bottom: var(--space-4);
}

.section__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

.section__description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-weight: 600;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-rojo);
    color: white;
    border-color: var(--color-rojo);
}

.btn--primary:hover {
    background: #E62D36;
    border-color: #E62D36;
    transform: translateY(-2px);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text-muted);
}

.btn--outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 52px;
    width: auto;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

/* Full logo visible by default, short logo hidden */
.nav__logo-img--full {
    display: block;
}

.nav__logo-img--short {
    display: none;
}

/* When scrolled, swap logos */
.header.scrolled .nav__logo-img--full {
    display: none;
}

.header.scrolled .nav__logo-img--short {
    display: block;
}

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

.text-highlight {
    color: var(--color-amarillo);
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    background: none;
    border: none;
    cursor: pointer;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav__menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: var(--space-6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    gap: var(--space-4);
}

.nav__menu.active {
    display: flex;
}

.nav__link {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: var(--space-2) 0;
    transition: color var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-text);
}

.nav__cta {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    padding: var(--space-3) var(--space-5);
    background: var(--color-rojo);
    border-radius: var(--radius-lg);
    color: white;
    transition: all var(--transition-base);
}

.nav__cta:hover {
    background: #E62D36;
    transform: translateY(-2px);
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    .nav__toggle {
        display: none;
    }

    .nav__menu {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-8);
        padding: 0;
        background: transparent;
        border: none;
    }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 8vh);
    padding-bottom: 260px;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__video {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(2px);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: var(--space-8) var(--space-6);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25em;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-2) var(--space-5);
    color: #ffffff;
    background: rgba(255, 50, 60, 0.2);
    border: 1px solid rgba(255, 50, 60, 0.4);
    border-radius: var(--radius-full);
    box-shadow: 0 0 20px rgba(255, 50, 60, 0.15);
    margin-bottom: var(--space-8);
    transition: all var(--transition-base);
    letter-spacing: 0.05em;
}

.hero__badge:hover {
    background: rgba(255, 50, 60, 0.3);
    border-color: var(--color-rojo);
    transform: translateY(-2px);
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.05;
    /* More compressed for premium feel */
    margin-bottom: var(--space-8);
    /* Increased spacing */
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}

.hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-12);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    max-width: 700px;
    margin: 0 auto;
    padding-top: var(--space-12);
    position: relative;
}

.stat {
    text-align: center;
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-amarillo);
    /* Use yellow for numbers for better contrast */
    line-height: 1;
    margin-bottom: var(--space-1);
    transition: transform var(--transition-base);
}

.stat:hover .stat__number {
    transform: scale(1.1);
}

.stat__label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    margin-left: -3px;
    background: var(--color-primary-light);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Hero Responsive */
@media (min-width: 640px) {
    .hero__title {
        font-size: var(--text-5xl);
    }

    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: var(--text-6xl);
    }

    .stat__number {
        font-size: var(--text-4xl);
    }
}

/* --------------------------------------------------------------------------
   Events Section (unified with stats)
   -------------------------------------------------------------------------- */
.events {
    background: var(--color-bg-alt);
    padding: var(--space-12) 0;
}

/* Stats Strip */
.events__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-10);
    padding-top: var(--space-8);
}

.events__stat {
    text-align: center;
}

.events__stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-amarillo);
    line-height: 1;
}

.events__stat-plus {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-primary-light);
}

.events__stat-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: var(--space-1);
}

/* Event Cards Grid */
.events__grid {
    display: grid;
    gap: var(--space-4);
}

.event-card {
    position: relative;
    display: block;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 220px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.event-card:hover {
    border-color: var(--color-rojo);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 50, 60, 0.15);
}

.event-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover .event-card__image {
    transform: scale(1.08);
}

.event-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
}

.event-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    z-index: 2;
}

.event-card__badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: var(--space-1) var(--space-3);
    background: var(--color-rojo);
    color: white;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-2);
}

.event-card__city {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.event-card__date {
    font-size: var(--text-sm);
    color: var(--color-amarillo);
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.event-card__arrow {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    transition: all var(--transition-fast);
}

.event-card:hover .event-card__arrow {
    background: var(--color-rojo);
    transform: translate(2px, -2px);
}

/* Featured Card */
.event-card--featured {
    border-color: var(--color-rojo);
}

@media (min-width: 768px) {
    .events__stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .events__stat-number {
        font-size: var(--text-5xl);
    }

    .events__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-card {
        min-height: 280px;
    }

    .event-card--featured {
        grid-column: span 2;
        min-height: 320px;
    }

    .event-card--featured .event-card__city {
        font-size: var(--text-2xl);
    }
}

@media (min-width: 1024px) {
    .events__stat-number {
        font-size: var(--text-5xl);
    }

    .events__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
    }

    .event-card {
        min-height: 240px;
    }

    .event-card--featured {
        grid-column: 1;
        grid-row: 1 / 3;
        min-height: 100%;
    }

    .event-card--featured .event-card__city {
        font-size: var(--text-3xl);
    }

    .event-card:last-child {
        grid-column: 2 / 4;
    }
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about__grid {
    display: grid;
    gap: var(--space-12);
}

.about__content {
    max-width: 600px;
}

.about__text {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

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

.about__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.feature {
    display: flex;
    gap: var(--space-4);
}

.feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 50, 60, 0.15);
    border-radius: var(--radius-lg);
    color: var(--color-primary-light);
}

.feature__icon svg {
    width: 24px;
    height: 24px;
}

.feature__content h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.feature__content p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.about__visual {
    display: none;
}

.about__image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.about__image {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    min-height: 200px;
}

.about__image--1 {
    grid-column: span 2;
    min-height: 250px;
    background: url('../images/stage-en-vivo.jpg') center/cover no-repeat;
}

.about__image--2 {
    background: url('../images/keynote-vogels.jpg') center/cover no-repeat;
}

.about__image--3 {
    background: url('../images/crowd-venue.jpg') center/cover no-repeat;
}

@media (min-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .about__visual {
        display: block;
    }
}

/* --------------------------------------------------------------------------
   Speakers Section
   -------------------------------------------------------------------------- */
.speakers__grid {
    display: grid;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.speaker-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.speaker-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 50, 60, 0.3);
    box-shadow: var(--shadow-lg);
}

.speaker-card__image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-alt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-card__placeholder {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-text-muted);
}

.speaker-collage {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.speaker-collage__item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.speaker-collage__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.speaker-collage__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-4xl);
    font-weight: 700;
    font-family: var(--font-display);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    pointer-events: none;
}

.speaker-card:hover .speaker-collage__img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.1);
}

.speaker-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.speaker-card__content {
    padding: var(--space-6);
}

.speaker-card__badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--space-1) var(--space-2);
    background: rgba(255, 50, 60, 0.2);
    color: var(--color-primary-light);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-3);
}

.speaker-card__badge--secondary {
    background: rgba(255, 186, 0, 0.15);
    color: var(--color-amarillo);
}

.speaker-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.speaker-card__role {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.speaker-card__bio {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.speaker-card--featured {
    background: linear-gradient(135deg, rgba(255, 50, 60, 0.1) 0%, rgba(255, 186, 0, 0.1) 100%);
    border-color: rgba(255, 50, 60, 0.2);
}

.speakers__cta {
    text-align: center;
}

@media (min-width: 768px) {
    .speakers__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .speaker-card--featured {
        grid-column: span 1;
    }
}

/* --------------------------------------------------------------------------
   Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials__carousel {
    position: relative;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(100% - var(--space-2) * 2);
    padding: var(--space-8);
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    margin: 0 var(--space-2);
    box-sizing: border-box;
    overflow: hidden;
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    font-style: normal;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: var(--space-6);
    position: relative;
    overflow-wrap: break-word;
}

.testimonial-card__quote::before,
.testimonial-card__quote::after {
    font-size: 4rem;
    color: var(--color-amarillo);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card__quote::before {
    content: '\201C';
    display: block;
    margin-bottom: -1.5rem;
}

.testimonial-card__quote::after {
    content: '\201D';
    display: block;
    text-align: right;
    margin-top: -1.5rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-rojo) 0%, var(--color-amarillo) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--text-lg);
    color: white;
}

.testimonial-card__info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--color-text);
}

.testimonial-card__role {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.testimonials__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.testimonials__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-surface);
    background: transparent;
    color: var(--color-text);
    font-size: var(--text-xl);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonials__btn:hover {
    border-color: var(--color-rojo);
    color: var(--color-rojo);
}

.testimonials__dots {
    display: flex;
    gap: var(--space-2);
}

.testimonials__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-surface);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonials__dot.active,
.testimonials__dot:hover {
    background: var(--color-rojo);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-2) * 2);
    }

    .testimonial-card__quote {
        font-size: var(--text-2xl);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - var(--space-4) * 2);
        margin: 0 var(--space-4);
    }
}

/* --------------------------------------------------------------------------
   Tracks Section
   -------------------------------------------------------------------------- */
.tracks__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.track-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

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

.track-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
}

.track-card__icon svg {
    width: 24px;
    height: 24px;
}

.track-card[data-color="blue"] .track-card__icon {
    background: rgba(59, 130, 246, 0.15);
    color: var(--color-accent-blue);
}

.track-card[data-color="purple"] .track-card__icon {
    background: rgba(255, 50, 60, 0.15);
    color: var(--color-primary);
}

.track-card[data-color="pink"] .track-card__icon {
    background: rgba(255, 186, 0, 0.15);
    color: var(--color-accent-pink);
}

.track-card[data-color="red"] .track-card__icon {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-accent-red);
}

.track-card[data-color="green"] .track-card__icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-accent-green);
}

.track-card[data-color="orange"] .track-card__icon {
    background: rgba(249, 115, 22, 0.15);
    color: var(--color-accent-orange);
}

.track-card[data-color="teal"] .track-card__icon {
    background: rgba(20, 184, 166, 0.15);
    color: var(--color-accent-teal);
}

.track-card[data-color="yellow"] .track-card__icon {
    background: rgba(234, 179, 8, 0.15);
    color: var(--color-accent-yellow);
}

.track-card[data-color="indigo"] .track-card__icon {
    background: rgba(79, 70, 229, 0.15);
    color: #818cf8;
}

.track-card[data-color="emerald"] .track-card__icon {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.track-card[data-color="cyan"] .track-card__icon {
    background: rgba(6, 182, 212, 0.15);
    color: #22d3ee;
}

.track-card[data-color="rose"] .track-card__icon {
    background: rgba(244, 63, 94, 0.15);
    color: #fb7185;
}

.track-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.track-card__description {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.tracks__more {
    text-align: center;
    margin-top: var(--space-8);
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

@media (min-width: 768px) {
    .tracks__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Agenda Section
   -------------------------------------------------------------------------- */
.agenda__timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 700px;
    margin: 0 auto var(--space-8);
}

.agenda__day {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-6);
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.agenda__day:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.agenda__day--highlight {
    background: linear-gradient(135deg, rgba(255, 50, 60, 0.1) 0%, rgba(255, 186, 0, 0.05) 100%);
    border-color: rgba(255, 50, 60, 0.2);
}

.agenda__date {
    flex-shrink: 0;
    text-align: center;
    min-width: 60px;
}

.agenda__day-name {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.agenda__day-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-text);
}

.agenda__info h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.agenda__info p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.agenda__badge {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-2);
}

.agenda__badge--virtual {
    background: rgba(0, 172, 168, 0.15);
    color: var(--color-secondary);
}

.agenda__badge--hybrid {
    background: rgba(255, 50, 60, 0.15);
    color: var(--color-primary-light);
}

.agenda__cta {
    text-align: center;
}

/* --------------------------------------------------------------------------
   Sponsors Section
   -------------------------------------------------------------------------- */
.sponsors__value {
    margin-bottom: var(--space-16);
}

.sponsors__value-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-8);
}

.sponsors__benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.benefit-card {
    background: var(--color-bg);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card__number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-verde);
    margin-bottom: var(--space-2);
}

.benefit-card__title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.benefit-card__description {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.sponsors__tiers {
    margin-bottom: var(--space-16);
}

.sponsors__tiers-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-8);
}

.sponsors__tiers-grid {
    display: grid;
    gap: var(--space-6);
}

.tier-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-card__header {
    padding: var(--space-4) var(--space-6);
    text-align: center;
}

.tier-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
}

.tier-card--platinum .tier-card__header {
    background: linear-gradient(135deg, #e5e4e2 0%, #a3a3a3 100%);
    color: #1a1a1a;
}

.tier-card--gold .tier-card__header {
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    color: #1a1a1a;
}

.tier-card--silver .tier-card__header {
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
    color: #1a1a1a;
}

.tier-card__benefits {
    padding: var(--space-6);
}

.tier-card__benefits li {
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    position: relative;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.tier-card__benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ACA8' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.sponsors__current {
    margin-bottom: var(--space-12);
}

.sponsors__current-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    text-align: center;
    margin-bottom: var(--space-10);
}

.section--light .sponsors__current-title {
    color: var(--color-negro);
}

.sponsors__tier {
    margin-bottom: var(--space-8);
}

.sponsors__tier-label {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: var(--space-4);
}

.section--light .sponsors__tier-label {
    color: #666;
}

.sponsors__logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
}

.sponsor-logo {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    width: 120px;
    /* Default width */
    height: 60px;
    /* Default height */
    object-fit: contain;
}

.sponsor-logo:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.section--light .sponsor-logo {
    background: transparent;
    border: none;
    padding: var(--space-2);
}

.section--light .sponsor-logo:hover {
    border: none;
    box-shadow: none;
    transform: scale(1.08);
}

/* Adamantium - Largest */
.sponsors__logos--adamantium .sponsor-logo {
    width: 240px;
    height: 100px;
    padding: var(--space-6);
}

/* Diamond */
.sponsors__logos--diamond .sponsor-logo {
    width: 180px;
    height: 80px;
    padding: var(--space-5);
}

/* Platinum */
.sponsors__logos--platinum .sponsor-logo {
    width: 140px;
    height: 60px;
    padding: var(--space-4);
}

/* Gold */
.sponsors__logos--gold .sponsor-logo {
    width: 120px;
    height: 50px;
    padding: var(--space-4);
}

/* Silver */
.sponsors__logos--silver .sponsor-logo {
    width: 100px;
    height: 40px;
    padding: var(--space-3);
}

/* Bronze - Smallest */
.sponsors__logos--bronze .sponsor-logo {
    width: 80px;
    height: 30px;
    padding: var(--space-3);
}

@media (min-width: 768px) {
    .sponsors__logos--adamantium .sponsor-logo {
        width: 320px;
        height: 120px;
    }

    .sponsors__logos--diamond .sponsor-logo {
        width: 240px;
        height: 100px;
    }

    .sponsors__logos--platinum .sponsor-logo {
        width: 180px;
        height: 80px;
    }

    .sponsors__logos--gold .sponsor-logo {
        width: 160px;
        height: 70px;
    }

    .sponsors__logos--silver .sponsor-logo {
        width: 140px;
        height: 60px;
    }

    .sponsors__logos--bronze .sponsor-logo {
        width: 120px;
        height: 50px;
    }
}

.sponsors__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

@media (min-width: 768px) {
    .sponsors__benefits {
        grid-template-columns: repeat(4, 1fr);
    }

    .sponsors__tiers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sponsors__logos {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Location Section
   -------------------------------------------------------------------------- */
.location__tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.location__tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.location__tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.location__tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.location__tab-flag {
    font-size: 1.25rem;
}

.location__map-iframe {
    border: 0;
    border-radius: var(--radius-xl);
}

/* Fade transition for location tab switching */
.location__content,
.location__map iframe {
    transition: opacity 0.3s ease;
}

.location__grid.fading .location__content,
.location__grid.fading .location__map iframe {
    opacity: 0.5;
}

.location__grid {
    display: grid;
    gap: var(--space-8);
}

.location__content {
    max-width: 500px;
}

.location__address {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.location__description {
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
}

.location__details {
    margin-bottom: var(--space-6);
}

.location__detail {
    padding: var(--space-2) 0;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

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

.location__map {
    min-height: 300px;
}

.location__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: var(--text-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 1024px) {
    .location__grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .location__map {
        height: 100%;
    }
}

/* --------------------------------------------------------------------------
   Register Section
   -------------------------------------------------------------------------- */
.register__content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.register__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.register__description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
}

.register__form {
    margin-bottom: var(--space-8);
}

.register__inputs {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.register__input {
    padding: var(--space-4) var(--space-6);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.register__input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 50, 60, 0.2);
}

.register__input::placeholder {
    color: var(--color-text-muted);
}

.register__note {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-top: var(--space-4);
}

.register__social p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
}

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

@media (min-width: 640px) {
    .register__inputs {
        flex-direction: row;
    }

    .register__input {
        flex: 1;
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-bg-alt);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__grid {
    display: grid;
    gap: var(--space-12);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-rojo);
    display: block;
    margin-left: -6px;
}

.footer__logo-img {
    height: 48px;
    width: auto;
}

.footer__tagline {
    color: var(--color-text-muted);
    margin-top: var(--space-2);
    margin-bottom: var(--space-4);
}

.footer__copyright {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.footer__lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.footer__lang-option {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background-color var(--transition-fast);
    cursor: pointer;
}

.footer__lang-option:hover {
    color: var(--color-text);
}

.footer__lang-option--active {
    color: var(--color-text);
    background-color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.footer__lang-separator {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    user-select: none;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.footer__column h4 {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.footer__column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer__column a {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer__column a:hover {
    color: var(--color-text);
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 2fr;
    }

    .footer__links {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial hidden state for scroll-triggered animations */
.scroll-animate-init {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animations */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

.stagger-5 {
    animation-delay: 0.5s;
}

/* Particle animation */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(var(--particle-tx), var(--particle-ty)) scale(1.2);
        opacity: 1;
    }
}

.particle {
    position: absolute;
    width: var(--particle-size);
    height: var(--particle-size);
    background: rgba(255, 50, 60, var(--particle-alpha));
    border-radius: 50%;
    left: var(--particle-x);
    top: var(--particle-y);
    animation: float var(--particle-duration) ease-in-out var(--particle-delay) infinite;
}

/* Lightbox open state - prevents body scroll */
.lightbox-open {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    /* Exclude marquee from global animation removal as it's slow ambient motion */
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee-content {
        animation-duration: 120s !important;
        animation-iteration-count: infinite !important;
    }
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Sponsors Page Styles
   ========================================================================== */

/* Header solid variant for internal pages */
.header--solid {
    background: var(--color-bg);
}

/* Sponsors Hero */
.sponsors-hero {
    padding: calc(var(--space-20) + 80px) 0 var(--space-16);
    background: linear-gradient(180deg, rgba(255, 50, 60, 0.1) 0%, transparent 100%);
}

.sponsors-hero__content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.sponsors-hero__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.sponsors-hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sponsors-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

@media (min-width: 768px) {
    .sponsors-hero__title {
        font-size: var(--text-5xl);
    }
}

/* Why Sponsor Section */
.why-sponsor__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .why-sponsor__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .why-sponsor__grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Value Proposition Section */
.value-prop__grid {
    display: grid;
    gap: var(--space-12);
}

.value-prop__content {
    height: 100%;
}

.value-prop__list {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    gap: var(--space-4);
    height: 100%;
    margin: 0;
}

.value-prop__list li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-1);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--color-verde);
}

.value-prop__list li strong {
    font-family: var(--font-display);
    font-size: var(--text-base);
    color: var(--color-text);
}

.value-prop__list li span {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.value-prop__stats {
    display: grid;
    gap: var(--space-4);
}

.value-prop__stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: var(--space-8);
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-prop__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-amarillo);
    margin-bottom: var(--space-2);
}

.value-prop__stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .value-prop__grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .value-prop__stats {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: var(--space-4);
    }
}

/* Packages Section */
.packages__grid {
    display: grid;
    gap: var(--space-4);
}

.tier-card {
    position: relative;
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

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

.tier-card--featured {
    border-color: var(--color-rojo);
    background: linear-gradient(135deg, rgba(255, 50, 60, 0.1) 0%, transparent 100%);
}

.tier-card--premium {
    border-color: var(--color-amarillo);
    background: linear-gradient(135deg, rgba(255, 186, 0, 0.1) 0%, transparent 100%);
}

.tier-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    padding: var(--space-1) var(--space-3);
    background: var(--color-rojo);
    color: white;
    border-radius: var(--radius-full);
}

.tier-card--premium .tier-card__badge {
    background: var(--color-amarillo);
    color: var(--color-negro);
}

.tier-card__header {
    text-align: center;
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.tier-card__price {
    font-size: var(--text-sm);
    color: var(--color-verde);
    font-weight: 500;
}

.tier-card__benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.tier-card__benefits li {
    position: relative;
    padding-left: var(--space-6);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.tier-card__benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ACA8' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

@media (min-width: 640px) {
    .packages__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .packages__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Contact Section */
.contact__grid {
    display: grid;
    gap: var(--space-12);
}

.contact__description {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.contact__detail {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.contact__detail strong {
    color: var(--color-text);
    margin-right: var(--space-2);
}

.contact__detail a {
    color: var(--color-verde);
}

.contact__detail a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.contact-form__row {
    display: grid;
    gap: var(--space-4);
}

.contact-form__field {
    margin-bottom: var(--space-4);
}

.contact-form__field label {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    font-size: var(--text-base);
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 50, 60, 0.2);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form__field textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form__checkboxes {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    background: var(--color-bg-card);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
    background: var(--color-verde);
    border-color: var(--color-verde);
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/contain no-repeat;
}

.checkbox-label input[type="checkbox"]:focus+.checkbox-custom {
    box-shadow: 0 0 0 3px rgba(0, 172, 168, 0.3);
}

.contact-form__submit {
    width: 100%;
    margin-top: var(--space-4);
}

@media (min-width: 640px) {
    .contact-form__row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* Active nav link */
.nav__link.active {
    color: var(--color-primary-light);
}

/* Horizontal Timeline */
.htimeline {
    position: relative;
    padding: var(--space-20) 0 var(--space-8);
    max-width: 1000px;
    margin: 0 auto;
}

.htimeline__line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-verde) 0%, var(--color-amarillo) 50%, var(--color-rojo) 100%);
    border-radius: 2px;
    transform: translateY(-50%);
}

.htimeline__months {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.htimeline__months span {
    font-family: var(--font-display);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: var(--space-2) var(--space-1);
    text-align: center;
    flex: 1;
}

.htimeline__months span::before {
    content: '';
    display: block;
    width: 2px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto var(--space-2);
}

.htimeline__month--event {
    color: var(--color-text) !important;
}

.htimeline__month--2027 {
    color: var(--color-amarillo) !important;
}

.htimeline__events {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.htimeline__event {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.htimeline__marker {
    width: 20px;
    height: 20px;
    background: var(--color-verde);
    border: 4px solid var(--color-bg);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--color-verde);
    margin: 0 auto;
}

.htimeline__marker--tbd {
    background: var(--color-amarillo);
    box-shadow: 0 0 0 4px var(--color-amarillo);
}

.htimeline__card {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    text-align: center;
    white-space: nowrap;
    min-width: 100px;
}

.htimeline__card::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--color-bg-card);
}

.htimeline__card--bottom {
    bottom: auto;
    top: calc(100% + 16px);
}

.htimeline__card--bottom::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: var(--color-bg-card);
}

.htimeline__flag {
    display: block;
    font-size: 1.5rem;
    margin-bottom: var(--space-1);
}

.htimeline__city {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-text);
}

.htimeline__date {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-1);
}

@media (max-width: 768px) {
    .htimeline {
        padding: var(--space-24) 0 var(--space-12);
    }

    .htimeline__months span {
        font-size: 0.6rem;
        padding: var(--space-1) 0;
    }

    .htimeline__card {
        padding: var(--space-2) var(--space-3);
        min-width: 80px;
    }

    .htimeline__flag {
        font-size: 1.2rem;
    }

    .htimeline__city {
        font-size: var(--text-xs);
    }

    .htimeline__date {
        font-size: 0.6rem;
    }

    .htimeline__marker {
        width: 16px;
        height: 16px;
        border-width: 3px;
        box-shadow: 0 0 0 3px var(--color-verde);
    }

    .htimeline__marker--tbd {
        box-shadow: 0 0 0 3px var(--color-amarillo);
    }
}

/* Video Section */
.video-section__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-section__player {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-section__player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
}

/* Photo Gallery */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 4/3;
    z-index: 1;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.gallery__item:hover::after {
    opacity: 1;
}

@media (min-width: 640px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    line-height: 1;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-full);
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox__prev {
    left: var(--space-4);
}

.lightbox__next {
    right: var(--space-4);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox__counter {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-full);
}

@media (min-width: 768px) {
    .lightbox__prev {
        left: var(--space-8);
    }

    .lightbox__next {
        right: var(--space-8);
    }

    .lightbox__close {
        top: var(--space-6);
        right: var(--space-6);
    }
}

/* ==========================================================================
   Speakers Page Styles
   ========================================================================== */

/* Speakers Hero */
.speakers-hero {
    position: relative;
    padding: calc(var(--space-16) + 80px) 0 var(--space-16);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.speakers-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.speakers-hero>.container {
    position: relative;
    z-index: 2;
}

.speakers-hero__content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.speakers-hero__title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-8);
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.speakers-hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: var(--space-12);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.speakers-hero__stats {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
    flex-wrap: wrap;
    padding-top: var(--space-10);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.speakers-hero__stat {
    text-align: center;
}

.speakers-hero__stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-amarillo);
    margin-bottom: var(--space-2);
}

.speakers-hero__stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

@media (min-width: 768px) {
    .speakers-hero__title {
        font-size: var(--text-5xl);
    }

    .speakers-hero__stat-number {
        font-size: var(--text-4xl);
    }
}

/* Featured Speakers */
.featured-speakers__grid {
    display: grid;
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .featured-speakers__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .featured-speakers__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Speaker Cards */
.speaker-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

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

.speaker-card--featured {
    display: flex;
}

.speaker-card--featured .speaker-card__image {
    aspect-ratio: 16/9;
    width: 100%;
}

.speaker-card__image {
    aspect-ratio: 1;
    overflow: hidden;
}

.speaker-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-base);
}

.speaker-card:hover .speaker-card__image img {
    transform: scale(1.05);
}

.speaker-card__content {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.speaker-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.speaker-card__role {
    font-size: var(--text-sm);
    color: var(--color-verde);
    margin-bottom: var(--space-1);
}

.speaker-card__company {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-4);
}

.speaker-card__bio {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.speaker-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: auto;
}

.speaker-card__tag {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-2);
    background: rgba(255, 186, 0, 0.15);
    color: var(--color-amarillo);
    border-radius: var(--radius-sm);
}

/* Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .speakers-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.speakers-grid .speaker-card__content {
    padding: var(--space-4);
}

.speakers-grid .speaker-card__name {
    font-size: var(--text-base);
}

.speakers-grid .speaker-card__role,
.speakers-grid .speaker-card__company {
    font-size: var(--text-xs);
}

/* Speakers CTA */
.speakers-cta {
    text-align: center;
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.speakers-cta__text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

/* Call for Speakers Section */
.cfp__grid {
    display: grid;
    gap: var(--space-12);
}

@media (min-width: 768px) {
    .cfp__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.cfp__description {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
}

.cfp__list {
    margin-bottom: var(--space-6);
}

.cfp__list li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    color: var(--color-text-secondary);
}

.cfp__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--color-verde);
    border-radius: 50%;
}

.cfp__topics {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.cfp__topics-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.cfp__topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.cfp__topic {
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
    background: var(--color-bg-card);
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --------------------------------------------------------------------------
   Hero Marquee (Infinite Scroller)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Hero Marquee (Infinite Scroller)
   -------------------------------------------------------------------------- */
.hero__marquee {
    position: absolute;
    bottom: 70px;
    z-index: 2;
    width: 100%;
    padding: var(--space-4) 0;
    pointer-events: auto;
    /* Allow hover */
    /* Removed background/mask to show video cleanly */
}

.marquee-scroller {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    /* Edge fade effect for a more premium look */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-row {
    display: flex;
    width: 100%;
    overflow: hidden;
    user-select: none;
}

/* Ensure container is wide enough to scroll */
.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: var(--space-12);
    padding-right: var(--space-12);
    min-width: 100%;
    /* Ensure hardware acceleration context */
    transform: translateZ(0);
}

.marquee-content img {
    height: 40px;
    /* Fixed height for visual consistency */
    width: 120px;
    /* Fixed width for visual consistency */
    object-fit: contain;
    /* Make logos white/monochrome for dark background */
    filter: brightness(0) invert(1) opacity(0.6);
    transition: all var(--transition-base);
}

.marquee-row:hover .marquee-content img {
    filter: brightness(0) invert(1) opacity(0.4);
}

.marquee-content img:hover {
    filter: none;
    /* Reveal original color */
    opacity: 1;
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .marquee-content img {
        height: 50px;
        width: 160px;
    }

    .hero__marquee {
        bottom: 80px;
    }
}

/* Animations - Ensure smooth infinite loop */
/* Using specific names to avoid conflicts and cache issues */
.marquee-left .marquee-content {
    -webkit-animation: marquee-scroll-left 120s linear infinite;
    animation: marquee-scroll-left 120s linear infinite;
    will-change: transform;
}

.marquee-right .marquee-content {
    -webkit-animation: marquee-scroll-right 120s linear infinite;
    animation: marquee-scroll-right 120s linear infinite;
    will-change: transform;
}

/* Pause on hover if desired (optional, currently disabled to ensure persistent movement) */
/* .marquee-row:hover .marquee-content { animation-play-state: paused; } */

@-webkit-keyframes marquee-scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes marquee-scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

@-webkit-keyframes marquee-scroll-right {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes marquee-scroll-right {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* --------------------------------------------------------------------------
   Form Messages
   -------------------------------------------------------------------------- */
.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
}

.form-message--success {
    background: rgba(0, 172, 168, 0.15);
    color: var(--color-verde);
}

.form-message--error {
    background: rgba(255, 50, 60, 0.15);
    color: var(--color-rojo);
}