/* Estilos responsivos para Mate22 Ajedrez con Pasión */

/* Ajustes para tablets */
@media (max-width: 992px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .services-container,
  .products-container,
  .testimonials-container,
  .blog-container,
  .events-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Ajustes para móviles grandes */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .section {
    padding: var(--spacing-md) 0;
  }
  
  .hero {
    height: auto;
    min-height: 80vh;
    padding: var(--spacing-xl) 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .services-container,
  .products-container,
  .testimonials-container,
  .blog-container,
  .events-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Ajustes para móviles pequeños */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}
