/* ===========================
   RESPONSIVE — MÓVILES PEQUEÑOS
   =========================== */
@media (max-width: 600px) {

  /* HEADER */
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .logo {
    height: 55px;
  }

  /* HERO */
  .hero {
    height: 60vh;
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 32px !important;
  }

  .hero-content p {
    font-size: 16px !important;
  }

  .btn-hero {
    padding: 10px 20px;
    font-size: 16px;
  }

  /* SERVICIOS */
  .servicios-grid {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }

  .servicio-card h3 {
    font-size: 24px;
  }

  .servicio-card p {
    font-size: 18px;
  }

  /* POR QUÉ SNIPER */
  .porque-sniper-content h2 {
    font-size: 40px;
  }

  .porque-text {
    font-size: 18px;
    padding: 0 10px;
  }

  .porque-grid {
    grid-template-columns: 1fr !important;
  }

  .porque-card h3 {
    font-size: 24px;
  }

  .porque-card p {
    font-size: 18px;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr !important;
  }

  .faq-question {
    font-size: 22px;
  }

  .faq-answer {
    font-size: 18px;
  }

  /* PAYMENT PAGE */
  .payment-title {
    font-size: 28px;
  }

  .payment-text {
    font-size: 16px;
  }

  #paypal-button-container {
    max-width: 280px;
  }

  .payment-contacts {
    font-size: 16px;
  }

  /* CONTACTO */
  .contact-title {
    font-size: 32px;
  }

  .contact-text {
    font-size: 16px;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .go-top-btn {
    right: 20px;
    top: 20px;
    padding: 8px 10px;
  }
}

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 900px) {

  .nav ul {
    gap: 20px;
  }

  /* Servicios */
  .servicios-grid {
    grid-template-columns: 1fr 1fr;
  }

  .servicio-card p {
    font-size: 20px;
  }

  /* Por qué Sniper */
  .porque-grid {
    grid-template-columns: 1fr;
  }

  .porque-card p {
    font-size: 22px;
  }

  /* FAQ */
  .faq-grid {
    grid-template-columns: 1fr;
  }
}