.azul__50--col {
  color: #F1F7FE;
}
.azul__50--bg {
  background-color: #F1F7FE;
}
.azul__50--gradient {
  background: #F1F7FE;
  background: linear-gradient(180deg, rgb(241, 247, 254) 0%, rgb(255, 255, 255) 100%);
}
.azul__50--gradient--reverse {
  background: #F1F7FE;
  background: linear-gradient(0deg, rgb(241, 247, 254) 0%, rgb(255, 255, 255) 100%);
}
.azul__900--col {
  color: #133D69;
}
.azul__900--bg {
  background-color: #133D69;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

.caption {
  line-height: 1.3;
  font-weight: 600;
  color: #133D69;
  letter-spacing: 2px;
  font-size: 14px;
}
.caption__white {
  color: white;
}

.tit {
  font-family: "Montserrat", sans-serif;
}
.tit__hero {
  line-height: 120%;
  color: #133D69;
}
.tit__h2 {
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
  letter-spacing: -0.5px;
  line-height: 120%;
}
.tit__h3 {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.5px;
  line-height: 120%;
}
.tit__h4 {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 140%;
}

p {
  line-height: 160%;
}

.destacado {
  position: relative;
  color: #133D69;
  padding-left: 16px;
  font-size: 18px;
  line-height: 150%;
}
.destacado::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 0px;
  background-color: #133D69;
}

/* BTN */
.btn {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  border-radius: 24px;
  transition: all 0.3s;
}
.btn svg {
  transition: all 0.3s;
}
.btn__principal {
  background-color: #133D69;
  color: white;
}
.btn__principal:hover {
  background-color: #0E5296;
}
.btn__principal:hover svg {
  transform: rotate(45deg);
}
.btn__special {
  color: white;
  background-color: #004A22;
}
.btn__special:hover {
  background-color: #0c6f36;
}
.btn__special:hover svg {
  transform: rotate(45deg);
}

.link {
  color: white;
  display: flex;
  white-space: nowrap;
  gap: 12px;
}
.link svg {
  transition: all 0.3s;
  margin-top: 5px;
}
.link__azul {
  color: #133D69;
}
.link:hover {
  text-decoration: underline;
}
.link:hover svg {
  transform: rotate(45deg);
}

/* HEADER NAV */
@media screen and (max-width: 1023px) {
  .header_nav .nav__movil {
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: 0px;
    right: 0;
    margin: 0;
    padding: 0px;
    background-color: white;
    z-index: 99;
    transform: translateX(100%);
  }
}
.header_nav .nav .links__hover a {
  position: relative;
}
.header_nav .nav .links__hover a:hover {
  color: #133D69;
}
.header_nav .nav .links__hover a.active {
  color: #133D69;
}
.header_nav .nav .links__hover a.active::before {
  position: absolute;
  content: "";
  top: 5px;
  left: -16px;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  border: 1px solid #0E5296;
}
.header_nav .nav {
  /* PERSONALIZADO */
}
.header_nav .nav .burger {
  position: absolute;
  top: 72px;
  right: 16px;
  transition: all 0.3s ease-in-out;
}
.header_nav .nav .logo-content {
  position: relative;
  height: 160px;
}
.header_nav .nav .logo-full {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 1;
}
.header_nav .nav .logo-half {
  position: absolute;
  top: 12px;
  left: 0;
  right: 8px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(1);
}

