/* ============================================
   MOBILE.CSS — Reglas específicas móvil
   Se carga al final, máxima prioridad
   ============================================ */

@media screen and (max-width: 600px) {

  /* ── NAV ── */
  nav {
    padding: 1rem !important;
    gap: 8px;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8, 12, 16, 0.98) !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2rem !important;
    z-index: 150;
    list-style: none;
  }

  .nav-menu.open {
    display: flex !important;
  }

  .nav-menu a {
    font-size: 1.3rem !important;
    color: var(--text) !important;
  }

  .nav-hamburger {
    display: flex !important;
  }

  .lang-btn {
    padding: 3px 5px !important;
    font-size: 10px !important;
  }

  .lang-flag {
    width: 14px !important;
    height: 10px !important;
  }

  /* ── HERO ── */
  .hero {
    padding: 5rem 1.2rem 2.5rem !important;
    min-height: auto !important;
  }

  .hero h1 {
    font-size: 2.4rem !important;
    line-height: 1.05 !important;
  }

  .hero-sub {
    font-size: 14px !important;
    max-width: 100% !important;
  }

  .hero-cta {
    flex-direction: column !important;
    width: 100% !important;
  }

  .hero-cta .btn {
    width: 100% !important;
    text-align: center !important;
    display: block !important;
  }

  /* ── STATS ── */
  .stats {
    grid-template-columns: 1fr !important;
  }

  .stat {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    padding: 1.2rem 1.5rem !important;
  }

  /* ── SECTIONS ── */
  section {
    padding: 3rem 1.2rem !important;
  }

  /* ── SERVICES ── */
  .services-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .service-card {
    width: 100% !important;
  }

  /* ── PRICING ── */
  .pricing-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .pricing-card {
    width: 100% !important;
  }

  /* ── ABOUT ── */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  /* ── CONTACT ── */
  .contact-wrap {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .contact-form .btn {
    width: 100% !important;
    display: block !important;
  }

  /* ── FOOTER ── */
  footer {
    flex-direction: column !important;
    gap: 0.5rem !important;
    text-align: center !important;
    padding: 1.5rem 1.2rem !important;
  }
}
