/* === Botones PIDE en portada (píldora, color sólido) === */

body#page-site-index .pide-coursebuttons{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 26px 0 34px 0;
  padding: 0 14px;
}

/* Botón base */
body#page-site-index .pide-coursebuttons .pide-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 360px;
  max-width: 560px;
  padding: 16px 30px;

  border-radius: 9999px; /* píldora */
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.3px;

  text-align: center;
  text-decoration: none;
  line-height: 1.1;

  background: #FF19FA;   /* sólido */
  color: #ffffff;

  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

/* Hover */
body#page-site-index .pide-coursebuttons .pide-btn:hover,
body#page-site-index .pide-coursebuttons .pide-btn:focus{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  filter: brightness(1.06);
  outline: none;
}

/* Móvil */
@media (max-width: 768px){
  body#page-site-index .pide-coursebuttons .pide-btn{
    width: 100%;
    min-width: 0;
    max-width: 520px;
  }
}
