.background {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 500px;
    max-height: 500px;
    background: linear-gradient(to right, #0775D3 0%, #0775D3 64%, rgba(0, 0, 0, 0) 80%), url('../img/bg-top.png');
    background-position: center right;
    background-repeat: no-repeat;
}

.over {
    height: 500px;
    max-height: 500px;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 86px;
    margin-top: 30px;
}

header img {
    position: absolute;
    left: 0;
    top: 0;
}

header ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 16px;
}

header ul li {
    height: 48px;
}

header ul li a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFF;
    text-decoration: none;
    transition: all .2s ease;
}

header ul li a:hover {
    color: #EB255D;
    transition: all .2s ease;
}

.header-sticky {
  position: fixed;
  z-index: 99;
  top: -48px;
  height: 48px;
  width: 100%;
  background-color: #0775D3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.header-sticky.show {
  top: 0;
  transition: all .2s ease;
}

.header-sticky ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 16px;
}

.header-sticky ul li {
    height: 48px;
    display: flex;
    align-items: center;
}

.header-sticky ul li a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFF;
    text-decoration: none;
    transition: all .2s ease;
}

.header-sticky ul li a:hover {
    color: #EB255D;
    transition: all .2s ease;
}

.banner {
    margin-top: 56px;
}

.banner h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 47px;
    color: #FFF;
    margin-bottom: 20px;
}

.banner p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 1px;
    color: #FFF;
}

.titles {
    margin-top: 64px;
}

.titles h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 36px;
    letter-spacing: 1px;
    color: #1F1F1F;
    text-align: center;
    text-transform: uppercase;
}

.titles h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 48px;
    color: #161C2D;
    text-align: center;
    margin-top: 36px;
}

.container-cards {
    margin-top: 36px;
    margin-bottom: 36px;
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 1fr 1fr;
    flex-wrap: wrap;
    gap: 36px 32px;
    padding: 0 32px;
}

.card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 16px;
    gap: 16px;
    border-radius: 16px;
    box-shadow: 0px 8px 11px rgba(0, 0, 0, 0.12);
    border: 1px solid #E8E8E8;
    height: 100%;
}

.card-item .text .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #263238;
    text-align: center;
}

.card-item .text p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #263238;
    text-align: center;
}

.container-long-card {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.long-card-item {
    border-radius: 16px;
    background-color: #407BFF;
    display: flex;
    align-items: flex-start;
    padding: 32px 16px;
    gap: 16px;
}

.long-card-item .text .title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #FFF;
    margin-bottom: 12px;
}

.long-card-item .text p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: #FFF;
    margin: 0;
}

.contact {
    background-image: url("../img/contact-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 32px;
    overflow: hidden;
    margin-top: 64px;
    margin-bottom: 32px;
    padding: 50px 64px;
  }
  .contact h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: normal;
    color: #0A0D17;
    margin-bottom: 20px;
  }
  .contact p {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: normal;
    color: #161C2D;
    margin-bottom: 0px;
    letter-spacing: 2%;
  }

.contact .contact__form {
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.3s linear;
  }
  .contact .contact__form form {
    padding: 16px 16px 16px 50px;
  }
  .contact .contact__form form .form__group {
    display: flex;
    align-items: center;
  }
  .contact .contact__form form .form__group input[type=text] {
    margin-left: 16px;
    margin-right: 16px;
  }
  .contact .contact__form form .form__group input[type=text]:first-child {
    margin-left: 0px !important;
  }
  .contact .contact__form form .form__group input[type=text]:last-child {
    margin-right: 0px !important;
  }
  .contact .contact__form form input[type=text] {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    padding: 15px;
    font-size: 16px;
    line-height: 24px;
  }
  .contact .contact__form form button {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px;
    border-radius: 8px;
    background-color: #EB255D;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 0px;
    line-height: 0;
    transition: all 0.2s ease;
  }
  .contact .contact__form form button:hover {
    background-color: #A00C36;
    transition: all 0.2s ease;
  }
  @media (max-width: 1199px) {
    .contact .contact__form form {
      width: 100%;
    }
  }
  @media (max-width: 992px) {
    .contact .contact__form form {
      padding: 32px 0 0 0;
    }
  }
  @media (max-width: 767px) {
    .contact .contact__form form .form__group {
      display: block;
    }
    .contact .contact__form form .form__group input[type=text] {
      margin-left: 0;
      margin-right: 0;
    }
  }
  .contact .contact__form.hidden {
    height: 50%;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, height 1s, opacity 0.3s linear;
  }
  .contact .contact__info {
    overflow: hidden;
    transition: opacity 0.3s linear;
  }
  .contact .contact__info.hidden {
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, height 1s, opacity 0.3s linear;
  }
  .contact .msg-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: opacity 0.5s linear;
    position: absolute;
    top: 64px;
    left: 0;
  }
  .contact .msg-form * {
    text-align: center;
  }
  .contact .msg-form.hidden {
    opacity: 0;
    transition: visibility 0s, opacity 0.5s linear;
  }
  .contact .msg-form.show {
    opacity: 1;
    visibility: visible;
  }
  @media (max-width: 767px) {
    .contact {
      padding-top: 32px;
      padding-bottom: 32px;
    }
    .contact h5 {
      color: #FCD34D;
    }
    .contact h6 {
      margin-bottom: 16px;
    }
  }
  @media (max-width: 575px) {
    .contact {
      width: calc(100% - 32px);
      background-image: none;
      background-color: #EEE;
      padding: 32px 16px;
    }
  }

#funciones, #planes {
  scroll-margin-top: 110px;
}

.footer {
  display: none;
}

.mobile-logo {
  display: none;
}

.mobile-header {
  display: none;
}