/**
 * Footer - idéntico a Mendoza (Mendoza-argentina.html + main.css)
 * Cargar después de base y vistas para que siempre aplique.
 */

.footer {
    background-color: #212121;
    width: 100%;
    max-width: 100%;
    padding: var(--section-padding-y, 3rem) var(--container-padding, 10%);
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer * {
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-column-logo .footer-logo-link {
    display: block;
    width: fit-content;
}

.footer-logo {
    width: 10rem;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 1rem 0 0.5rem;
    padding: 0;
}

.footer-legal {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    padding: 0;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: underline;
}

.footer-legal-link:hover {
    color: white !important;
}

.footer-contact-block {
    margin-bottom: 1.25rem;
}

.footer-contact-block:last-child {
    margin-bottom: 0;
}

.footer-contact-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}

.footer-contact-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-contact-link:hover {
    color: white !important;
}

.footer-support-section {
    margin-bottom: 1.5rem;
}

.footer-social-section .footer-title {
    padding-top: 0;
}

.footer-social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-title {
    font-size: 1rem;
    color: #00a0e0;
    padding: 1rem 0 0.5rem;
}

.footer-column-support .footer-title:first-child {
    padding-top: 0;
}

.footer-a {
    font-size: 0.9rem;
    color: white !important;
    font-weight: 700;
    padding: 0.5rem 0 0;
    display: block;
}

.footer .social {
    margin: 0;
    width: 3rem;
    height: auto;
}

@media (min-width: 1024px) {
    .footer-content {
        flex-direction: row;
        gap: 2rem;
        max-width: var(--container-max, 1200px);
        margin: 0 auto;
    }

    .footer-column {
        flex: 1;
        min-width: 0;
        padding: 0;
    }

    .footer-logo {
        width: 12rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-a {
        font-size: 0.9rem;
    }

    .footer-contact-label {
        font-size: 0.85rem;
    }

    .footer-contact-value {
        font-size: 0.85rem;
    }
}
