
/* ===============================
   LAZOS – OPTIMIZACIONES UX/UI
   (ajuste fino CTAs sin romper diseño)
   =============================== */

/* Accesibilidad */
:focus-visible{
  outline: 3px solid rgba(155,44,44,.65);
  outline-offset: 3px;
}

/* === CTAs: evitar solape reduciendo tipografía y espaciando === */

/* Estilo base de botones/enlaces tipo botón */
a[role="button"],
a.button,
a.btn,
a[class*="btn"],
a[class*="button"]{
  border-radius: 9999px !important;
  font-size: 15px !important;     /* ↓ texto ligeramente más pequeño */
  line-height: 1.25 !important;
  padding: 12px 18px !important;  /* padding equilibrado */
  white-space: normal !important; /* permite salto de línea */
  text-align: center !important;
  position: relative;
  z-index: 2;
}

/* Separación horizontal si van en fila */
a[role="button"] + a[role="button"],
a.button + a.button,
a.btn + a.btn,
a[class*="btn"] + a[class*="btn"],
a[class*="button"] + a[class*="button"]{
  margin-left: 12px !important;
}

/* Contenedores habituales de CTAs */
.hero-cta, .cta-group, .buttons, .button-group, .btn-group, .ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Móvil/tablet: apilar y reducir un poco más */
@media (max-width: 768px){
  a[role="button"],
  a.button,
  a.btn,
  a[class*="btn"],
  a[class*="button"]{
    display: block !important;
    width: 100% !important;
    font-size: 14px !important;   /* ↓ un punto más en móvil */
    padding: 12px 16px !important;
  }

  a[role="button"] + a[role="button"],
  a.button + a.button,
  a.btn + a.btn,
  a[class*="btn"] + a[class*="btn"],
  a[class*="button"] + a[class*="button"]{
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
}
