*,
:after,
:before {
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #20214f;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: center;
}

.title-gradient {
  background: -webkit-linear-gradient(45deg, #20214f, #9a9a9b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #5f5e5e;
  text-align: center;
  font-weight: 500;
  margin-bottom: 2rem;
}

.btn, .message-page .button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #20214f;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  border: none;
}
.btn:hover, .message-page .button:hover {
  background-color: rgb(229.5, 229.5, 229.5);
  cursor: pointer;
}
.btn.btn-gray, .message-page .btn-gray.button {
  background-color: #9b9b9b;
  color: #ffffff;
}
.btn.btn-transparent, .message-page .btn-transparent.button {
  background-color: transparent;
  color: #ffffff;
}

.arrow {
  border: solid #20214f;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  margin-top: 3px;
}
.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.icon-w-24 {
  display: inline-block;
  width: 24px;
  height: 24px;
}

textarea {
  resize: none;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media only screen and (min-width: 992px) {
  .container {
    padding: 0 32px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

h1, h2, h3 {
  font-weight: 500;
}

.header {
  background-color: #ffffff;
  padding: 0 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.header__left {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header__left .mobile-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 8px;
}
@media (min-width: 1024px) {
  .header__left .mobile-nav {
    display: none;
  }
}
.header__left .mobile-nav__toggle {
  display: flex;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #20214f;
}
.header__left .mobile-nav__list {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem;
}
.header__left .mobile-nav__list.active {
  transform: translateX(0);
}
.header__left .mobile-nav__item {
  list-style: none;
  padding: 0;
  font-weight: 500;
}
.header__left .mobile-nav__item.title {
  color: #20214f;
  text-decoration: none;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}
.header__left .mobile-nav__item.title:hover {
  color: #f7ab3e;
}
.header__left .mobile-nav__item.subtitle {
  color: #5f5e5e;
  margin-left: 1rem;
  font-size: 1.3rem;
}
.header__left .mobile-nav__item.subtitle a {
  color: #5f5e5e;
}
.header__left .mobile-nav__item a {
  color: #20214f;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__left .mobile-nav__item a:hover {
  color: #f7ab3e;
}
.header__left .mobile-nav__item.icons {
  margin-bottom: 10px;
}
.header__left .mobile-nav__item.icons > a {
  color: #5f5e5e;
}
.header__left .mobile-nav__item.icons > a > img {
  width: 25px;
  position: relative;
  top: 4px;
  margin-right: 12px;
}
.header__left .mobile-nav__separator {
  width: 100%;
  margin-top: 20px;
  list-style: none;
}
.header__left .mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #20214f;
}
.header__left .logo {
  height: 40px;
}
.header .nav {
  display: none;
}
@media (min-width: 1024px) {
  .header .nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
}
.header .nav__link {
  color: #20214f;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header .nav__link:hover {
  color: #f7ab3e;
}
.header .nav .dropdown {
  position: relative;
  display: inline-block;
}
.header .nav .dropdown .dropbtn {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: transparent;
  color: #20214f;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
.header .nav .dropdown .dropbtn:hover {
  color: #f7ab3e;
}
.header .nav .dropdown .dropbtn:hover .arrow {
  border-color: #f7ab3e;
}
.header .nav .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.header .nav .dropdown .dropdown-content a {
  color: #20214f;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.header .nav .dropdown .dropdown-content a:hover {
  background-color: #f1f1f1;
}
.header .nav .dropdown:hover .dropdown-content {
  display: block;
}
.header .nav .phone {
  color: #20214f;
  text-decoration: none;
}
.header .nav .phone img {
  width: 20px;
  position: relative;
  top: 4px;
  right: 2px;
}
.header .nav .contac img {
  width: 20px;
  position: relative;
  top: 1px;
  right: 2px;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__right .language-selector {
  display: flex;
  align-items: center;
}
.header__right .language-selector__btn {
  background: none;
  border: none;
  color: #20214f;
  cursor: pointer;
}
.header__right .language-selector__divider {
  color: rgb(152.5135135135, 153.8108108108, 213.4864864865);
  margin: 0 0.5rem;
}

.nav-mobile {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}
@media only screen and (min-width: 768px) {
  .nav-mobile {
    display: none;
  }
}
.nav-mobile__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #20214f;
  text-decoration: none;
  padding: 0px 8px;
  font-size: 0.8rem;
}
.nav-mobile__item img {
  width: 24px;
}

.footer {
  background-color: #dadada;
  color: #20214f;
  padding: 4rem 0;
  padding-bottom: 65px;
}
@media only screen and (min-width: 768px) {
  .footer {
    padding-bottom: 0;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  width: 80%;
  margin: auto;
  margin-bottom: 2rem;
}
.footer__title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.footer__title a {
  color: #20214f;
  text-decoration: none;
  font-weight: 500;
}
.footer__list {
  list-style-type: none;
  padding-left: 0;
}
.footer__list li {
  margin-bottom: 0rem;
}
.footer__list li a {
  color: #20214f;
  text-decoration: none;
}
.footer__banner {
  background: rgb(39, 33, 77);
  background: linear-gradient(90deg, #20214f 0%, #dadada 82%);
  padding: 32px;
}
.footer__banner .footer__banner-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.footer__banner .footer__banner-items .language-wrap, .footer__banner .footer__banner-items .seguro-wrap, .footer__banner .footer__banner-items .social-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__banner .footer__banner-items .language-wrap .seguro-img, .footer__banner .footer__banner-items .seguro-wrap .seguro-img, .footer__banner .footer__banner-items .social-wrap .seguro-img {
  width: 170px;
}
.footer__banner .footer__banner-items .seguro-wrap {
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 992px) {
  .footer__banner .footer__banner-items .seguro-wrap {
    flex-direction: row;
  }
}
.footer__bottom {
  background: #20214f;
  padding: 32px;
  margin-top: 16px;
}
.footer__bottom .footer__bottom-items {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.footer__bottom .footer__bottom-items .left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 auto;
  gap: 16px;
}
.footer__bottom .footer__bottom-items .left-side img {
  width: 100%;
  max-width: 280px;
}
.footer__bottom .footer__bottom-items .left-side a {
  color: #ffffff;
  text-decoration: none;
}
.footer__bottom .footer__bottom-items .middle-side {
  color: #ffffff;
  text-align: center;
  flex: 1 1 auto;
  font-size: 0.8rem;
}
.footer__bottom .footer__bottom-items .right-side {
  color: #ffffff;
  font-size: 0.8rem;
  flex: 1 1 auto;
}
.footer__bottom .footer__bottom-items .right-side p {
  margin: 0;
  text-align: right;
}
.footer__bottom .footer__bottom-items .right-side p.right-side__name {
  font-size: 1.2rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.message-page {
  padding: 2rem;
  text-align: center;
  max-width: 1200px;
  padding: 200px 0;
  margin: 0 auto;
}
.message-page .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.message-page .subtitle {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 2rem;
}
.message-page .content {
  font-size: 1rem;
  color: #20214f;
  margin-bottom: 2rem;
}
.message-page .flatpage {
  font-size: 1rem;
  color: #20214f;
  margin-bottom: 2rem;
  text-align: left;
}
.message-page .button {
  background-color: #ffffff;
  color: #20214f;
}
.message-page .button:hover {
  background-color: rgb(229.5, 229.5, 229.5);
  cursor: pointer;
}

.alert {
  padding: 14px 32px;
  font-weight: bold;
  border-radius: 25px;
}
.alert.alert-danger {
  background-color: #e41b13;
  border-color: #f5c6cb;
  color: white;
}

.link-whatsapp {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  background-color: #00cf46;
  padding: 10px;
  padding-right: 12px;
  padding-bottom: 12px;
  border-radius: 100%;
}
.link-whatsapp img {
  width: 35px;
  height: 35px;
  margin-left: 5px;
  position: relative;
  top: 5px;
}
.link-whatsapp:hover {
  cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .dd-otros-destinos {
    display: none !important;
  }
}

/*# sourceMappingURL=styles.css.map */
