.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b2f23;
    color: #ffffff;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
}

.footer-shell {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.footer-contenido {
    display: grid;
    grid-template-columns: 1.45fr 0.7fr 1.1fr;
    gap: 72px;
    padding: 64px 0 56px;
}

.footer-marca {
    max-width: 360px;
}

.site-footer .footer-logo {
    position: relative;
    display: inline-flex;
    margin-bottom: 24px;
    padding: 0;
    background: transparent;
}

.site-footer .footer-logo img {
    width: 132px;
    height: auto;
    clip-path: inset(0 14px 0 0);
    filter: brightness(0) invert(1);
    opacity: 0.96;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-footer .footer-logo::after {
    content: "";
    position: absolute;
    top: 58%;
    right: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ec654c;
    transform: translateY(-50%);
}

.site-footer .footer-logo:hover img,
.site-footer .footer-logo:focus-visible img {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-marca p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.75;
}

.site-footer h3 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #ffffff;
    outline: none;
}

.site-footer .footer-links {
    position: static;
    display: grid;
    align-items: start;
    gap: 12px;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.site-footer .footer-links a {
    position: relative;
    width: fit-content;
    padding: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.96rem;
    font-weight: 500;
}

.site-footer .footer-links a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 1px;
    background: #ec654c;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-footer .footer-links a:hover::after,
.site-footer .footer-links a:focus-visible::after {
    transform: scaleX(1);
}

.footer-contacto-lista {
    display: grid;
    gap: 16px;
}

.footer-contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
    line-height: 1.55;
}

.footer-contacto-item svg {
    width: 19px;
    min-width: 19px;
    height: 19px;
    margin-top: 2px;
    fill: none;
    stroke: #71d29c;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.footer-eventos {
    display: grid;
    gap: 8px;
    margin-top: 3px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-eventos-titulo {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-evento-contacto {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 8px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.4;
}

.footer-evento-contacto strong {
    color: #9edeb8;
    font-weight: 600;
    white-space: nowrap;
}

.footer-evento-contacto:hover strong,
.footer-evento-contacto:focus-visible strong {
    color: #ffffff;
}

.footer-base {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-base p {
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.82rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .footer-contenido {
        grid-template-columns: 1fr 1fr;
        gap: 48px 72px;
    }

    .footer-marca {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .footer-shell {
        width: min(100% - 36px, 1200px);
    }

    .footer-contenido {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 48px 0 42px;
    }

    .footer-marca {
        grid-column: auto;
    }

    .footer-base {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        padding-bottom: 98px;
    }
}
