/* =========================
   BREAKPOINTS GLOBALES
========================= */

/* Tablets y mobile */
@media (max-width: 768px) {

    /* Containers */
    .container,
    .container-global {
        padding: 0 1rem;
    }

    /* Header */
    .simple-header {
        height: 60px;
    }

    main {
        margin-top: 60px;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    /* Hero */
    .service-hero {
        padding: 6rem 1rem 3rem;
    }

    .service-hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1.1rem !important;
    }

    /* Grids */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile chico */
@media (max-width: 480px) {

    .service-hero h1 {
        font-size: 1.9rem !important;
    }

    /* Botones */
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 320px;
    }
}

