@media (max-width: 900px) {
    body {
        font-size: 16px;
    }

    .container,
    .footer-wrap {
        width: min(1200px, calc(100% - 32px));
    }

    .navbar {
        top: 12px;
    }

    .nav-bar {
        height: auto;
        min-height: 64px;
        padding: 8px;
        border-radius: 20px;
        justify-content: center;
    }

    .logo {
        display: none;
    }

    .logo-svg {
        width: 46px;
        height: 40px;
    }

    .nav-links {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        padding: 0;
    }

    .nav-links a {
        width: 100%;
        min-height: 44px;
        font-size: 12px;
        padding: 8px 6px;
        white-space: nowrap;
        line-height: 1;
        text-align: center;
    }

    .btn-contato {
        padding: 8px 6px;
        font-size: 12px;
    }

    .site-footer {
        border-radius: 0;
        padding: 24px 0 22px;
        margin: 0;
        border-top: 1px solid rgba(244, 231, 214, 0.28);
        border-bottom: 1px solid rgba(244, 231, 214, 0.18);
    }

    .footer-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
        justify-items: start;
        text-align: left;
        padding: 0 12px;
    }

    .footer-brand img {
        width: 98px;
    }

    .footer-menu {
        gap: 6px;
        align-items: flex-start;
    }

    .footer-menu h4,
    .footer-contact h4,
    .footer-social h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .footer-menu a,
    .footer-contact p {
        font-size: 13px;
    }

    .footer-social {
        border-left: none;
        padding-left: 0;
        min-height: auto;
    }

    .footer-contact i {
        width: 18px;
        height: auto;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container,
    .footer-wrap {
        width: min(1200px, calc(100% - 28px));
    }

    .nav-bar {
        border-radius: 18px;
    }

    .nav-links {
        gap: 4px;
    }

    .nav-links a,
    .btn-contato {
        min-height: 40px;
        font-size: 11px;
        letter-spacing: 0.01em;
    }
}

@media (max-width: 360px) {
    .container,
    .footer-wrap {
        width: min(1200px, calc(100% - 24px));
    }

    .nav-links a,
    .btn-contato {
        font-size: 10px;
        padding: 7px 4px;
    }
}
