/* Shared */
.lp-btn {
  padding: 12px 32px;
  border-radius: 8px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.lp-btn.blue {
  border-color: #2c31c9;
  background-color: #2c31c9;
  color: #ffffff;
}

.lp-btn.blue:hover,
.lp-btn.blue:focus-visible {
  border-color: #0a0e80;
  background-color: #0a0e80;
}

.lp-btn.text-variant {
  color: #2c31c9;
}

.lp-btn.text-variant:hover,
.lp-btn.text-variant:focus-visible {
  color: #0a0e80;
}

.lp-btn.text-variant:hover .lp-btn-icon,
.lp-btn.text-variant:focus-visible .lp-btn-icon {
  filter: brightness(0) saturate(100%) invert(9%) sepia(60%) saturate(6736%)
    hue-rotate(243deg) brightness(83%) contrast(114%);
}

.lp-btn-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.lpds-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: transparent;
  color: #303030;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.lpds-button:focus-visible {
  outline: 2px solid #0a0e80;
  outline-offset: 2px;
}

.lpds-button--primary {
  border-color: #2c31c9;
  background-color: #2c31c9;
  color: #ffffff;
}

.lpds-button--primary:hover,
.lpds-button--primary:focus-visible {
  border-color: #0a0e80;
  background-color: #0a0e80;
  color: #ffffff;
}

.info-card{
    display: flex;
    padding: 20px;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 8px;
    background: #EEEDF9;
  }

  .info-card .logo{
    display: flex;
    width: 24px;
    height: 24px;
    padding: 1.5px;
    justify-content: center;
    align-items: center;
  }

  .info-card .info-card-text{
    color:  #10004F;
    font-family: 'Latam-Sans-regular', Arial, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    letter-spacing: 0.2px;
  }

@media (min-width: 992px) {
  .gx-lg-\[88px\] {
    --bs-gutter-x: 88px;
  }
}


/* Section: como-funciona */
#como-funciona {
  padding: 100px 0;
}

@media (min-width: 768px) {
  #como-funciona {
    padding: 72px 0;
  }
}

@media (min-width: 992px) {
  #como-funciona {
    padding: 64px 0;
  }
}

.how-it-works__title {
  margin: 0 0 40px;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.25px;
  color: #303030;
  text-align: center;
}



@media (min-width: 768px) {
  .how-it-works__title {
    font-size: 32px;
    line-height: 42px;
  }
}

@media (min-width: 992px) {
  .how-it-works__layout {
    align-items: stretch !important;
  }
}

@media (min-width: 768px) {
  .how-it-works__details-col {
    display: flex;
    flex-direction: column;
  }
}

.how-it-works__media-col {
  display: flex;
  justify-content: center;
}

