*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #111827;
  background-color: #ffffff;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.border-white-25 {
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.main-content {
  padding-top: 0; /* dejamos que el hero se coloque directamente detrás del navbar fijo */
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.3rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  background-color: rgba(0, 85, 165, 0.08);
  color: #0055a5;
}

.badge-pill-light {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
  z-index: 1060;
}

.whatsapp-float:hover {
  transform: scale(1.07);
  background-color: #20ba5a;
}

/* Pequeñas animaciones utilitarias */
.fade-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- Evita desbordamiento horizontal (viewport estrechos) --- */
html {
  overflow-x: clip;
  max-width: 100%;
}

body {
  overflow-x: clip;
  max-width: 100%;
  overflow-wrap: break-word;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.main-content {
  overflow-x: clip;
  max-width: 100%;
}

pre,
code {
  max-width: 100%;
  overflow-x: auto;
}

