.site-footer {
    border-top: 1px solid rgb(255 255 255 / 10%);
    background: #0b1f1c;
    color: #e8f2f0;
    padding: 56px 0 24px;
    text-align: left;
    font-size: 1rem;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}

.site-footer .footer-grid section,
.site-footer .footer-grid nav {
    min-width: 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 900;
}

.footer-logo img {
    border-radius: 12px;
}

.site-footer .footer-brand > p {
    max-width: 360px;
    margin: 18px 0 0;
    color: #afc7c2;
}

.site-footer .footer-company {
    font-size: .88rem;
}

.site-footer h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: .82rem;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.site-footer .footer-links a {
    color: #d7e7e4;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.site-footer .footer-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

.site-footer .footer-contact .footer-links {
    gap: 16px;
}

.site-footer .footer-contact a {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.site-footer .footer-contact span {
    color: #89ada6;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.site-footer .footer-contact strong {
    overflow-wrap: anywhere;
    color: #fff;
    font-size: .94rem;
}

.site-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 44px;
    border-top: 1px solid rgb(255 255 255 / 12%);
    padding-top: 22px;
    color: #91aaa5;
    font-size: .88rem;
}

.site-footer .footer-bottom p {
    margin: 0;
}

.footer-cookie-button {
    border: 0;
    background: none;
    color: #d7e7e4;
    padding: 4px 0;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.footer-cookie-button:hover {
    color: #fff;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 9px;
    border: 2px solid rgb(255 255 255 / 90%);
    border-radius: 999px;
    background: #168c72;
    box-shadow: 0 12px 34px rgb(0 0 0 / 25%);
    color: #fff;
    padding: 0 18px 0 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.floating-whatsapp svg {
    display: block;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    color: #fff;
    overflow: visible;
}

.floating-whatsapp:hover {
    background: #0f765f;
    box-shadow: 0 16px 38px rgb(0 0 0 / 32%);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 800px) {
    .site-footer {
        padding: 44px 0 88px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 24px;
    }

    .site-footer .footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer .footer-bottom {
        margin-top: 36px;
    }

    .floating-whatsapp {
        display: none;
    }
}

@media (max-width: 520px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer .footer-brand {
        grid-column: auto;
    }

    .site-footer .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}
