/* ============================================================
   HOME PÚBLICA SABA - Selector de parkings + promo P-app
   Estilos AISLADOS bajo .home-saba / .home-saba-header.
   No afecta a ninguna otra página.
   ============================================================ */

:root {
    --saba-teal: #00A79D;
    --saba-teal-dark: #007E77;
    --saba-mint: #CBEDEA;
    --saba-orange: #FF6600;
    --saba-red: #ED1C24;
    --saba-title: #12A79C;
    --saba-grey: #5A5A5A;
    --saba-yellow: #FFD200;
}

/* ---------- Cabecera ---------- */
.home-saba-header {
    background-color: var(--saba-teal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    min-height: 60px;
}

.home-saba-header__logo img {
    height: 34px;
    width: auto;
    display: block;
}

.home-saba-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.home-saba-header__actions a,
.home-saba-header__actions button {
    color: #fff;
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
}

/* Botón B2B / Acceso empresas en la cabecera */
.home-saba-header__actions .home-saba-header__b2b {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid #fff;
    border-radius: 20px;
    padding: 6px 13px;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    transition: background-color .15s ease, color .15s ease;
}

    .home-saba-header__actions .home-saba-header__b2b i {
        font-size: .9rem;
    }

    .home-saba-header__actions .home-saba-header__b2b:hover,
    .home-saba-header__actions .home-saba-header__b2b:focus {
        background-color: #fff;
        color: var(--saba-teal);
    }

@media (max-width: 480px) {
    /* En móvil dejamos solo el icono para no saturar la cabecera */
    .home-saba-header__b2b-label {
        display: none;
    }

    .home-saba-header__actions .home-saba-header__b2b {
        padding: 7px 10px;
    }
}

/* ---------- Lienzo general ---------- */
.home-saba {
    background-color: var(--saba-mint);
    min-height: calc(100vh - 60px);
    padding: 24px 16px 0;
    font-family: 'Roboto', Arial, sans-serif;
}

.home-saba__inner {
    max-width: 820px;
    margin: 0 auto;
}

/* ---------- Título ---------- */
.home-saba__title {
    text-align: center;
    color: var(--saba-title);
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1.15;
    margin: 6px 0 22px;
}

/* ---------- Tarjeta de búsqueda ---------- */
.home-saba__search-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    padding: 22px;
    max-width: 100%;
    margin: 0 auto 40px;
}

.home-saba__field {
    position: relative;
    margin-bottom: 14px;
}

.home-saba__field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--saba-grey);
    font-size: 1.15rem;
    pointer-events: none;
    z-index: 2;
}

/* Etiqueta fija arriba (Aparcamiento / Producto) */
.home-saba__field-label {
    position: absolute;
    left: 48px;
    top: 11px;
    font-size: .72rem;
    font-weight: 700;
    color: #333;
    pointer-events: none;
    z-index: 2;
}

.home-saba__field .home-saba__chevron {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--saba-grey);
    font-size: .9rem;
    pointer-events: none;
    z-index: 2;
}

.home-saba__select {
    width: 100%;
    height: 66px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    background: #fff;
    /* espacio arriba para la etiqueta, valor pegado abajo */
    padding: 30px 40px 8px 48px;
    font-size: .95rem;
    font-weight: 600;
    color: #222;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.home-saba__select:focus {
    outline: none;
    border-color: var(--saba-teal);
    box-shadow: 0 0 0 2px rgba(0, 167, 157, .2);
}

/* Opciones del desplegable (fuente y fondo acordes al diseño) */
.home-saba__select option {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: .95rem;
    font-weight: 500;
    color: #333;
    background-color: #fff;
    padding: 10px 12px;
}

.home-saba__select option:checked,
.home-saba__select option:hover {
    background-color: var(--saba-mint);
    color: var(--saba-teal-dark);
}

.home-saba__select:disabled {
    background: #f3f3f3;
    color: #999;
    cursor: not-allowed;
}

.home-saba__btn-search {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 8px;
    background: var(--saba-orange);
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background .15s ease;
}

.home-saba__btn-search:hover {
    background: #e65c00;
}

.home-saba__alert {
    margin-top: 14px;
    background: #e8f6f5;
    color: var(--saba-teal-dark);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: .85rem;
}

.home-saba__alert--warning {
    background: #fff4e0;
    color: #8a6d3b;
}

/* ---------- Bloque promocional P-app ---------- */
.home-saba__papp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 20px auto 40px;
}

.home-saba__papp-visual {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.home-saba__papp-img {
    width: 230px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Lista de beneficios ---------- */
.home-saba__benefits {
    width: 100%;
    max-width: 360px;
}

.home-saba__benefits-title {
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 14px;
}

.home-saba__benefit {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
}

.home-saba__benefit::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--saba-red);
}

