/* =====================
   RESET + BASE
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #0a2540;
  line-height: 1.6;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================
   BOTONES REUTILIZABLES
========================= */
.slide-btn,
.cta-btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: transform .3s ease, box-shadow .3s ease;
}

/* =========================
   WHATSAPP FLOAT BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 64px;
  height: 64px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
  z-index: 9999;
  transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  display: block;
}
body.menu-open {
  overflow: hidden;
}
/* =====================
   FIX DROPDOWN DESKTOP
===================== */

.nav-menu .dropdown {
  display: block;       /* IMPORTANTE */
}

.nav-menu .dropdown li {
  display: block;       /* Cada item debajo del otro */
  width: 100%;
}
/* ===============================
   ELIMINAR TAP HIGHLIGHT AZUL EN MOBILE
   =============================== */

* {
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none !important;
}

a, button, .btn, [role="button"], input[type="button"], input[type="submit"] {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
  -webkit-touch-callout: none !important;
  cursor: pointer;
}

/* Mantener selección de texto normal en párrafos y títulos */
p, h1, h2, h3, h4, h5, h6, li, span, .text-content {
  -webkit-user-select: text !important;
  user-select: text !important;
}

/* Opcional: mantener indicador de foco para accesibilidad por teclado */
a:focus-visible, button:focus-visible {
  outline: 2px solid #1f78b4 !important;
  outline-offset: 2px !important;
}