@media(max-width: 1368px) {
  .banner h1 {
    font-size: 40px;
  }

  .banner p {
    font-size: 22px;
  }
} 

@media(max-width: 992px) {
    .container-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .container-cards {
        grid-template-columns: 1fr;
    }

    header {
        justify-content: flex-end;
    }

    .contact h1 {
        margin-top: 32px;
    }
}

@media(max-width: 560px) {
  .header-sticky {
    display: none!important;
  }
  header {
    display: none!important;
  }

  .background {
    background: linear-gradient(rgba(7, 117, 211, 0.8), rgba(7, 117, 211, 0.8)), url('../img/bg-top.png');
  }

  .banner {
    margin-top: 0;
  }

  .banner h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
  }

  .banner p {
    text-align: center;
  }

  .over {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .titles h2 {
    font-weight: 400;
    font-size: 16px;
  }

  .container-cards {
    gap: 8px;
  }

  #planes.titles h2 {
    font-size: 36px;
    font-weight: 600;
  }

  .footer {
    display: block;
    width: calc(100% - 32px);
    margin-bottom: 16px;
    background-color: #333333;
    border-radius: 12px;
  }
  .footer .footer__content {
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer .footer__content p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #FFF;
    margin-bottom: 0px;
    letter-spacing: 2%;
  }
  .footer .footer__content a {
    border: 0px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
  }
}

@media(max-width: 500px) {
  .long-card-item {
    flex-direction: column;
    gap: 16px;
  }

  .contact {
    margin-top: 28px;
    width: 100%;
    border-radius: 0px;
    padding: 32px 20px;
    margin-bottom: 0;
  }

  #contacto {
    padding: 0;
  }

  #contacto .row {
    flex-direction: column-reverse;
  }

  .contact h1 {
    margin-top: 0;
  }

  .footer {
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }

  .mobile-header {
    background-color: #333333;
    padding: 0 0 0 20px;
    height: 63px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 3;
  }

  .mobile-header button {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 0px;
    background-color: #333333;
    border-radius: 12px;
  } 

  .mobile-header p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #FFF;
    margin-bottom: 0px;
    letter-spacing: 2%;
  }

  #menu-mobile {
    position: absolute;
    top: 63px;
    left: 0;
    right: 0;
    background-color: #333333;
    margin: 0;
    padding: 0;
    z-index: -3;
    overflow: hidden;
    height: 0;
    transition: all .2s ease;
  }

  #menu-mobile li {
    height: 48px;
    display: flex;
    align-items: center;
}

  #menu-mobile li a {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    width: 100%;
    transition: all .2s ease;
  } 

  #menu-mobile.show {
    height: 240px;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
  }

  .container-cards {
    padding: 0;
  }
}