/* ===== BANNER OFERTA ACADEMICA ===== */
/* Agrega este bloque al final de tu archivo css/bolsa-login-prueba116.css */

.banner-academico {
    width: 100%;
    margin: 15px 0 0 0;
    background: linear-gradient(135deg, #3b6fe0, #2947b0);
    border-radius: 15px;
    padding: 18px 25px;
    box-shadow: 0 4px 15px rgba(41, 71, 176, 0.3);
}

.banner-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-icono {
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 26px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.banner-texto {
    flex: 1;
    min-width: 180px;
    color: #fff;
}

.banner-titulo {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 4px 0;
}

.banner-texto span {
    font-size: 12px;
    opacity: 0.9;
}

.banner-btn {
    background-color: #25D366;
    color: #fff;
    padding: 9px 18px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: 0.3s;
}

.banner-btn:hover {
    background-color: #1ebe5d;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 480px) {
    .banner-contenido {
        justify-content: center;
        text-align: center;
    }
    .banner-texto {
        text-align: center;
    }
}