﻿/* =========================
   VARIABLES
========================= */
:root {
    --container: 1228px;
    --footer-bg: linear-gradient(90deg, #6a2c38 0%, #7b2f3d 50%, #5a222c 100%);
    --footer-border: rgba(255,255,255,.15);
    --footer-text: rgba(255,255,255,.9);
    --footer-muted: rgba(255,255,255,.7);
}

/* =========================
   FOOTER GENERAL
========================= */
.footer {
    width: 100%;
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 16px 0;
    margin-top: 40px;
    position: relative;
}

    /* Línea institucional superior */
    .footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    }

/* =========================
   CONTENEDOR
========================= */
.container-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
}

/* =========================
   LOGO
========================= */
.logo-footer {
    flex: 0 0 auto;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

    .logo-footer img {
        max-height: 70px;
        width: auto;
        display: block;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,.25));
    }

/* =========================
   DIRECCIÓN CENTRADA
========================= */
.direccion-footer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--footer-muted);
    white-space: nowrap;
    letter-spacing: .3px;
}

/* =========================
   CONTACTO
========================= */
.contacto-footer {
    flex: 0 0 auto;
    text-align: right;
    padding-right: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--footer-muted);
}

    .contacto-footer strong {
        color: #fff;
        font-weight: 600;
    }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .container-footer {
        flex-direction: column;
        gap: 12px;
        padding: 10px 0;
    }

    .logo-footer {
        padding-left: 0;
    }

    .direccion-footer {
        position: static;
        transform: none;
        white-space: normal;
        font-size: 12px;
        text-align: center;
    }

    .contacto-footer {
        padding-right: 0;
        text-align: center;
        font-size: 12px;
    }
}