.how-it-works__image {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

@media (min-width: 992px) {
  .how-it-works__image {
    max-width: 400px;
  }
}

.how-it-works__steps {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  margin: 0 -16px 40px;
  padding: 0 16px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

@media (min-width: 768px) {
  .how-it-works__steps {
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 32px;
    padding: 0;
    overflow: visible;
    -webkit-overflow-scrolling: auto;
  }
  .how-it-works__image {
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .how-it-works__image {
    padding-bottom: 20px;
  }
}

@media (min-width: 992px) {
  .how-it-works__steps {
    gap: 12px;
    margin: 0 0 24px;
    scrollbar-width: auto;
  }
}

.how-it-works__steps::-webkit-scrollbar {
  display: none;
}

.how-it-works__step {
  flex: 0 0 auto;
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  background-color: #f3f3f3;
  color: #5c5c5c;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .how-it-works__step {
    padding: 8px 16px;
    font-size: 14px;
    line-height: 16px;
    background-color: #ffffff;
  }
}

.how-it-works__step:hover,
.how-it-works__step:focus-visible {
  border-color: #2c31c9;
  color: #2c31c9;
}

.how-it-works__step.active {
  border-color: #2c31c9;
  background-color: #2c31c9;
  color: #ffffff;
}

.how-it-works__heading {
  margin: 0 0 16px;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.25px;
  color: #303030;
}

@media (min-width: 768px) {
  .how-it-works__heading {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (min-width: 992px) {
  .how-it-works__heading {
    font-size: 28px;
    line-height: 36px;
  }
}

.how-it-works__description {
  min-height: 72px;
  margin: 0 0 20px;
  font-family: 'Latam-Sans-Regular', Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.25px;
  color: #303030;
}

@media (min-width: 768px) {
  .how-it-works__description {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (min-width: 992px) {
  .how-it-works__description {
    font-size: 18px;
    line-height: 24px;
  }
}

.how-it-works__link {
  display: inline-flex;
  color: #2c31c9;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .how-it-works__link {
    font-size: 16px;
    line-height: 24px;
  }
}

.how-it-works__link:hover,
.how-it-works__link:focus-visible {
  color: #0a0e80;
  text-decoration: underline;
}

.how-it-works__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .how-it-works__controls {
    justify-content: flex-start;
    gap: 24px;
    margin-top: auto;
    padding-top: 32px;
  }
}

@media (min-width: 992px) {
  .how-it-works__controls {
    gap: 32px;
    padding-top: 24px;
    margin-top: 16px;
  }
}

.how-it-works__control {
  width: 32px;
  height: 32px;
  border: 1px solid #2c31c9;
  border-radius: 7px;
  background-color: #2c31c9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

@media (min-width: 768px) {
  .how-it-works__control {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }
}

@media (min-width: 992px) {
  .how-it-works__control {
    width: 48px;
    height: 48px;
  }
}

.how-it-works__control span {
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  display: block;
}

@media (min-width: 768px) {
  .how-it-works__control span {
    width: 12px;
    height: 12px;
  }
}

@media (min-width: 992px) {
  .how-it-works__control span {
    width: 14px;
    height: 14px;
  }
}

.how-it-works__control--prev span {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.how-it-works__control--next span {
  transform: rotate(45deg);
  margin-right: 5px;
}

.how-it-works__control:hover:not(:disabled),
.how-it-works__control:focus-visible:not(:disabled) {
  border-color: #0a0e80;
  background-color: #0a0e80;
}

.how-it-works__control:disabled {
  border-color: #e8e8e8;
  background-color: #e8e8e8;
  cursor: not-allowed;
}

.how-it-works__control:disabled span {
  border-color: #b8b8b8;
}

/* Section: accumulate-more-miles */
#accumulate-more-miles {
  padding: 100px 0;
  background-color: #f3f3f3;
}

@media (min-width: 768px) {
  #accumulate-more-miles {
    padding: 72px 0;
  }
}

.accumulate-more-miles__header {
  margin-bottom: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .accumulate-more-miles__header {
    margin-bottom: 40px;
  }
}

.accumulate-more-miles__header > h2 {
  margin: 0;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.25px;
  color: #303030;
}

@media (min-width: 768px) {
  .accumulate-more-miles__header > h2 {
    font-size: 32px;
    line-height: 42px;
  }
}

.accumulate-more-miles__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 24px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  background-color: #ffffff;
  color: #303030;
}

.accumulate-more-miles__card > img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.accumulate-more-miles__card > h3 {
  min-height: 0;
  margin: 24px 0;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.25px;
  color: #303030;
}

@media (min-width: 768px) {
  .accumulate-more-miles__card > h3 {
    font-size: 20px;
    line-height: 26px;
  }
}

.accumulate-more-miles__card > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #303030;
}

@media (min-width: 768px) {
  .accumulate-more-miles__card > p {
    margin-top: auto;
  }
}

.accumulate-more-miles__card strong {
  flex: 0 0 auto;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: 0.25px;
}

@media (min-width: 768px) {
  .accumulate-more-miles__card strong {
    font-size: 48px;
    line-height: 62px;
    letter-spacing: -0.5px;
  }
}

.accumulate-more-miles__card span {
  display: flex;
  flex-direction: column;
  font-family: 'Latam-Sans-Regular', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.25px;
}

.accumulate-more-miles__card b {
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.25px;
}

.accumulate-more-miles__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}


.rules-list__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rules-list-participar li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  font-family: Latam-Sans-Regular, sans-serif;
  line-height: 24px;
  color: #303030;
}

