/* =========================================
   VARIABLES & ROOT
   ========================================= */
:root {
    /* Primary Colors */
    --orange: #F26522;
    --orange-light: #F8D7BA;
    --orange-dark: #D4571A;
    --blue-dark: #133853;
    --blue-medium: #1E4D6E;
    --blue-light: #E8F0F8;

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F8F9FA;
    --gray-100: #F5F5F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;

    /* Typography */
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);

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

    /* Header Height */
    --header-height: 80px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* =========================================
   CONTAINER
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

.btn--primary:hover {
    background-color: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.4);
}

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

.btn--white:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* =========================================
   HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.header--scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

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

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo-img {
    height: 256px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    color: var(--blue-dark);
}

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

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width var(--transition-base);
}

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

.nav__link:hover::after {
    width: 100%;
}

.header__cta {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.header__menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header__menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--blue-dark);
    transition: all var(--transition-base);
    border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 999;
    display: none;
    padding: var(--space-xl);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
}

.mobile-menu__link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blue-dark);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu__cta {
    margin-top: var(--space-xl);
    width: 100%;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--blue-dark);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(19, 56, 83, 0.92) 0%,
        rgba(19, 56, 83, 0.85) 50%,
        rgba(19, 56, 83, 0.78) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-4xl);
    color: var(--white);
}

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(242, 101, 34, 0.2);
    border: 1px solid rgba(242, 101, 34, 0.4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.hero__title--highlight {
    color: var(--orange);
}

.hero__slogan {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: var(--gray-300);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.hero__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--gray-300);
}

.hero__meta-icon {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

.hero__actions {
    margin-bottom: var(--space-xl);
}

.hero__ponente-mini {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 350px;
}

.hero__ponente-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center 15%;
}

.hero__ponente-avatar svg {
    width: 28px;
    height: 28px;
    color: var(--gray-300);
}

.hero__ponente-info {
    display: flex;
    flex-direction: column;
}

.hero__ponente-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__ponente-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-400);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.hero__scroll-indicator svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =========================================
   SECTIONS (General)
   ========================================= */
.section {
    padding: var(--space-4xl) 0;
}

.section--alt {
    background-color: var(--gray-100);
}

.section--dark {
    background-color: var(--blue-dark);
    color: var(--white);
}

.section--cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    text-align: center;
}

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

.section__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section__label--light {
    color: var(--orange-light);
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--blue-dark);
    margin-bottom: var(--space-md);
}

.section__title--light {
    color: var(--white);
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   EVENTO SECTION
   ========================================= */
.evento__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.evento__lead {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.evento__text p {
    margin-bottom: var(--space-md);
    color: var(--gray-700);
}

.evento__highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.highlight-card__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-light);
    border-radius: var(--radius-md);
}

.highlight-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.highlight-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: var(--space-xs);
}

.highlight-card__text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* =========================================
   PONENTE SECTION
   ========================================= */
.section--ponente {
    background: linear-gradient(180deg, var(--white) 0%, var(--blue-light) 100%);
}

.ponente__card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--space-3xl);
    align-items: center;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

.ponente__image-wrapper {
    position: relative;
}

.ponente__image {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 3/4;
}

.ponente__image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: var(--gray-200);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--gray-500);
}

.ponente__image-placeholder svg {
    width: 64px;
    height: 64px;
}

.ponente__image-placeholder span {
    font-size: 0.875rem;
}

.ponente__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.ponente__credential {
    padding: 0.35rem 0.75rem;
    background-color: var(--blue-light);
    color: var(--blue-dark);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.ponente__bio {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.ponente__stats {
    display: flex;
    gap: var(--space-2xl);
    margin: var(--space-xl) 0;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.ponente__stat {
    display: flex;
    flex-direction: column;
}

.ponente__stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.ponente__stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: var(--space-xs);
}

.ponente__redes {
    display: flex;
    gap: var(--space-md);
}

.ponente__redes-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-600);
    transition: all var(--transition-base);
}

.ponente__redes-link:hover {
    background-color: var(--blue-dark);
    color: var(--white);
}

.ponente__redes-link svg {
    width: 18px;
    height: 18px;
}

/* =========================================
   BENEFICIOS SECTION
   ========================================= */
.beneficios__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.beneficio-card {
    padding: var(--space-2xl);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.beneficio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.beneficio-card:hover::before {
    transform: scaleX(1);
}

.beneficio-card__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.beneficio-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: var(--space-md);
}

