
/* BOTÓN BANNER AJAX */

/* CONTENEDOR */
#st_banner_block_114 {
  position: relative;
}

/* POSICIÓN DEL BOTÓN */
.custom_banner_button {
  position: absolute;
  left: 22%;
  bottom: 13%;
  transform: translateX(-50%);
  z-index: 10;
}

/* ESTILO BOTÓN */
.custom-btn {
  display: inline-block;
  background: #174a7c;
  color: #fff !important;

  /* Escalado automático */
  padding: clamp(6px, 1vw, 14px) clamp(10px, 2vw, 24px);
  font-size: clamp(11px, 1vw, 15px);

  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;

  transition: all 0.3s ease;
}

/* HOVER */
.custom-btn:hover {
  background: #12385e;
  transform: translateY(-2px);
}

/* ============================= */
/* Adaptativo */
/* ============================= */

/* Tablet */
@media (max-width: 992px) {
  .custom_banner_button {
    left: 23%;
    bottom: 12%;
  }
}

/* Móvil */
@media (max-width: 768px) {
  .custom_banner_button {
    left: 25%;
    bottom: 10%;
  }
}

/* Móvil pequeño */
@media (max-width: 480px) {
  .custom_banner_button {
    left: 25%;
    bottom: 8%;
  }
}

/* Móvil muy pequeño */
@media (max-width: 360px) {
  .custom-btn {
    font-size: 10px;
  }
}