.footer-sanantonio {
    background-color: #0056b8;
    color: #FFFFFF;
    font-size: 14px;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo img {
    max-height: 75px;
}

.footer-content {
    margin-top: 20px;
}

.footer-col {
    padding: 0 40px;
}

.border-right-custom {
    border-right: 2px solid rgba(255,255,255,0.5);
}

.footer-title {
    color: #FFFC01;
    font-weight: 700;
    text-decoration: underline;
    margin-bottom: 12px;
}
.footer-title a {
    color: #FFFC01;
    text-decoration: underline;
    font-weight: 700;
}

.footer-title a:hover {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-col p {
    margin-bottom: 6px;
}

.social-icons i {
    font-size: 20px;
    margin-right: 12px;
    cursor: pointer;
}
.social-icons img {
    width: 150px;
}
.store-buttons img {
    margin-right: 10px;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 12px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .border-right-custom {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-col {
        text-align: center !important;
    }
}

.banners {
    padding: 5px 0 0 0; /* solo arriba */
}
/* CONTENEDOR (alineado con el resto del sitio) */
.banners-contenedor {
    max-width: 965px; /* igual que Bootstrap container */
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* =========================
   TARJETAS BANNER
========================= */
.banner-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* sombra suave */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    transition: all 0.35s ease;
}

/* IMAGEN */
.banner-item img {
    width: 100%;
    height: auto;
    display: block;

    transition: transform 0.5s ease;
}


/* levanta la tarjeta */
.banner-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* zoom leve de imagen */
.banner-item:hover img {
    transform: scale(1.03);
}

/* overlay elegante */
.banner-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 71, 161, 0.08); /* azul suave corporativo */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-item:hover::after {
    opacity: 1;
}
.banners-wrapper {
    background: #fff;
    max-width: 1200px;
    margin: 0 auto -50px auto;
    padding: 30px 20px;
}
/* =========================
   RESPONSIVE
========================= */

/* Tablets */
@media (max-width: 992px) {
    .banners-contenedor {
        max-width: 90%;
    }
}

/* Móvil */
@media (max-width: 768px) {
    .banners {
        padding: 30px 0;
    }

    .banners-contenedor {
        padding: 0 10px;
        gap: 15px;
    }

}
.btn-subir {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #0f3f7a;
    color: #fff;
    border: none;
    border-radius: 30%;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: none; /* oculto al inicio */
    transition: all 0.3s ease;
    z-index: 999;
}

.btn-subir:hover {
    background-color: #EFF1F1;
    transform: translateY(-4px);
    color: #0f3f7a;

}
.contador-box {
    margin: 20px auto 0 auto; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
    width: fit-content; 
}

.contador-icon {
    font-size: 18px;
}

.contador-info {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.contador-numero {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}

.contador-texto {
    font-size: 10px;
    color: #cfd8dc;
}