/* Agencia New Front — Responsivo */

@media (max-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    #main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper-2);
        border-bottom: 2px solid var(--ink);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
    }

    #main-nav.active {
        max-height: 340px;
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 14px;
    }

    .nav-list a {
        border: none;
        border-radius: 0;
        padding: 13px 24px;
        font-size: 14px;
    }

    .hero {
        padding: 62px 0 58px;
    }

    .hero h1 {
        font-size: clamp(34px, 9vw, 52px);
    }

    .hero-bg::before {
        font-size: 150px;
        top: auto;
        bottom: 4%;
    }

    .section {
        padding: 58px 0;
    }
}

@media (max-width: 560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        padding: 24px 22px;
    }

    .whatsapp-btn {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
