/* ===== TABLET ===== */
@media (max-width: 992px) {
  .nav {
    gap: 18px;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ventajas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== CELULAR ===== */
@media (max-width: 768px) {
  .menu-toggle {
  display: block;
  }

.nav {
  display: none;
  flex-direction: column;
  width: 100%;
  background: white;
  padding: 15px;
  }

.nav.nav-open {
  display: flex;
  }




  section {
    padding: 45px 0;
  }

  .header-container {
    height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
    gap: 12px;
  }

  .logo img {
    height: 44px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav a {
    font-size: 0.95rem;
  }

  .btn-whatsapp {
    width: 100%;
    text-align: center;
  }

  .hero,
  .hero-overlay,
  .hero-content {
    min-height: 500px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-title {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }

  .productos-grid {
    grid-template-columns: 1fr;
  }

  .ventajas-grid {
    grid-template-columns: 1fr;
  }

  .entrega-banner,
  .entrega-overlay {
    min-height: 300px;
  }

  .entrega-content h2,
  .cta-final h2 {
    font-size: 1.6rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ===== CELULAR PEQUEÑO ===== */
@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .hero-text h1 {
    font-size: 1.9rem;
  }

  .btn,
  .btn-card,
  .btn-whatsapp {
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .producto-card img {
    height: 190px;
  }

  .entrega-content h2,
  .cta-final h2 {
    font-size: 1.4rem;
  }
}