/* BOTONES */
.btn,
.btn-white {
  background-color: transparent;
  border: none;
  border-radius: 0px;
  font-family: 'Montserrat';
  font-weight: 400;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 0px;
  vertical-align: middle;
  position: relative;
  z-index: 0;
  transition: all .3s ease-out;
  text-decoration: none;
}

.btn-white {
  color: var(--c-negro);
}

.btn-white {
  color: var(--c-blanco);
}

.btn::after,
.btn-white::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.btn::after {
  background-color: var(--c-negro);
}

.btn-white::after {
  background-color: var(--c-blanco);
}

.btn svg,
.btn-white svg {
  transition: all .4s ease-out;
  width: 11px;
  height: 11px;
  margin-left: 20px;
}

.btn svg line {
  stroke: var(--c-negro);
}

.btn span {
  color: var(--c-negro);
}

.btn-white span {
  color: var(--c-blanco);
}

.btn:hover,
.btn-white:hover {
  padding: 12px 0 12px 6px;
}

.btn:hover::after,
.btn-white:hover::after {
  width: 100%;
}

.btn:hover svg,
.btn-white:hover svg {
  transform: rotate(-90deg);
}

.btn-tlf a {
  background: var(--c-negro) !important;
  color: var(--c-blanco) !important;
  border: 1.5px solid var(--c-negro) !important;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 15px 30px 15px 45px !important;
  text-align: center;
  vertical-align: middle;
  position: relative;
  z-index: 0;
  transition: all 0.35s ease-out;
  text-decoration: none;
}

.btn-tlf a::before {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/2025/03/ico-tlf.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 15px;
  height: 15px;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all 0.35s ease-in-out;
  animation: icoTlf 0.35s fowards;
}

.btn-tlf a::after {
  content: "";
  background-color: var(--c-blanco) !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: all 0.35s ease;
}

.btn-tlf a:hover {
  color: var(--c-negro) !important;
}

.btn-tlf a:hover::before {
  transform: rotate(90deg);
  filter: brightness(0);
}

.btn-tlf a:hover::after {
  width: 100%;
}

@keyframes icoTlf {
  0% {
    transform: rotate(0deg);
    filter: brightness(1);
  } 100% {
    transform: rotate(90deg);
    filter: brightness(0);
  }
}