.beneficio-card__text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* =========================================
   DETALLES SECTION
   ========================================= */
.detalles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.detalle-card {
    padding: var(--space-2xl);
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.detalle-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.detalle-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(242, 101, 34, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.detalle-card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.detalle-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.detalle-card .btn--primary {
    width: 100%;
    white-space: normal;
    text-align: center;
}

.detalle-card .btn--primary + .detalle-card__text {
    margin-top: var(--space-md);
}

.detalle-card__price {
    margin-bottom: var(--space-md);
}

.detalle-card__price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.detalle-card__price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: var(--space-xs);
}

.detalle-card__text {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.7;
}

.detalle-card__detail {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.detalle-card__detail-label {
    font-weight: 600;
    color: var(--gray-300);
}

.detalle-card__detail-value {
    color: var(--gray-400);
}

.detalle-card__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.detalle-card__list li {
    position: relative;
    padding-left: var(--space-lg);
    font-size: 0.95rem;
    color: var(--gray-300);
}

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

.detalles__cta {
    text-align: center;
}

.detalles__cta-text {
    font-size: 1.125rem;
    color: var(--gray-300);
    margin-bottom: var(--space-lg);
}

/* =========================================
   UBICACION SECTION
   ========================================= */
.ubicacion__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.ubicacion__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.ubicacion__detail {
    display: flex;
    gap: var(--space-md);
}

.ubicacion__detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-light);
    border-radius: var(--radius-md);
}

.ubicacion__detail-icon svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
}

.ubicacion__detail-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: var(--space-xs);
}

.ubicacion__detail-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.ubicacion__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ubicacion__map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.ubicacion__map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--gray-500);
}

.ubicacion__map-placeholder svg {
    width: 48px;
    height: 48px;
}

.ubicacion__map-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
}

.ubicacion__map-placeholder span {
    font-size: 0.875rem;
}

/* =========================================
   ORGANIZADOR SECTION
   ========================================= */
.organizador__content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-3xl);
    align-items: center;
    background-color: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.organizador__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.organizador__logo {
    max-width: 250px;
}

.organizador__logo-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--gray-500);
}

.organizador__logo-placeholder svg {
    width: 48px;
    height: 48px;
}

.organizador__logo-placeholder span {
    font-size: 0.875rem;
}

.organizador__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: var(--space-lg);
}

.organizador__text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.organizador__redes {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.organizador__redes-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    border-radius: 50%;
    color: var(--gray-600);
    transition: all var(--transition-base);
}

.organizador__redes-link:hover {
    background-color: var(--blue-dark);
    color: var(--white);
}

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

/* =========================================
   CTA SECTION
   ========================================= */
.cta__content {
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}

.cta__actions {
    margin-bottom: var(--space-xl);
}

.cta__urgency {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
}

.cta__urgency svg {
    width: 18px;
    height: 18px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

.footer__logo {
    font-size: 1.25rem;
    color: var(--white);
}

.footer__logo strong {
    color: var(--orange);
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: var(--space-sm);
}

.footer__links {
    display: flex;
    gap: var(--space-3xl);
}

.footer__link-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.footer__link {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--orange);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    background-color: var(--orange);
    color: var(--white);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* =========================================
   WHATSAPP FLOATING BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

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

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   RESPONSIVE - Tablet
   ========================================= */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .header__cta {
        display: none;
    }

    .header__menu-btn {
        display: flex;
    }

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

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

    .ponente__image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

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

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

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

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

    .organizador__logo-wrapper {
        order: -1;
    }
}

/* =========================================
   RESPONSIVE - Mobile
   ========================================= */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

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

    .hero__content {
        padding-top: calc(var(--header-height) + var(--space-2xl));
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__meta {
        flex-direction: column;
        gap: var(--space-md);
    }

    .hero__ponente-mini {
        max-width: 100%;
    }

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

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

    .ponente__stats {
        gap: var(--space-lg);
    }

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

    .footer__content {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .footer__links {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .btn--lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero__title {
        font-size: 1.875rem;
    }

    .hero__slogan {
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.75rem;
    }

    .highlight-card {
        padding: var(--space-md);
    }

    .beneficio-card {
        padding: var(--space-lg);
    }

    .detalle-card {
        padding: var(--space-lg);
    }
}
