/* Responsive TalentoX */
@media (max-width: 992px) {
    .hero-grid, .services-grid, .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-grid, .services-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .nav-links {
        display: none; /* Aquí iría el menú hamburguesa más adelante */
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 50px 0;
    }
}