/**
 * Pie de página — alineado con cabecera (gris + dorado)
 */

.site-footer {
    color: #fff;
    margin-top: 0;
}

.site-footer .container {
    width: 100%;
    max-width: var(--section-inner-max, 56rem);
    margin-inline: auto;
    padding-inline: var(--section-inline-padding, clamp(1.5rem, 5vw, 3.25rem));
    box-sizing: border-box;
}

/* Franja superior dorada */
.footer-main {
    position: relative;
    background: linear-gradient(180deg, #525252 0%, #6b6b6b 48%, #646464 100%);
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5c1418 0%, #6b3a8a 35%, #d4b45a 70%, #e8cf7a 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: clamp(2rem, 5vw, 4rem);
    }
}

/* Logo */
.footer-brand__link {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-brand__link:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

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

@media (min-width: 992px) {
    .footer-logo {
        width: min(100%, 11rem);
        max-width: 11rem;
    }
}

/* Contacto */
.footer-contact {
    max-width: 28rem;
}

@media (min-width: 992px) {
    .footer-contact {
        margin-left: auto;
        max-width: none;
    }
}

.footer-kicker {
    margin: 0 0 0.35rem;
    font-family: var(--font-sans, Inter, system-ui, sans-serif);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e8cf7a;
}

.footer-heading {
    margin: 0 0 1.35rem;
    font-family: var(--font-sans, Inter, system-ui, sans-serif);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: #fff;
}

.footer-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.9rem;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.55rem;
    transition:
        background-color 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(232, 207, 122, 0.45);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    transform: translateX(4px);
}

.footer-social-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, rgba(107, 58, 138, 0.55), rgba(92, 20, 24, 0.65));
    border: 1px solid rgba(232, 207, 122, 0.25);
}

.footer-social-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.footer-social-label {
    font-family: var(--font-sans, Inter, system-ui, sans-serif);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.footer-social-value {
    font-family: var(--font-sans, system-ui, sans-serif);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    color: #e8cf7a;
    word-break: break-word;
}

.footer-social-link:hover .footer-social-value,
.footer-social-link:focus-visible .footer-social-value {
    color: #fff;
}

/* Barra inferior */
.footer-bar {
    background: linear-gradient(180deg, #3d3530 0%, #4a4039 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    padding-block: 1rem;
}

.footer-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 1rem;
}

.footer-bar__copy,
.footer-bar__tagline {
    font-family: var(--font-sans, sans-serif);
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.78);
}

.footer-bar__tagline {
    color: rgba(232, 207, 122, 0.85);
    font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
    .footer-brand__link,
    .footer-social-link {
        transition: none;
    }

    .footer-social-link:hover,
    .footer-social-link:focus-visible {
        transform: none;
    }
}
