* {
  font-family: "Montserrat", sans-serif;
}

.ff-baloo {
  font-family: "Baloo 2", cursive;
}

#fondo-cabecera {
  background: linear-gradient(90deg, #e9c46a, #f4a261, #e76f51);
}

#section-contacto {
  background: linear-gradient(90deg, #e76f51, #f4a261, #e9c46a);
}

#fondo-datos {
  background-image: url(../medios/shape-2.png);
  background-size: cover;
  background-color: white;
}

#fondo-footer {
  background-image: url(../medios/footer-5.png);
  background-size: cover;
  background-color: white;
}

.animacion-subrayado::after {
  content: "";
  display: block;
  height: 3px;
  background-color: #e76f51;
  transform: scale(0, 1);
  transform-origin: center;
  transition: transform 0.5s;
}

.animacion-subrayado:hover::after {
  transform: scale(1, 1);
}

.btn-flotante {
  background-color: #e76f51;
  padding: 12px 12px;
  position: fixed;
  bottom: 20px;
  right: 50px;
  transition: all 300ms ease 0ms;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.btn-flotante:hover {
  background-color: #e9c46a;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-7px);
}

.btn-llamanos {
  padding: 10px 30px;
  transition-duration: 500ms;
  transition-timing-function: ease;
  transform: scale(1);
}

.btn-llamanos:hover {
  transition-duration: 500ms;
  transition-timing-function: ease;
  transform: scale(1.2);
}

.slide-in-fwd-center {
  -webkit-animation: slide-in-fwd-center 3s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    both;
  animation: slide-in-fwd-center 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}

@media only screen and (max-width: 600px) {
  .btn-flotante {
    font-size: 14px;
    padding: 12px 12px;
    bottom: 20px;
    right: 20px;
  }
}

.pulsate-fwd {
  -webkit-animation: pulsate-fwd 0.8s ease-in-out infinite both;
  animation: pulsate-fwd 0.8s ease-in-out infinite both;
}

@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
