/* ═══════════════════════════════════════════════
   FOOTER — Geociclos
   4 columnas: Logo | Sellos+RRSS | Políticas (menú) | Contacto+Horarios
   Fondo: rgba(243, 239, 239, 1)
   ═══════════════════════════════════════════════ */
.gc-footer {
    background: rgba(243, 239, 239, 1);
    color: var(--gc-dark);
    padding: 60px 0 0;
}

/* ─── Logo ─── */
.gc-footer__logo {
    display: inline-block;
    margin-bottom: 24px;
}

.gc-footer__logo img,
.gc-footer__logo .custom-logo {
    height: 60px;
    width: auto;
}

.gc-footer__brand {
    font-size: 22px;
    color: var(--gc-dark);
}

/* ─── Certificaciones: Sello Mujer + ISO ─── */
.gc-footer__certs {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.gc-footer__cert-mujer {
    height: 70px;
    width: auto;
}

.gc-footer__cert-iso {
    height: 60px;
    width: auto;
}

/* ─── Redes Sociales ─── */
.gc-footer__social-block {
    margin-top: 8px;
}

.gc-footer__social-label {
    margin-bottom: 12px;
}

.gc-footer__social {
    display: flex;
    gap: 12px;
}

.gc-footer__social-icon {
    display: inline-block;
    transition: var(--gc-transition);
    line-height: 0;
}

.gc-footer__social-icon img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    transition: var(--gc-transition);
}

.gc-footer__social-icon:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* ─── Títulos de columna ─── */
.gc-footer__title, .gc-footer__social-label {
    color: rgba(34, 61, 117, 1);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ─── Políticas (menú) ─── */
.gc-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gc-footer__links li {
    margin-bottom: 10px;
}

.gc-footer__links a {
    color: var(--gc-gray-700);
    font-size: var(--gc-fs-small);
    transition: var(--gc-transition);
}

.gc-footer__links a:hover {
    color: var(--gc-green);
}

/* ─── Contacto ─── */
.gc-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gc-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: var(--gc-fs-small);
    color: var(--gc-gray-700);
}

.gc-footer__contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gc-dark);
}

.gc-footer__contact a {
    color: var(--gc-gray-700);
}

.gc-footer__contact a:hover {
    color: var(--gc-green);
}

.gc-footer__contact-noicon {
    padding-left: 26px;
    margin-top: -8px;
}

/* ─── Copyright ─── */
.gc-footer__bottom {
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid var(--gc-gray-300);
}

.gc-footer__copy {
    margin: 0;
    font-size: 13px;
    color: var(--gc-gray-600);
}

.gc-footer__copy a {
    color: var(--gc-gray-700);
}

.gc-footer__copy a:hover {
    color: var(--gc-green);
}

/* ─── Responsive ─── */
@media (max-width: 991.98px) {
    .gc-footer__certs {
        gap: 12px;
    }

    .gc-footer__cert-mujer {
        height: 55px;
    }

    .gc-footer__cert-iso {
        height: 50px;
    }
}

@media (max-width: 767.98px) {
    .gc-footer {
        padding: 40px 0 0;
    }

    .gc-footer__bottom {
        text-align: center;
    }
}