.home-saba__benefit strong {
    display: block;
    color: var(--saba-red);
    font-weight: 700;
    font-size: .95rem;
}

.home-saba__benefit span {
    color: var(--saba-grey);
    font-size: .9rem;
}

.home-saba__more {
    font-style: italic;
    font-weight: 700;
    color: #4a4a4a;
    margin-top: 14px;
}

/* ---------- Banner "Incluido en P-app" (HTML sobre fondo SVG) ---------- */
.home-saba__banner {
    text-align: center;
    margin: 0 auto 30px;
    max-width: 100%;
}

.papp-banner {
    position: relative;
    background: var(--saba-teal) url('Images/fondo_banners.svg') center/cover no-repeat;
    border-radius: 8px;
    /* Padding inferior amplio: deja sitio para que el aviso amarillo quede por encima
       del triángulo blanco de la esquina y no se solapen. */
    padding: 28px 22px 92px;
    text-align: center;
    color: #fff;
    overflow: hidden;
    /* Fuente propia: el banner del modal (fuera de .home-saba) no hereda Roboto.
       Así se ve igual en el modal (banner=1) y en la sección de abajo. */
    font-family: 'Roboto', Arial, sans-serif;
}

.papp-banner__logo-img {
    display: block;
    width: 120px;
    max-width: 60%;
    height: auto;
    margin: 0 auto 16px;
}

.papp-banner__line1 {
    font-size: 1.3rem;
    font-weight: 700;
}

.papp-banner__line2 {
    font-size: 1.15rem;
    font-weight: 400;
}

.papp-banner__brand {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 4px 0 12px;
}

.papp-banner__info {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--saba-yellow);
    color: var(--saba-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 16px;
}

.papp-banner__warning {
    color: var(--saba-yellow);
    font-style: italic;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.45;
    max-width: 85%;
    margin: 0 auto;
}

/* Triángulo rectángulo blanco en la esquina inferior derecha */
.papp-banner__corner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 84px;
    height: 84px;
    background: #fff;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* Logo saba en teal (silueta blanca usada como máscara), holgado dentro del triángulo */
.papp-banner__saba {
    position: absolute;
    right: 9px;
    bottom: 8px;
    width: 44px;
    height: 23px;
    background-color: var(--saba-teal-dark);
    -webkit-mask: url('Images/logo_saba.png') right bottom / contain no-repeat;
    mask: url('Images/logo_saba.png') right bottom / contain no-repeat;
}

/* ============================================================
   Página de productos
   ============================================================ */
.home-saba__pname {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin: 4px 0 14px;
}

/* Card contenedora de intro + productos + comprar */
.home-saba__products-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    padding: 20px 18px;
    margin-bottom: 22px;
}

.home-saba__intro {
    color: #333;
    font-size: .95rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.home-saba__intro-lead {
    color: var(--saba-red);
    font-weight: 700;
}

.home-saba__products {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}

.home-saba__product {
    display: block;
    margin: 0;
    cursor: pointer;
}

.home-saba__product-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.home-saba__product-body {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    padding: 16px 18px;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.home-saba__product-body-disabled {
    background: #DEDEDE;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    padding: 16px 18px;
    transition: border-color .15s ease, box-shadow .15s ease;
    opacity: .6;
    pointer-events: none;
}

.home-saba__product.is-selected .home-saba__product-body {
    border-color: var(--saba-teal);
    box-shadow: 0 4px 16px rgba(0, 167, 157, .22);
}

.home-saba__product-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.home-saba__product-title {
    font-weight: 700;
    color: #222;
    font-size: 1rem;
    line-height: 1.25;
}

.home-saba__product-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
    white-space: nowrap;
}

.home-saba__product-price {
    font-weight: 800;
    color: var(--saba-orange);
    font-size: 1.2rem;
}

.home-saba__product-price-old {
    color: #b0b0b0;
    font-size: .82rem;
    text-decoration: line-through;
    margin-top: 2px;
}

.home-saba__product-desc {
    color: #8a8a8a;
    font-size: .74rem;
    margin-top: 8px;
    line-height: 1.3;
}

.home-saba__buy {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    background: var(--saba-orange);
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background .15s ease, opacity .15s ease;
}

.home-saba__buy:disabled {
    background: #f6b48a;
    cursor: not-allowed;
}

.home-saba__back-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--saba-teal);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    height: 46px;
    border-radius: 6px;
    margin: 22px 0;
}

.home-saba__back-bar:hover {
    color: #fff;
    background: var(--saba-teal-dark);
}

.home-saba__footer-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 10px;
    border-radius: 6px;
}

