/* css/hero-left.css - Sección izquierda del hero */

/* ===== HERO SECTION BASE ===== */
.hero-section {
    background:
        linear-gradient(135deg, rgba(44, 62, 80, 0.66) 0%, rgba(0, 124, 140, 0.591) 100%),
        url('../assets/img/fondo.png') center/cover no-repeat;
    color: var(--light-color);
    padding: var(--spacing-lg) var(--spacing-2xl);
    display: flex;
    flex-direction: column;
    justify-content: initial;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    width: 100%;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--spacing-xl);
    align-items: start;
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* AJUSTES PARA PANTALLAS GRANDES */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1500px;
        grid-template-columns: 1fr 450px;
        gap: 100px;
    }
}

@media (min-width: 1600px) {
    .hero-container {
        max-width: 1700px;
        grid-template-columns: 1fr 480px;
        gap: 120px;
    }
}

@media (min-width: 1920px) {
    .hero-container {
        max-width: 1900px;
        grid-template-columns: 1fr 500px;
        gap: 140px;
    }
}

/* ===== CONTENIDO IZQUIERDO (TEXTO) ===== */
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

/* ===== TÍTULO PRINCIPAL ===== */
.hero-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    font-weight: 700;
    background: linear-gradient(45deg, #ffffff, #e0f7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* TÍTULOS RESPONSIVOS PARA PANTALLAS GRANDES */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: var(--spacing-xl);
    }
}

@media (min-width: 1600px) {
    .hero-title {
        font-size: 2.6rem;
        margin-bottom: var(--spacing-2xl);
    }
}

@media (min-width: 1920px) {
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: var(--spacing-2xl);
    }
}

/* ===== SUBTÍTULO ===== */
.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--accent-color);
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media (min-width: 1400px) {
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-xl);
    }
}

@media (min-width: 1600px) {
    .hero-subtitle {
        font-size: 1.7rem;
        margin-bottom: var(--spacing-xl);
    }
}

@media (min-width: 1920px) {
    .hero-subtitle {
        font-size: 1.9rem;
        margin-bottom: var(--spacing-xl);
    }
}

/* ===== BOTÓN DE URGENCIA INTERACTIVO ===== */
.urgency-badge {
    background: linear-gradient(135deg, var(--info-color) 0%, var(--primary-color) 100%);
    color: var(--light-color);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-pill);
    font-size: var(--font-size-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-family: inherit;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.urgency-badge:hover::before {
    left: 100%;
}

.urgency-badge:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 30px rgba(23, 162, 184, 0.7);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.urgency-badge:active {
    transform: translateY(-1px) scale(1.05);
}

.urgency-badge:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

.urgency-badge i {
    font-size: var(--font-size-lg);
    color: var(--light-color);
    animation: info-pulse-strong 2s ease-in-out infinite;
}

@keyframes info-pulse-strong {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

@media (min-width: 1400px) {
    .urgency-badge {
        font-size: 1rem;
        padding: var(--spacing-md) var(--spacing-xl);
        margin-bottom: var(--spacing-xl);
    }
}

/* ===== PROPUESTA DE VALOR ===== */
.value-proposition {
    font-size: var(--font-size-base);
    line-height: 1.5;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

@media (min-width: 1400px) {
    .value-proposition {
        font-size: 1.15rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-2xl);
    }
}

@media (min-width: 1600px) {
    .value-proposition {
        font-size: 1.25rem;
        margin-bottom: var(--spacing-3xl);
    }
}

@media (min-width: 1920px) {
    .value-proposition {
        font-size: 1.35rem;
        margin-bottom: var(--spacing-3xl);
    }
}

/* ===== ELEMENTOS DE RESALTADO EN EL TEXTO ===== */
.value-proposition .highlight {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ===== ANIMACIONES ESPECÍFICAS PARA SECCIÓN IZQUIERDA ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ANIMACIONES DE PULSO PARA BOTONES ===== */
.pulse-button {
    animation: pulse-glow-strong 2.5s ease-in-out infinite;
    box-shadow: 0 6px 25px rgba(23, 162, 184, 0.6) !important;
}

@keyframes pulse-glow-strong {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(23, 162, 184, 0.6);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 8px 35px rgba(23, 162, 184, 0.9);
    }
}

/* Pulso específico para botón del header */
.main-header-cta.pulse-button {
    animation: pulse-orange-strong 2.5s ease-in-out infinite;
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.6) !important;
}

@keyframes pulse-orange-strong {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(255, 165, 0, 0.6);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 8px 35px rgba(255, 165, 0, 0.9);
    }
}

/* ===== OCULTAR ELEMENTOS NO UTILIZADOS ===== */
.hero-cta-section {
    display: none;
}

.main-cta {
    display: none;
}

.hero-content .event-info-grid {
    display: none;
}