.rules-check-participar {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rules-list-participar li span {
  flex: 1;
}

.rules-list-participar li a {
  color: #2D34CE;
  font-weight: 700;
  text-decoration: none;
}

.rules-list-participar li a:hover {
  text-decoration: underline;
}

.rules-list-participar li span b {
  font-weight: 700;
  color: #303030;
}

@media (min-width: 768px) {
  .accumulate-more-miles__actions {
    margin-top: 40px;
  }
}

.accumulate-more-miles__link {
  width: 228px;
  min-height: 48px;
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 768px) {
  .accumulate-more-miles__link {
    width: auto;
    min-width: 228px;
    padding-right: 32px;
    padding-left: 32px;
  }
}

/* Section: beneficios */
#beneficios {
  padding: 100px 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #beneficios {
    padding: 72px 0;
  }
}

.benefits__title {
  margin: 0 0 32px;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.25px;
  color: #303030;
  text-align: center;
}

@media (min-width: 768px) {
  .benefits__title {
    margin: 0 0 40px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.25px;
  }
}

.benefits__grid {
  --bs-gutter-x: 0;
  --bs-gutter-y: 24px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .benefits__grid {
    --bs-gutter-x: 24px;
  }
}

@media (min-width: 992px) {
  .benefits__grid {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
  }
}

.benefits__card {
  height: 100%;
  padding: 32px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  background-color: #ffffff;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .benefits__card {
    min-height: 304px;
    padding: 28px 24px;
    border-radius: 14px;
  }
}

@media (min-width: 992px) {
  .benefits__card {
    min-height: 340px;
    padding: 32px 24px;
    border-radius: 14px;
  }
}

.benefits__card img {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .benefits__card img {
    width: 64px;
    height: 64px;
  }
}

@media (min-width: 992px) {
  .benefits__card img {
    width: 72px;
    height: 72px;
  }
}

.benefits__card h3 {
  margin: 0 0 16px;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.25px;
  color: #303030;
}

@media (min-width: 768px) {
  .benefits__card h3 {
    margin: 0 0 20px;
    font-size: 22px;
    line-height: 28px;
  }
}

@media (min-width: 992px) {
  .benefits__card h3 {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: 32px;
  }
}

.benefits__card p {
  margin: 0;
  font-family: 'Latam-Sans-Regular', Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.25px;
  color: #303030;
}

@media (min-width: 768px) {
  .benefits__card p {
    font-size: 16px;
    line-height: 22px;
  }
}

@media (min-width: 992px) {
  .benefits__card p {
    font-size: 18px;
    line-height: 24px;
  }
}

.benefits__actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .benefits__actions {
    margin-top: 40px;
  }
}

.benefits__link {
  min-width: 140px;
}

@media (min-width: 992px) {
  .benefits__link {
    min-width: 151px;
  }
}

/* Section: termos */
#termos {
  padding: 100px 0;
  background-color: #f3f3f3;
  color: #303030;
}

@media (min-width: 768px) {
  #termos {
    padding: 64px 0;
  }
}

@media (min-width: 992px) {
  #termos {
    padding: 56px 0;
  }
}

.terms__card {
  border-radius: 24px;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .terms__card {
    border-radius: 16px;
  }
}

.terms__body {
  padding: 32px 16px;
}

@media (min-width: 768px) {
  .terms__body {
    padding: 32px;
  }
}

.terms__title {
  margin: 0 0 24px;
  font-family: 'Latam-Sans-Bold', Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.25px;
  color: #303030;
}

@media (min-width: 768px) {
  .terms__title {
    margin: 0 0 16px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.25px;
  }
}

.terms__text {
  margin: 0 0 24px;
  font-family: 'Latam-Sans-Regular', Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.25px;
  color: #303030;
}

@media (min-width: 768px) {
  .terms__text {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.25px;
  }
}

.terms__link {
  align-items: center;
  gap: 4px;
  text-align: left;
}

.terms__link-icon {
  margin-top: 2px;
}

