/* =========================
   FOOTER GENERAL (PRO)
========================= */
.footer-bs {
    background: linear-gradient(180deg, #6f6f6f 0%, #7a7a7a 100%);
    color: #ffffff;
    font-size: 16.5px;
    padding: 18px 0 12px;
}

/* =========================
   BRAND
========================= */
.footer-bs .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-bs .footer-logo {
    width: 190px;
    max-width: 100%;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.footer-bs .footer-brand p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-bs .footer-brand small {
    font-size: 14.5px;
    opacity: 0.85;
}

/* =========================
   TÍTULOS
========================= */
.footer-bs .footer-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 17.5px;
    margin-bottom: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-bs .footer-title-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    opacity: 0.9;
}

/* =========================
   TEXTO GENERAL
========================= */
.footer-bs p {
    margin-bottom: 6px;
    line-height: 1.6;
}

/* =========================
   LINKS
========================= */
.footer-bs .footer-link {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.footer-bs .footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #c8e6c9;
    transition: width 0.25s ease;
}

.footer-bs .footer-link:hover {
    color: #e8f5e9;
}

.footer-bs .footer-link:hover::after {
    width: 100%;
}

/* =========================
   MÉTODOS DE PAGO
========================= */
.footer-bs .pay-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 6px;
}

/* =========================
   REDES SOCIALES
========================= */
.footer-bs .social-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.footer-bs .social-icon:hover {
    transform: translateY(-4px);
    filter: brightness(1.15);
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bs .footer-bottom {
    background-color: #9bb6a6;
    color: #2f3e36;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 576px) {

    .footer-bs {
        font-size: 15px;
        text-align: center;
    }

    .footer-bs .footer-logo {
        width: 140px;
    }

    .footer-bs .footer-title {
        font-size: 16px;
        justify-content: center;
    }

    .footer-bs .footer-title-icon {
        width: 22px;
        height: 22px;
    }

    .footer-bs .pay-icon {
        width: 40px;
        height: 40px;
    }

    .footer-bs .social-icon {
        width: 36px;
        height: 36px;
    }
}
/* =========================
   FOOTER BOTTOM DESTACADO
========================= */
.footer-bs .footer-bottom-highlight {
    background: linear-gradient(90deg, #7a7a7a, #8fae9d, #7a7a7a);
    color: #ffffff;
    font-size: 15.5px; /* un poco más grande */
    padding: 16px 20px; /* más alto visualmente */
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Texto principal */
.footer-bs .footer-copy {
    text-transform: uppercase;
}

/* Separador */
.footer-bs .footer-separator {
    opacity: 0.7;
    font-size: 18px;
}

/* Acento sutil */
.footer-bs .footer-rights {
    color: #e8f5e9;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 576px) {
    .footer-bs .footer-bottom-highlight {
        flex-direction: column;
        gap: 6px;
        font-size: 14.8px;
        padding: 14px 12px;
    }

    .footer-bs .footer-separator {
        display: none;
    }
}


