/* =============================================
   SECCIÓN BANNER INFO
   ============================================= */
.seccion-banner-info {
    background: #fff;
    padding: 56px 0;
    overflow: hidden;
    position: relative;
}

/* Línea decorativa superior sutil */
.seccion-banner-info::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, #e74c3c 30%, #f39c12 70%, transparent);
}

/* =============================================
   WRAPPER: imagen izquierda + texto derecha
   ============================================= */
.banner-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    animation: fadeInUp 0.7s ease both;
}

/* =============================================
   COLUMNA IMAGEN
   ============================================= */
.banner-imagen-col {
    flex: 0 0 auto;
    width: 50%;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-info-link {
    display: block;
    transition: transform 0.35s ease;
}

.banner-info-link:hover {
    transform: scale(1.03);
}

.banner-info-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;           /* sin borde — la imagen es el arte */
    object-fit: contain;
    filter: drop-shadow(0 12px 36px rgba(0,0,0,0.18));
    transition: filter 0.35s ease;
}

.banner-info-link:hover .banner-info-img {
    filter: drop-shadow(0 18px 48px rgba(0,0,0,0.28));
}

/* =============================================
   COLUMNA TEXTO
   ============================================= */
.banner-info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

/* Título estilo gaming bold igual que la foto */
.banner-titulo {
    font-family: 'Barlow Condensed', 'Oswald', 'Impact', sans-serif;
    font-size: clamp(28px, 3.8vw, 52px);
    font-weight: 900;
    color: #e63a3a;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin: 0;
    /* Contorno negro delgado para el estilo del reference */
    -webkit-text-stroke: 1px rgba(0,0,0,0.08);
}

.banner-descripcion {
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: clamp(15px, 1.4vw, 19px);
    color: #444;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Botón CTA */
.banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e63a3a;
    color: #fff;
    font-family: 'Barlow Condensed', 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 6px;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(230,58,58,0.35);
}

.banner-cta svg {
    width: 18px;
    height: 18px;
}

.banner-cta:hover {
    background: #c0281e;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(230,58,58,0.45);
}

/* =============================================
   ANIMACIÓN
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet: imagen encima, texto abajo */
@media (max-width: 820px) {
    .banner-info-wrapper {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .banner-imagen-col {
        width: 80%;
        max-width: 420px;
    }

    .banner-info-text {
        align-items: center;
    }

    .banner-titulo {
        text-align: center;
    }

    .banner-descripcion {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .seccion-banner-info {
        padding: 36px 0;
    }

    .banner-imagen-col {
        width: 100%;
    }

    .banner-cta {
        font-size: 13px;
        padding: 9px 20px;
    }
}