/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .info-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .nav-link {
    display: block;
    padding: 12px 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .hero {
    padding: 130px 0 70px;
  }

  .info-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-card-img {
    height: 150px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .about-img img {
    height: 250px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .modal {
    max-width: 100%;
    max-height: 95vh;
    margin: 10px;
    border-radius: var(--radius-lg);
  }

  .modal-img {
    height: 180px;
  }

  .complements-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-add-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat strong {
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9rem;
  }

  .info-bar-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card-img {
    height: 200px;
  }

  .about-numbers {
    gap: 16px;
  }

  .toast-container {
    left: 12px;
    right: 12px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}
