.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-reclamo {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 80px 0 40px;
  text-align: center;
  overflow: hidden;
  background-image: var(--seccion-reclamo-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ti-blk-seccion-reclamo::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-reclamo {
    background-image: var(--seccion-reclamo-bg-mobile, var(--seccion-reclamo-bg));
    padding: 60px 0 24px;
  }
}
.ti-blk-seccion-reclamo__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  min-height: calc(100vh - 120px);
  min-height: calc(100dvh - 120px);
}
.ti-blk-seccion-reclamo__main {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 640px;
}
.ti-blk-seccion-reclamo__title {
  margin: 0;
  color: #40f99b;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  line-height: 45px;
}
@media (max-width: 1024px) {
  .ti-blk-seccion-reclamo__title {
    font-size: 32px;
    line-height: 38px;
  }
}
.ti-blk-seccion-reclamo__btn {
  margin-top: 0;
}
.ti-blk-seccion-reclamo__nota {
  margin: 0;
  width: 100%;
  max-width: 900px;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}
@media (max-width: 1024px) {
  .ti-blk-seccion-reclamo__nota {
    font-size: 11px;
    line-height: 16px;
    max-width: 90%;
  }
}/*# sourceMappingURL=index.css.map */