.btn-blue {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #216a93;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-blue:hover {
  background-color: #1a73e9;
}

.btn-verde {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #40f99b;
  transition: all 0.3s ease;
}
.btn-verde:hover {
  background-color: #b9fddb;
}

.btn-blanco {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.btn-blanco:hover {
  background-color: #e6eaed;
}

.ti-blk-seccion-gracias {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding-block: 4rem;
  text-align: center;
  overflow: hidden;
  background-image: var(--seccion-gracias-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ti-blk-seccion-gracias::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(33, 106, 147, 0.8) 0%, #216A93 100%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .ti-blk-seccion-gracias {
    background-image: var(--seccion-gracias-bg-mobile, var(--seccion-gracias-bg));
    min-height: 60vh;
  }
}
.ti-blk-seccion-gracias__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 640px;
}
.ti-blk-seccion-gracias__title {
  margin: 0;
  color: #40f99b;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  line-height: 45px;
}
.ti-blk-seccion-gracias__subtitle {
  color: #40f99b;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.ti-blk-seccion-gracias__btn {
  margin-top: 0.5rem;
}/*# sourceMappingURL=index.css.map */