/* =============================================================
   BANNERS — Licenciaturas, Idiomas y secciones tipo banner
   ============================================================= */

/* ── TEMA OSCURO (default) ── */
.banner {
    background: linear-gradient(135deg, var(--color-ubam-dark-gray) 0%, rgb(8,30,48) 100%);
    padding: 88px 80px;
    position: relative;
    overflow: hidden;
}

.banner .vc-icon { color: var(--color-ubam-white-pure); }

.banner::after {
    content: '';
    position: absolute;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4,178,217,.07) 0%, transparent 68%);
    right: -120px; bottom: -140px;
    pointer-events: none;
}

/* ── LAYOUT ── */
.banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* ── ETIQUETA ── */
.banner-lbl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(4,178,217,.11);
    border: 1px solid rgba(4,178,217,.24);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 11.5px;
    color: var(--color-ubam-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* ── TIPOGRAFÍA ── */
.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--color-ubam-white-pure);
    line-height: 1.1;
    margin-bottom: 18px;
}

.banner-title em { color: var(--color-ubam-blue); font-style: italic; }

.banner-sub {
    color: rgba(255,255,255,.56);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 32px;
    text-align: justify;
}

/* ── TARJETA DE DATOS ── */
.banner-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vc-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
}

.vc-row:first-child { padding-top: 0; }
.vc-row:last-child  { padding-bottom: 0; }

.vc-divider {
    height: 1px;
    background: rgba(255,255,255,.07);
}

.vc-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(4,178,217,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.vc-lbl {
    font-size: 11px;
    color: var(--color-ubam-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.vc-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-ubam-white-pure);
}

/* ── PILLS ── */
.pill-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.banner-pill {
    background: rgba(4,178,217,.14);
    border: 1px solid rgba(4,178,217,.24);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--color-ubam-blue);
    font-weight: 700;
}

/* ── FOTO ── */
.banner-photo-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 240px;
    box-shadow: 0 16px 48px rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.08);
    margin-top: 20px;
}

.banner-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(.75) saturate(1.15);
    transition: transform .5s, filter .4s;
}

.banner-photo-card:hover img {
    transform: scale(1.04);
    filter: brightness(.85) saturate(1.25);
}

/* ── BOTÓN ── */
.btn-banner-llegar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgb(4,178,217), rgb(18,124,166));
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(4,178,217,.38);
    transition: transform .15s, box-shadow .2s;
}

.btn-banner-llegar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(4,178,217,.52);
    color: white;
}

/* ─────────────────────────────────────────────
   TEMA CLARO (banner-white)
   ───────────────────────────────────────────── */

.banner-white {
    background: linear-gradient(135deg, var(--color-ubam-light-gray) 0%, rgb(220,235,245) 100%);
    padding: 88px 80px;
    position: relative;
    overflow: hidden;
}

.banner-white::after {
    content: '';
    position: absolute;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4,178,217,.09) 0%, transparent 68%);
    right: -120px; bottom: -140px;
    pointer-events: none;
}

/* ── ÍCONOS ── */
.banner-white .vc-icon { color: var(--color-ubam-dark-gray); }

/* ── TEXTO ── */
.banner-white .banner-title     { color: var(--color-ubam-dark-gray); }
.banner-white .banner-title em  { color: var(--color-ubam-blue); }
.banner-white .banner-sub       { color: rgba(33,33,33,.6); }

/* ── TARJETA ── */
.banner-white .banner-card {
    background: rgba(255,255,255,.75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(4,178,217,.2);
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.banner-white .vc-divider { background: rgba(0,0,0,.08); }
.banner-white .vc-lbl     { color: rgba(33,33,33,.5); }
.banner-white .vc-val     { color: var(--color-ubam-dark-gray); }

/* ── FOTO ── */
.banner-white .banner-photo-card {
    border: 1px solid rgba(4,178,217,.2);
    box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