.scroll-header {
  top: 0px;
  left: 0px !important;
  width: 100% !important;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) !important;
  border-radius: 0px !important;
}
.scroll-header .nav__menu {
  top: 0px;
}
.scroll-header .nav .burger {
  top: 48px !important;
}
.scroll-header {
  /* PERSONALIZADO */
}
.scroll-header .links__hover {
  padding-block: 0px !important;
}
.scroll-header .logo-content {
  animation-name: scroll-content;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.scroll-header .logo-full {
  animation-name: scroll-full;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
.scroll-header .logo-half {
  animation-name: scroll-half;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

@keyframes scroll-content {
  0% {
    height: 160px;
  }
  100% {
    height: 60px;
  }
}
@keyframes scroll-full {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll-half {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(0.6);
    top: -20px;
  }
}
.card {
  display: flex;
  align-items: center;
  flex-direction: row;
  border: 1px solid #BFDCF8;
  border-radius: 16px;
  transition: all 0.3s;
}
.card:hover {
  background-color: #F1F7FE;
}
@media screen and (max-width: 1280px) {
  .card {
    flex-direction: column;
  }
}
@media screen and (max-width: 1280px) and (max-width: 768px) {
  .card {
    max-width: 500px;
    margin-inline: auto;
  }
}
.card__slider {
  background-color: white;
  border-radius: 16px;
  padding: 40px 40px 80px 40px;
  max-width: 400px;
  min-height: 300px;
}
@media screen and (max-width: 1280px) {
  .card__slider {
    max-width: 300px;
  }
}
.card__slider--item {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .card__slider--item {
    gap: 48px;
  }
}

.swiper {
  width: 100%;
}

.banner__contacto::before {
  border-radius: 16px;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004A22;
  mix-blend-mode: multiply;
}

.equipo__overlay {
  position: relative;
  overflow: hidden;
  border-radius: 0px 0px 12px 12px;
}
.equipo__overlay::before {
  position: absolute;
  content: "";
  bottom: 0px;
  width: 100%;
  height: 50%;
  background: #FFFFFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(19, 61, 105) 80%, rgb(19, 61, 105) 100%);
  transition: all 0.3s;
  transform: translateY(100px);
  opacity: 0;
}
.equipo__overlay--social {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  z-index: 2;
  padding-bottom: 16px;
}
.equipo__overlay--social li {
  width: 32px;
  height: 32px;
}
.equipo__overlay--social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #133D69;
  border-radius: 50px;
  border: 1px solid #133D69;
  transition: all 0.3s;
  opacity: 0;
}
.equipo__overlay--social li a:hover {
  background-color: #0E5296;
  border: 1px solid #dadada;
}
.equipo:hover .equipo__overlay::before {
  transform: translateY(0px);
  opacity: 1;
}
.equipo:hover li a {
  opacity: 1;
}

/* FORMULARIO */
.input, textarea {
  width: 100%;
  border: none;
  background-color: white;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  padding: 10px 16px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.input::-moz-placeholder, textarea::-moz-placeholder {
  color: #7a7a7a;
}
.input::placeholder, textarea::placeholder {
  color: #7a7a7a;
}

textarea {
  height: 140px;
}

/* MENSAJE DE ERROR */
.formulario__grupo-input {
  position: relative;
}

.formulario__input-error {
  font-size: 0.9rem;
  margin-bottom: 0px;
  padding: 4px 8px;
  display: none;
}

.formulario__input-error-activo {
  display: block;
}

.formulario__validacion-estado {
  position: absolute;
  right: 6px;
  top: 28px;
  z-index: 100;
  font-size: 16px;
  opacity: 0;
}

#banner_reserva .formulario__validacion-estado {
  position: absolute;
  right: unset;
  top: 18px;
  margin-left: 120px;
}

#banner_reserva .item_form:nth-child(2) .formulario__validacion-estado {
  margin-left: 144px;
}

#banner_reserva .item_form:nth-child(4) .formulario__validacion-estado {
  margin-left: 156px;
}

.formulario__mensaje, .formulario__captcha {
  height: 45px;
  line-height: 45px;
  background: #F66060;
  padding: 0 15px;
  border-radius: 3px;
  margin-bottom: 12px;
  display: none;
}

.formulario__mensaje-activo {
  display: block;
}

.formulario__mensaje-exito {
  margin-top: 8px;
  font-size: 14px;
  background-color: #1eab0b;
  padding: 10px 15px;
  color: white;
  display: none;
}

.formulario__mensaje-exito-activo {
  display: block;
}

/* Estilos para Validacion */
.formulario__grupo-correcto .formulario__validacion-estado {
  color: #1ed12d;
  opacity: 1;
}

.formulario__grupo-incorrecto .formulario__label {
  color: #bb2929;
}

.formulario__grupo-incorrecto .formulario__validacion-estado {
  color: #bb2929;
  opacity: 1;
}

.formulario__grupo-incorrecto .formulario__input {
  border: 3px solid #bb2929;
}/*# sourceMappingURL=style.css.map */