/* ========================================
   RESPONSIVE: Tablets (hasta 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .header .container {
    height: 70px;
  }

  .logo img {
    height: 35px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.25rem;
  }

  .cta-button {
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
  }
}

/* ========================================
   RESPONSIVE: Móviles (hasta 768px)
   ======================================== */
@media (max-width: 768px) {
  /* Menú */
  .nav-list {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-list.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero h1 {
    font-size: 2rem;
    padding: 0 1rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .cta-button {
    font-size: 1.1rem;
    padding: 0.9rem 2rem;
    margin-top: 1rem;
  }

  /* Footer */
  .footer-contact,
  .footer-links {
    font-size: 0.9rem;
    text-align: center;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }
}

/* ========================================
   RESPONSIVE: Móviles pequeños (hasta 480px)
   ======================================== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
  }

  .footer-contact,
  .footer-links {
    font-size: 0.85rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }
}
