.gs-site-footer {
background: #1e2434;
color: rgba(255, 255, 255, 0.82);
margin-top: var(--space-xxl);
}

.gs-site-footer a {
color: inherit;
text-decoration: none;
}

.gs-site-footer__trust-item h3,
.gs-site-footer__nav h3,
.gs-site-footer__contact h3 {
margin: 0;
}

.gs-site-footer__main {
padding: 42px 0 24px;
}

.gs-site-footer__grid {
display: grid;
grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, .85fr));
gap: 28px;
align-items: start;
}

.gs-site-footer__brand {
display: grid;
gap: 16px;
padding-right: 24px;
}

.gs-site-footer__logo {
display: inline-flex;
width: max-content;
}

.gs-site-footer__logo img {
width: 148px;
height: auto;
filter: brightness(0) invert(1);
opacity: 0.4;
}

.gs-site-footer__brand-text {
max-width: 360px;
margin: 0;
font-size: var(--text-sm);
line-height: 1.75;
color: rgba(255, 255, 255, 0.74);
}

.gs-site-footer__social {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.gs-site-footer__social a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 999px;
background: rgba(255, 255, 255, 0.04);
transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.gs-site-footer__social a:hover {
transform: translateY(-1px);
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.22);
}

.gs-site-footer__social-icon,
.gs-site-footer__contact-icon {
width: 18px;
height: 18px;
stroke-width: 2;
}

.gs-site-footer__nav,
.gs-site-footer__contact {
display: grid;
gap: 14px;
}

.gs-site-footer__nav h3,
.gs-site-footer__contact h3 {
color: var(--color-text-blanco);
font-size: var(--text-md);
font-weight: var(--font-semibold);
}

.gs-site-footer__nav ul {
display: grid;
gap: 10px;
list-style: none;
margin: 0;
padding: 0;
}

.gs-site-footer__nav a,
.gs-site-footer__contact-list a {
font-size: var(--text-sm);
line-height: 1.5;
color: rgba(255, 255, 255, 0.74);
transition: color .2s ease, transform .2s ease;
}

.gs-site-footer__nav a:hover,
.gs-site-footer__contact-list a:hover {
color: var(--color-text-blanco);
}

.gs-site-footer__contact p {
margin: 0;
font-size: var(--text-sm);
line-height: 1.7;
color: rgba(255, 255, 255, 0.74);
}

.gs-site-footer__contact-list {
display: grid;
gap: 12px;
}

.gs-site-footer__contact-list a {
display: inline-flex;
align-items: center;
gap: 10px;
width: max-content;
max-width: 100%;
}

.gs-site-footer__bottom {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-top: 24px;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-site-footer__bottom p,
.gs-site-footer__bottom-links a {
margin: 0;
font-size: 13px;
color: rgba(255, 255, 255, 0.58);
}

.gs-site-footer__bottom-links {
display: flex;
flex-wrap: wrap;
gap: 16px;
}

@media (max-width: 1024px) {
    .gs-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gs-site-footer__brand {
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .gs-site-footer__main {
        padding: 34px 0 22px;
    }

    .gs-site-footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gs-site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