.home-saba__product-outofstock {
    color: var(--saba-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: right;
}

/* ============================================================
   Login / Registro P-app
   ============================================================ */
.home-saba__auth-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    padding: 20px 18px;
    max-width: 460px;
    margin: 0 auto 22px;
    text-align: center;
}

.home-saba__auth-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.home-saba__auth-logo {
    width: 88px;
    height: auto;
    flex: 0 0 auto;
}

.home-saba__auth-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    text-align: left;
}

.home-saba__reg-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
    text-align: left;
}

.home-saba__auth-field {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 14px;
    margin-bottom: 12px;
    text-align: left;
}

.home-saba__auth-label {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    color: #333;
}

.home-saba__auth-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: .95rem;
    color: #222;
    padding: 2px 0;
}

.home-saba__auth-select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: .95rem;
    color: #222;
    padding: 2px 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.home-saba__auth-btn {
    display: block;
    width: 100%;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border: none;
    border-radius: 8px;
    background: var(--saba-orange);
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    margin-top: 6px;
}

.home-saba__auth-btn:hover {
    color: #fff;
    background: #e65c00;
}

.home-saba__auth-error {
    color: var(--saba-red);
    font-size: .82rem;
    font-weight: 600;
    text-align: center;
    margin: 6px 0 4px;
}

/* Aviso informativo (p. ej. "activa tu cuenta por email") */
.home-saba__auth-info {
    background: #e8f6f5;
    color: var(--saba-teal-dark);
    border: 1px solid #b8e0dc;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: .85rem;
    line-height: 1.35;
    text-align: left;
    margin-bottom: 14px;
}

/* ---------- HPP (Detalles del pago) embebido ---------- */
.home-saba__hpp {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 520px;
}

.home-saba__hpp-iframe {
    width: 100%;
    max-width: 380px;
    min-height: 520px;
    border: none;
    background: #fff;
}

/* ---------- Pantalla puerta: agregar tarjeta / matrícula ---------- */
.home-saba__gate {
    text-align: center;
}

.home-saba__gate-title {
    color: var(--saba-orange);
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: 22px;
}

.home-saba__gate-step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.home-saba__gate-num {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--saba-teal);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

/* Paso completado: círculo verde con check */
.home-saba__gate-num--done {
    background: #28a745;
}

.home-saba__gate-step .home-saba__auth-btn {
    flex: 1 1 auto;
    margin-top: 0;
}

.home-saba__auth-btn--disabled {
    background: #f6b48a;
    cursor: not-allowed;
    pointer-events: none;
}

.home-saba__gate-note {
    color: #8a8a8a;
    font-size: .82rem;
    line-height: 1.35;
    margin-top: 12px;
}

.home-saba__auth-forgot {
    display: block;
    text-align: center;
    color: #333;
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    text-decoration: underline;
    margin: 14px 0;
}

.home-saba__auth-sep {
    border: none;
    border-top: 1px solid #e2e2e2;
    margin: 16px 0;
}

.home-saba__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin: 12px 0;
    font-size: .82rem;
    color: #888;
    cursor: pointer;
}

.home-saba__check input {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: var(--saba-teal);
    flex: 0 0 auto;
}

/* ============================================================
   Resumen de compra + Descarga P-app
   ============================================================ */
.home-saba__summary {
    max-width: 460px;
    margin: 0 auto 22px;
    text-align: left;
}

.home-saba__summary-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.home-saba__summary-park {
    color: #333;
    margin-bottom: 2px;
}

.home-saba__summary-park-name {
    color: var(--saba-orange);
    font-weight: 700;
}

.home-saba__summary-product {
    color: #333;
    margin-bottom: 14px;
}

.home-saba__summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--saba-teal);
    padding-top: 12px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #222;
}

.home-saba__summary-amount {
    color: var(--saba-orange);
    font-size: 1.2rem;
    font-weight: 800;
}

.home-saba__summary .home-saba__buy {
    margin-top: 6px;
}

/* Selector múltiple (matrícula adicional) con estilo de campo SABA */
.home-saba__field--multi .bootstrap-select {
    width: 100% !important;
}

.home-saba__field--multi .bootstrap-select > .btn.dropdown-toggle {
    height: 66px;
    border: 1px solid #d5d5d5 !important;
    border-radius: 8px !important;
    background: #fff !important;
    padding: 30px 40px 8px 48px !important;
    box-shadow: none !important;
    color: #222 !important;
    font-weight: 600;
    text-align: left;
    outline: none !important;
}

.home-saba__field--multi .bootstrap-select > .btn.dropdown-toggle:focus {
    outline: none !important;
}

.home-saba__download {
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
}

.home-saba__download-img {
    width: 100%;
    border-radius: 8px;
    display: block;
    margin-bottom: 12px;
}

.home-saba__download-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.home-saba__download-text {
    color: #555;
    font-size: .9rem;
}

