/* ==========================================
   RESPONSIVE - SPONSORS (Max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
  .sponsors-section {
    padding: 20px 0;
  }

  .sponsor-slide {
    width: 150px;
  }

  .sponsor-slide img {
    max-width: 90px;
    max-height: 40px;
  }

  @keyframes scrollSponsors {
    100% {
      transform: translateX(calc(-150px * 5));
    }
  }
}

/* ==========================================
   DISEÑO RESPONSIVO GENERAL (Max-width: 768px)
   ========================================== */
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }

  .logo-text h2 {
    font-size: 1.3rem;
  }

  .logo-text span {
    font-size: 0.6rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f5f9;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  }




.nav-menu.nav-open {
    max-height: 100vh;   /* Cambia 400px por 80vh */
    overflow-y: auto;   /* Agrega esta línea */
    transition: max-height 0.3s ease-in-out;
  }



  .nav-menu ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
    padding: 10px 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-menu a::after {
    display: none;
  }

  .hero {
    padding: 70px 0 80px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .section-title {
    margin: 45px 0 25px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}