/* Responsive Adjustments */

@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul li {
        margin: 0 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links-autoridade {
        flex-direction: column;
        gap: 0.5rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .hero-login {
        padding: 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .split-layout {
        flex-direction: column;
        text-align: center;
    }

    .split-text h2 {
        text-align: center;
    }

    .split-text h2::after {
        margin: 0.5rem auto 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 1rem;
    }

    .hero-login {
        max-width: 100%;
    }
}