/* ---------- Compra realizada con éxito ---------- */
.home-saba__success {
    max-width: 460px;
    margin: 0 auto 22px;
    text-align: left;
}

.home-saba__success-title {
    color: var(--saba-red);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.home-saba__success-text {
    color: #222;
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 18px;
}

.home-saba__success-tips-title {
    color: #222;
    font-weight: 700;
    margin-bottom: 14px;
}

.home-saba__tip {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #333;
    font-size: .92rem;
}

.home-saba__tip-ico {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .8rem;
}

.home-saba__tip-ico--ok {
    background: var(--saba-teal);
}

.home-saba__tip-ico--no {
    background: var(--saba-orange);
}

/* Campo de solo lectura (p. ej. Duración de la multientrada) */
.home-saba__field-static {
    width: 100%;
    min-height: 66px;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    background: #f3f3f3;
    padding: 32px 16px 8px 48px;
    font-size: .95rem;
    font-weight: 600;
    color: #333;
}

/* ============================================================
   Botón de compra fijo abajo en móvil (COMPRA AHORA / PAGAR)
   ============================================================ */
@media (max-width: 767px) {
    .home-saba__buy--sticky {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 56px;
        border-radius: 0;
        z-index: 1030;
        box-shadow: 0 -2px 12px rgba(0, 0, 0, .18);
    }

    /* Hueco para que el contenido no quede tapado por el botón fijo */
    .home-saba--has-sticky-buy {
        padding-bottom: 72px;
    }
}

/* ============================================================
   SweetAlert2 con estilo SABA
   ============================================================ */
.home-saba-swal {
    border-radius: 14px !important;
    font-family: 'Roboto', Arial, sans-serif !important;
}

.home-saba-swal .swal2-title {
    color: var(--saba-title) !important;
    font-weight: 700 !important;
    font-size: 1.25rem !important;
}

.home-saba-swal .swal2-html-container {
    color: var(--saba-grey) !important;
    font-size: .95rem !important;
}

/* Spinner en verde SABA */
.home-saba-swal .swal2-loader {
    border-color: var(--saba-teal) transparent var(--saba-teal) transparent !important;
}

/* Icono superior con acento teal */
.home-saba-swal .swal2-icon.swal2-info {
    border-color: var(--saba-teal) !important;
    color: var(--saba-teal) !important;
}

/* Botón de confirmación en naranja SABA */
.home-saba-swal .swal2-confirm {
    background-color: var(--saba-orange) !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

/* Imagen (banner) dentro del modal SweetAlert (BUSCAR) */
.home-saba-swal-img {
    border-radius: 10px !important;
    margin: 6px auto 0 !important;
    max-width: 100% !important;
    height: auto !important;
}

/* Enlace de texto (p. ej. "condiciones y términos de privacidad") */
.home-saba__link {
    color: var(--saba-teal-dark);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.home-saba__link:hover {
    color: var(--saba-teal);
}

/* Contenido de los términos dentro del modal SABA (legible y con scroll) */
.home-saba-terms {
    text-align: left !important;
    max-height: 60vh;
    overflow-y: auto;
    font-size: .9rem;
    color: #333;
}

/* ============================================================
   Modal Bootstrap de advertencia (banner P-app)
   ============================================================ */
.home-saba-modal-dialog {
    max-width: 400px;
    width: auto;
}

.home-saba-modal {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.home-saba-modal__bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 40px;
    background: var(--saba-teal);
    padding: 0 10px;
}

.home-saba-modal__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    opacity: .9;
    padding: 0 4px;
}

.home-saba-modal__close:hover {
    opacity: 1;
}

.home-saba-modal__img {
    display: block;
    width: 100%;
    height: auto;
}

/* El banner dentro del modal va a ras (sin redondeo propio):
   el redondeo lo pone el modal-content. Evita esquinas blancas. */
.home-saba-modal .papp-banner {
    border-radius: 0;
}

/* ============================================================
   ESCRITORIO / TABLET
   ============================================================ */
@media (min-width: 768px) {
    .home-saba__title {
        font-size: 2.6rem;
        margin: 20px 0 34px;
    }

    .home-saba__papp {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 60px;
    }

    .home-saba__papp-img {
        width: 380px;
    }

    .home-saba__benefits {
        max-width: 340px;
    }
}

/* ============================================================
   Página de error (404 / error general) - aspecto SABA
   ============================================================ */
.home-saba__error {
    text-align: center;
    padding: 40px 24px;
}

.home-saba__error-code {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--saba-teal);
    margin-bottom: 8px;
}

.home-saba__error-title {
    color: var(--saba-teal-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.home-saba__error-text {
    color: var(--saba-grey);
    font-size: 1rem;
    margin: 0 auto 24px;
    max-width: 420px;
}
