/* RESPONSIVO */
@media (max-width: 1024px) {
    body {
        background: #00296B;
    }
}

@media (max-width: 768px) {
    body {
        background: #003F88;
    }
}

@media (max-width: 480px) {
    body {
        background: #00509D;
    }
}

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

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .social-icons {
        display: none;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .wave-container {
        height: 80px;
    }

    .wave-svg {
        height: 80px;
    }
}

@media (max-width: 767px) {
    .header-content {
        padding: 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .wave-container {
        height: 60px;
    }

    .wave-svg {
        height: 60px;
    }

    .logo-css {
        font-size: 1.8rem;
    }
}