/* --- ESTILOS GENERALES Y CONTENEDORES --- */
.publicidad-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
    max-width: 950px;
    margin: 0px auto;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.publicidad-banner-link:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.15);
}

.publicidad-banner-link:hover .publicidad-banner {
    border-color: rgba(255, 255, 255, 0.3);
}

.publicidad-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    height: 120px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
    position: relative;
    padding: 0 15px;
}

/* --- ESTILOS IZQUIERDA (50% ANCHO - IMAGEN AIRTM) --- */
.contenedor-banner-izq {
    flex: 1;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
}

.imagen-banner-airtm {
    max-height: 90%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* --- LÍNEA DIVISORA CENTRAL --- */
.banner-linea-divisora {
    width: 2px;
    height: 65px;
    background-color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

/* --- ESTILOS DERECHA (50% ANCHO - TEXTO) --- */
.contenedor-banner-der {
    flex: 1;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
}

.texto-banner-der {
    color: #ffffff;
    font-family: var(--font-airtm-poppins), sans-serif;
    font-size: 1.15rem;
    line-height: 1.35;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-align: left;
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 992px) {
    .publicidad-banner {
        height: 105px;
        padding: 0 10px;
    }
    .banner-linea-divisora {
        height: 55px;
    }
    .texto-banner-der {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .publicidad-banner-wrapper {
        height: 85px;
        overflow: hidden;
    }

    .publicidad-banner {
        height: 85px;
        padding: 0 8px;
        border-radius: 12px;
    }

    .banner-linea-divisora {
        height: 42px;
    }

    .texto-banner-der {
        font-size: 0.75rem;
        line-height: 1.25;
    }

    .contenedor-banner-izq,
    .contenedor-banner-der {
        padding: 2px 8px;
    }
}

@media (max-width: 480px) {
    .publicidad-banner-wrapper {
        height: 75px;
        overflow: hidden;
    }
    .publicidad-banner {
        height: 75px;
        padding: 0 5px;
    }

    .banner-linea-divisora {
        height: 35px;
    }

    .texto-banner-der {
        font-size: 0.64rem;
        line-height: 1.2;
    }

    .contenedor-banner-izq,
    .contenedor-banner-der {
        padding: 2px 4px;
    }
}

.header-span {
    height: 250px !important;
}

@media (max-width: 768px) {
    .header-span {
        height: 150px !important;
    }
}
