.caz-tarifas-anchor {
  align-items: center;
  background: rgba(0, 126, 229, .08);
  border: 1px solid rgba(0, 126, 229, .18);
  border-radius: 999px;
  color: #005fff !important;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
  line-height: 1;
  margin: 0 0 18px;
  padding: 11px 16px;
  text-decoration: none !important;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.caz-tarifas-anchor:hover,
.caz-tarifas-anchor:focus {
  background: rgba(0, 126, 229, .14);
  border-color: rgba(0, 126, 229, .28);
  color: #003fbd !important;
  transform: translateY(-1px);
}

.caz-tarifas-anchor::before {
  content: "\2193";
  display: inline-block;
  font-size: 15px;
  line-height: 1;
}

.wk-tarifas-programa.caz-tarifas-target {
  scroll-margin-top: 110px;
}

.wk-tarifas-programa.caz-tarifas-highlight {
  animation: cazTarifasPulse 1.1s ease;
}

@keyframes cazTarifasPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 126, 229, .25);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(0, 126, 229, 0);
  }
}

@media (max-width: 575px) {
  .caz-tarifas-anchor {
    justify-content: center;
    margin-bottom: 16px;
    width: 100%;
  }
}

