/* Contenedor general */
.botones-acceso {
  padding: 20px;
}

/* Título */
.botones-acceso h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}

/* Contenedor de ítems */
.botones-acceso > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
}

/* Cada ítem */
.botones-acceso .responsive-item {
  flex: 1 1 250px; /* mínimo 250px, crece según espacio */
  max-width: 200px;
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

/* Imagen dentro del ítem */
.botones-acceso .responsive-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Enlace */
.botones-acceso .responsive-item a {
  display: block;
  text-decoration: none;
  color: #009ade;
  font-size: 18px;
  font-weight: bold;
}

.botones-acceso .responsive-item a span {
  display: block;
  margin-top: 10px;
}
