@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Noto Sans", Arial, sans-serif;
  background-color: #f3f3f3;
  color: #242424;
  padding: 0;
  margin: 0;
}
body::before {
  content: "";
  position: fixed;
  z-index: 9997 !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #611232;
  pointer-events: none;
}
@media (max-width: 767px) {
  body::before {
    height: 60px;
  }
}

.main-content {
  position: relative;
  margin-top: 130px;
  margin-bottom: 5rem;
}

.m-main-c {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .main-content {
    margin-top: 110px;
    margin-bottom: 3.5rem;
  }
  .m-main-c {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
}
.container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 374px) {
  .container-fluid {
    max-width: 374px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  .container-fluid {
    max-width: 767px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .container-fluid {
    max-width: 1023px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .container-fluid {
    max-width: 1439px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1440px) {
  .container-fluid {
    max-width: 1440px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.rounded {
  border-radius: 8px !important;
}

.rounded-xl {
  border-radius: 16px !important;
}

.required::before {
  content: "*";
  color: #ae1c22;
  font-size: 16px;
  margin-right: 4px; /* espaciado entre el * y el texto */
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* Tu flecha SVG */
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='15' height='8.55' viewBox='0 0 16 10' fill='none'><path d='M8 9.49995L0.5 1.99995L1.55 0.949951L8 7.39995L14.45 0.949951L15.5 1.99995L8 9.49995Z' fill='%23161A1D'/></svg>") no-repeat right 1.35rem center/15px 8.55px;
  padding-right: 3rem; /* 🔥 MÁS espacio entre texto y flecha */
  cursor: pointer;
}

.form-label {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 420px) {
  .form-label {
    max-width: 298px;
    text-align: left;
  }
}
@media (max-width: 640px) {
  .form-label {
    max-width: 389px;
    text-align: left;
  }
}

.form-check-label {
  font-size: 16px;
  font-weight: 400;
  max-width: 248px;
  text-align: left;
}

.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Caja tooltip */
.tooltip {
  visibility: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  bottom: 120%; /* aparece arriba del icono */
  right: 0; /* pegado a la derecha */
  z-index: 10;
}

/* Caja visual */
.tooltip-box {
  background: #edf2fe;
  color: #224497;
  border: 1px solid #224497;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  min-width: 320px;
  max-width: 500px;
  line-height: 1.4;
  position: absolute;
  bottom: 130%; /* encima del icono */
  left: 50%; /* referencia al centro del icono */
  transform: translateX(-92%); /* centra horizontalmente */
}

/* Flechita */
.tooltip-box .tooltip-arrow {
  content: "";
  position: absolute;
  bottom: -10px; /* debajo del tooltip */
  right: 22.5px; /* referencia al centro del icono */
  transform: translateX(0%);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #edf2fe transparent transparent transparent;
  filter: drop-shadow(0px 1px 0px #224497);
}

/* Mostrar al hover */
.tooltip-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.alert-info {
  padding: 8px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #edf2fe;
  color: #224497;
  text-align: left;
}

hr {
  border-top: 1px solid #767676 !important;
}

.divider {
  border-top: 1px solid #dddddd !important;
}

.card-box-shadow {
  border-radius: 16px;
  background: #fff;
  box-shadow: 2px 2px 30px 0 rgba(0, 0, 0, 0.2);
}

.primary--text {
  color: #611232 !important;
}

.bg-primary {
  background-color: #611232 !important;
}

.border-primary {
  border-color: #611232 !important;
}

.primary-dark--text {
  color: #3a0b1e !important;
}

.bg-primary-dark {
  background-color: #3a0b1e !important;
}

.border-primary-dark {
  border-color: #3a0b1e !important;
}

.secondary--text {
  color: #a57f2c !important;
}

.bg-secondary {
  background-color: #a57f2c !important;
}

.border-secondary {
  border-color: #a57f2c !important;
}

.background--text {
  color: #f3f3f3 !important;
}

.bg-background {
  background-color: #f3f3f3 !important;
}

.border-background {
  border-color: #f3f3f3 !important;
}

.text--text {
  color: #161a1d !important;
}

.bg-text {
  background-color: #161a1d !important;
}

.border-text {
  border-color: #161a1d !important;
}

.white--text {
  color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.border-white {
  border-color: #ffffff !important;
}

.gray--text {
  color: #f8f8f8 !important;
}

.bg-gray {
  background-color: #f8f8f8 !important;
}

.border-gray {
  border-color: #f8f8f8 !important;
}

.noto-sans {
  font-family: "Noto Sans", sans-serif !important;
}

.patria {
  font-family: "Patria", sans-serif !important;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

@media (min-width: 320px) {
  .fw-xs-100 {
    font-weight: 100 !important;
  }
  .fw-xs-200 {
    font-weight: 200 !important;
  }
  .fw-xs-300 {
    font-weight: 300 !important;
  }
  .fw-xs-400 {
    font-weight: 400 !important;
  }
  .fw-xs-500 {
    font-weight: 500 !important;
  }
  .fw-xs-600 {
    font-weight: 600 !important;
  }
  .fw-xs-700 {
    font-weight: 700 !important;
  }
  .fw-xs-800 {
    font-weight: 800 !important;
  }
  .fw-xs-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 375px) {
  .fw-sm-100 {
    font-weight: 100 !important;
  }
  .fw-sm-200 {
    font-weight: 200 !important;
  }
  .fw-sm-300 {
    font-weight: 300 !important;
  }
  .fw-sm-400 {
    font-weight: 400 !important;
  }
  .fw-sm-500 {
    font-weight: 500 !important;
  }
  .fw-sm-600 {
    font-weight: 600 !important;
  }
  .fw-sm-700 {
    font-weight: 700 !important;
  }
  .fw-sm-800 {
    font-weight: 800 !important;
  }
  .fw-sm-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 768px) {
  .fw-md-100 {
    font-weight: 100 !important;
  }
  .fw-md-200 {
    font-weight: 200 !important;
  }
  .fw-md-300 {
    font-weight: 300 !important;
  }
  .fw-md-400 {
    font-weight: 400 !important;
  }
  .fw-md-500 {
    font-weight: 500 !important;
  }
  .fw-md-600 {
    font-weight: 600 !important;
  }
  .fw-md-700 {
    font-weight: 700 !important;
  }
  .fw-md-800 {
    font-weight: 800 !important;
  }
  .fw-md-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1024px) {
  .fw-lg-100 {
    font-weight: 100 !important;
  }
  .fw-lg-200 {
    font-weight: 200 !important;
  }
  .fw-lg-300 {
    font-weight: 300 !important;
  }
  .fw-lg-400 {
    font-weight: 400 !important;
  }
  .fw-lg-500 {
    font-weight: 500 !important;
  }
  .fw-lg-600 {
    font-weight: 600 !important;
  }
  .fw-lg-700 {
    font-weight: 700 !important;
  }
  .fw-lg-800 {
    font-weight: 800 !important;
  }
  .fw-lg-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1440px) {
  .fw-xl-100 {
    font-weight: 100 !important;
  }
  .fw-xl-200 {
    font-weight: 200 !important;
  }
  .fw-xl-300 {
    font-weight: 300 !important;
  }
  .fw-xl-400 {
    font-weight: 400 !important;
  }
  .fw-xl-500 {
    font-weight: 500 !important;
  }
  .fw-xl-600 {
    font-weight: 600 !important;
  }
  .fw-xl-700 {
    font-weight: 700 !important;
  }
  .fw-xl-800 {
    font-weight: 800 !important;
  }
  .fw-xl-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1920px) {
  .fw-xxl-100 {
    font-weight: 100 !important;
  }
  .fw-xxl-200 {
    font-weight: 200 !important;
  }
  .fw-xxl-300 {
    font-weight: 300 !important;
  }
  .fw-xxl-400 {
    font-weight: 400 !important;
  }
  .fw-xxl-500 {
    font-weight: 500 !important;
  }
  .fw-xxl-600 {
    font-weight: 600 !important;
  }
  .fw-xxl-700 {
    font-weight: 700 !important;
  }
  .fw-xxl-800 {
    font-weight: 800 !important;
  }
  .fw-xxl-900 {
    font-weight: 900 !important;
  }
}
.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-34 {
  font-size: 34px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-42 {
  font-size: 42px !important;
}

.fs-44 {
  font-size: 44px !important;
}

.fs-46 {
  font-size: 46px !important;
}

.fs-48 {
  font-size: 48px !important;
}

.fs-50 {
  font-size: 50px !important;
}

.fs-52 {
  font-size: 52px !important;
}

.fs-54 {
  font-size: 54px !important;
}

.fs-56 {
  font-size: 56px !important;
}

.fs-58 {
  font-size: 58px !important;
}

.fs-60 {
  font-size: 60px !important;
}

.fs-62 {
  font-size: 62px !important;
}

.fs-64 {
  font-size: 64px !important;
}

.fs-66 {
  font-size: 66px !important;
}

.fs-68 {
  font-size: 68px !important;
}

.fs-70 {
  font-size: 70px !important;
}

.fs-72 {
  font-size: 72px !important;
}

.fs-74 {
  font-size: 74px !important;
}

.fs-76 {
  font-size: 76px !important;
}

.fs-78 {
  font-size: 78px !important;
}

.fs-80 {
  font-size: 80px !important;
}

@media (min-width: 320px) {
  .fs-xs-12 {
    font-size: 12px !important;
  }
  .fs-xs-14 {
    font-size: 14px !important;
  }
  .fs-xs-16 {
    font-size: 16px !important;
  }
  .fs-xs-18 {
    font-size: 18px !important;
  }
  .fs-xs-20 {
    font-size: 20px !important;
  }
  .fs-xs-22 {
    font-size: 22px !important;
  }
  .fs-xs-24 {
    font-size: 24px !important;
  }
  .fs-xs-26 {
    font-size: 26px !important;
  }
  .fs-xs-28 {
    font-size: 28px !important;
  }
  .fs-xs-30 {
    font-size: 30px !important;
  }
  .fs-xs-32 {
    font-size: 32px !important;
  }
  .fs-xs-34 {
    font-size: 34px !important;
  }
  .fs-xs-36 {
    font-size: 36px !important;
  }
  .fs-xs-38 {
    font-size: 38px !important;
  }
  .fs-xs-40 {
    font-size: 40px !important;
  }
  .fs-xs-42 {
    font-size: 42px !important;
  }
  .fs-xs-44 {
    font-size: 44px !important;
  }
  .fs-xs-46 {
    font-size: 46px !important;
  }
  .fs-xs-48 {
    font-size: 48px !important;
  }
  .fs-xs-50 {
    font-size: 50px !important;
  }
  .fs-xs-52 {
    font-size: 52px !important;
  }
  .fs-xs-54 {
    font-size: 54px !important;
  }
  .fs-xs-56 {
    font-size: 56px !important;
  }
  .fs-xs-58 {
    font-size: 58px !important;
  }
  .fs-xs-60 {
    font-size: 60px !important;
  }
  .fs-xs-62 {
    font-size: 62px !important;
  }
  .fs-xs-64 {
    font-size: 64px !important;
  }
  .fs-xs-66 {
    font-size: 66px !important;
  }
  .fs-xs-68 {
    font-size: 68px !important;
  }
  .fs-xs-70 {
    font-size: 70px !important;
  }
  .fs-xs-72 {
    font-size: 72px !important;
  }
  .fs-xs-74 {
    font-size: 74px !important;
  }
  .fs-xs-76 {
    font-size: 76px !important;
  }
  .fs-xs-78 {
    font-size: 78px !important;
  }
  .fs-xs-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 375px) {
  .fs-sm-12 {
    font-size: 12px !important;
  }
  .fs-sm-14 {
    font-size: 14px !important;
  }
  .fs-sm-16 {
    font-size: 16px !important;
  }
  .fs-sm-18 {
    font-size: 18px !important;
  }
  .fs-sm-20 {
    font-size: 20px !important;
  }
  .fs-sm-22 {
    font-size: 22px !important;
  }
  .fs-sm-24 {
    font-size: 24px !important;
  }
  .fs-sm-26 {
    font-size: 26px !important;
  }
  .fs-sm-28 {
    font-size: 28px !important;
  }
  .fs-sm-30 {
    font-size: 30px !important;
  }
  .fs-sm-32 {
    font-size: 32px !important;
  }
  .fs-sm-34 {
    font-size: 34px !important;
  }
  .fs-sm-36 {
    font-size: 36px !important;
  }
  .fs-sm-38 {
    font-size: 38px !important;
  }
  .fs-sm-40 {
    font-size: 40px !important;
  }
  .fs-sm-42 {
    font-size: 42px !important;
  }
  .fs-sm-44 {
    font-size: 44px !important;
  }
  .fs-sm-46 {
    font-size: 46px !important;
  }
  .fs-sm-48 {
    font-size: 48px !important;
  }
  .fs-sm-50 {
    font-size: 50px !important;
  }
  .fs-sm-52 {
    font-size: 52px !important;
  }
  .fs-sm-54 {
    font-size: 54px !important;
  }
  .fs-sm-56 {
    font-size: 56px !important;
  }
  .fs-sm-58 {
    font-size: 58px !important;
  }
  .fs-sm-60 {
    font-size: 60px !important;
  }
  .fs-sm-62 {
    font-size: 62px !important;
  }
  .fs-sm-64 {
    font-size: 64px !important;
  }
  .fs-sm-66 {
    font-size: 66px !important;
  }
  .fs-sm-68 {
    font-size: 68px !important;
  }
  .fs-sm-70 {
    font-size: 70px !important;
  }
  .fs-sm-72 {
    font-size: 72px !important;
  }
  .fs-sm-74 {
    font-size: 74px !important;
  }
  .fs-sm-76 {
    font-size: 76px !important;
  }
  .fs-sm-78 {
    font-size: 78px !important;
  }
  .fs-sm-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 768px) {
  .fs-md-12 {
    font-size: 12px !important;
  }
  .fs-md-14 {
    font-size: 14px !important;
  }
  .fs-md-16 {
    font-size: 16px !important;
  }
  .fs-md-18 {
    font-size: 18px !important;
  }
  .fs-md-20 {
    font-size: 20px !important;
  }
  .fs-md-22 {
    font-size: 22px !important;
  }
  .fs-md-24 {
    font-size: 24px !important;
  }
  .fs-md-26 {
    font-size: 26px !important;
  }
  .fs-md-28 {
    font-size: 28px !important;
  }
  .fs-md-30 {
    font-size: 30px !important;
  }
  .fs-md-32 {
    font-size: 32px !important;
  }
  .fs-md-34 {
    font-size: 34px !important;
  }
  .fs-md-36 {
    font-size: 36px !important;
  }
  .fs-md-38 {
    font-size: 38px !important;
  }
  .fs-md-40 {
    font-size: 40px !important;
  }
  .fs-md-42 {
    font-size: 42px !important;
  }
  .fs-md-44 {
    font-size: 44px !important;
  }
  .fs-md-46 {
    font-size: 46px !important;
  }
  .fs-md-48 {
    font-size: 48px !important;
  }
  .fs-md-50 {
    font-size: 50px !important;
  }
  .fs-md-52 {
    font-size: 52px !important;
  }
  .fs-md-54 {
    font-size: 54px !important;
  }
  .fs-md-56 {
    font-size: 56px !important;
  }
  .fs-md-58 {
    font-size: 58px !important;
  }
  .fs-md-60 {
    font-size: 60px !important;
  }
  .fs-md-62 {
    font-size: 62px !important;
  }
  .fs-md-64 {
    font-size: 64px !important;
  }
  .fs-md-66 {
    font-size: 66px !important;
  }
  .fs-md-68 {
    font-size: 68px !important;
  }
  .fs-md-70 {
    font-size: 70px !important;
  }
  .fs-md-72 {
    font-size: 72px !important;
  }
  .fs-md-74 {
    font-size: 74px !important;
  }
  .fs-md-76 {
    font-size: 76px !important;
  }
  .fs-md-78 {
    font-size: 78px !important;
  }
  .fs-md-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 1024px) {
  .fs-lg-12 {
    font-size: 12px !important;
  }
  .fs-lg-14 {
    font-size: 14px !important;
  }
  .fs-lg-16 {
    font-size: 16px !important;
  }
  .fs-lg-18 {
    font-size: 18px !important;
  }
  .fs-lg-20 {
    font-size: 20px !important;
  }
  .fs-lg-22 {
    font-size: 22px !important;
  }
  .fs-lg-24 {
    font-size: 24px !important;
  }
  .fs-lg-26 {
    font-size: 26px !important;
  }
  .fs-lg-28 {
    font-size: 28px !important;
  }
  .fs-lg-30 {
    font-size: 30px !important;
  }
  .fs-lg-32 {
    font-size: 32px !important;
  }
  .fs-lg-34 {
    font-size: 34px !important;
  }
  .fs-lg-36 {
    font-size: 36px !important;
  }
  .fs-lg-38 {
    font-size: 38px !important;
  }
  .fs-lg-40 {
    font-size: 40px !important;
  }
  .fs-lg-42 {
    font-size: 42px !important;
  }
  .fs-lg-44 {
    font-size: 44px !important;
  }
  .fs-lg-46 {
    font-size: 46px !important;
  }
  .fs-lg-48 {
    font-size: 48px !important;
  }
  .fs-lg-50 {
    font-size: 50px !important;
  }
  .fs-lg-52 {
    font-size: 52px !important;
  }
  .fs-lg-54 {
    font-size: 54px !important;
  }
  .fs-lg-56 {
    font-size: 56px !important;
  }
  .fs-lg-58 {
    font-size: 58px !important;
  }
  .fs-lg-60 {
    font-size: 60px !important;
  }
  .fs-lg-62 {
    font-size: 62px !important;
  }
  .fs-lg-64 {
    font-size: 64px !important;
  }
  .fs-lg-66 {
    font-size: 66px !important;
  }
  .fs-lg-68 {
    font-size: 68px !important;
  }
  .fs-lg-70 {
    font-size: 70px !important;
  }
  .fs-lg-72 {
    font-size: 72px !important;
  }
  .fs-lg-74 {
    font-size: 74px !important;
  }
  .fs-lg-76 {
    font-size: 76px !important;
  }
  .fs-lg-78 {
    font-size: 78px !important;
  }
  .fs-lg-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 1440px) {
  .fs-xl-12 {
    font-size: 12px !important;
  }
  .fs-xl-14 {
    font-size: 14px !important;
  }
  .fs-xl-16 {
    font-size: 16px !important;
  }
  .fs-xl-18 {
    font-size: 18px !important;
  }
  .fs-xl-20 {
    font-size: 20px !important;
  }
  .fs-xl-22 {
    font-size: 22px !important;
  }
  .fs-xl-24 {
    font-size: 24px !important;
  }
  .fs-xl-26 {
    font-size: 26px !important;
  }
  .fs-xl-28 {
    font-size: 28px !important;
  }
  .fs-xl-30 {
    font-size: 30px !important;
  }
  .fs-xl-32 {
    font-size: 32px !important;
  }
  .fs-xl-34 {
    font-size: 34px !important;
  }
  .fs-xl-36 {
    font-size: 36px !important;
  }
  .fs-xl-38 {
    font-size: 38px !important;
  }
  .fs-xl-40 {
    font-size: 40px !important;
  }
  .fs-xl-42 {
    font-size: 42px !important;
  }
  .fs-xl-44 {
    font-size: 44px !important;
  }
  .fs-xl-46 {
    font-size: 46px !important;
  }
  .fs-xl-48 {
    font-size: 48px !important;
  }
  .fs-xl-50 {
    font-size: 50px !important;
  }
  .fs-xl-52 {
    font-size: 52px !important;
  }
  .fs-xl-54 {
    font-size: 54px !important;
  }
  .fs-xl-56 {
    font-size: 56px !important;
  }
  .fs-xl-58 {
    font-size: 58px !important;
  }
  .fs-xl-60 {
    font-size: 60px !important;
  }
  .fs-xl-62 {
    font-size: 62px !important;
  }
  .fs-xl-64 {
    font-size: 64px !important;
  }
  .fs-xl-66 {
    font-size: 66px !important;
  }
  .fs-xl-68 {
    font-size: 68px !important;
  }
  .fs-xl-70 {
    font-size: 70px !important;
  }
  .fs-xl-72 {
    font-size: 72px !important;
  }
  .fs-xl-74 {
    font-size: 74px !important;
  }
  .fs-xl-76 {
    font-size: 76px !important;
  }
  .fs-xl-78 {
    font-size: 78px !important;
  }
  .fs-xl-80 {
    font-size: 80px !important;
  }
}
@media (min-width: 1920px) {
  .fs-xxl-12 {
    font-size: 12px !important;
  }
  .fs-xxl-14 {
    font-size: 14px !important;
  }
  .fs-xxl-16 {
    font-size: 16px !important;
  }
  .fs-xxl-18 {
    font-size: 18px !important;
  }
  .fs-xxl-20 {
    font-size: 20px !important;
  }
  .fs-xxl-22 {
    font-size: 22px !important;
  }
  .fs-xxl-24 {
    font-size: 24px !important;
  }
  .fs-xxl-26 {
    font-size: 26px !important;
  }
  .fs-xxl-28 {
    font-size: 28px !important;
  }
  .fs-xxl-30 {
    font-size: 30px !important;
  }
  .fs-xxl-32 {
    font-size: 32px !important;
  }
  .fs-xxl-34 {
    font-size: 34px !important;
  }
  .fs-xxl-36 {
    font-size: 36px !important;
  }
  .fs-xxl-38 {
    font-size: 38px !important;
  }
  .fs-xxl-40 {
    font-size: 40px !important;
  }
  .fs-xxl-42 {
    font-size: 42px !important;
  }
  .fs-xxl-44 {
    font-size: 44px !important;
  }
  .fs-xxl-46 {
    font-size: 46px !important;
  }
  .fs-xxl-48 {
    font-size: 48px !important;
  }
  .fs-xxl-50 {
    font-size: 50px !important;
  }
  .fs-xxl-52 {
    font-size: 52px !important;
  }
  .fs-xxl-54 {
    font-size: 54px !important;
  }
  .fs-xxl-56 {
    font-size: 56px !important;
  }
  .fs-xxl-58 {
    font-size: 58px !important;
  }
  .fs-xxl-60 {
    font-size: 60px !important;
  }
  .fs-xxl-62 {
    font-size: 62px !important;
  }
  .fs-xxl-64 {
    font-size: 64px !important;
  }
  .fs-xxl-66 {
    font-size: 66px !important;
  }
  .fs-xxl-68 {
    font-size: 68px !important;
  }
  .fs-xxl-70 {
    font-size: 70px !important;
  }
  .fs-xxl-72 {
    font-size: 72px !important;
  }
  .fs-xxl-74 {
    font-size: 74px !important;
  }
  .fs-xxl-76 {
    font-size: 76px !important;
  }
  .fs-xxl-78 {
    font-size: 78px !important;
  }
  .fs-xxl-80 {
    font-size: 80px !important;
  }
}
@media (max-width: 767px) {
  .fs-80 {
    font-size: 54px !important;
  }
  .fs-72 {
    font-size: 48px !important;
  }
  .fs-64 {
    font-size: 44px !important;
  }
  .fs-56 {
    font-size: 40px !important;
  }
  .fs-48 {
    font-size: 36px !important;
  }
  .fs-40 {
    font-size: 32px !important;
  }
  .fs-32 {
    font-size: 28px !important;
  }
}
@media (max-width: 425px) {
  .fs-80 {
    font-size: 48px !important;
  }
  .fs-72 {
    font-size: 42px !important;
  }
  .fs-64 {
    font-size: 38px !important;
  }
  .fs-56 {
    font-size: 32px !important;
  }
  .fs-48 {
    font-size: 28px !important;
  }
  .fs-40 {
    font-size: 24px !important;
  }
  .fs-32 {
    font-size: 20px !important;
  }
  .fs-24 {
    font-size: 18px !important;
  }
}
@media (max-width: 767px) {
  .fs-30 {
    font-size: 21px !important;
  }
  .fs-32 {
    font-size: 22.4px !important;
  }
  .fs-34 {
    font-size: 23.8px !important;
  }
  .fs-36 {
    font-size: 25.2px !important;
  }
  .fs-38 {
    font-size: 26.6px !important;
  }
  .fs-40 {
    font-size: 28px !important;
  }
  .fs-42 {
    font-size: 29.4px !important;
  }
  .fs-44 {
    font-size: 30.8px !important;
  }
  .fs-46 {
    font-size: 32.2px !important;
  }
  .fs-48 {
    font-size: 33.6px !important;
  }
  .fs-50 {
    font-size: 35px !important;
  }
  .fs-52 {
    font-size: 36.4px !important;
  }
  .fs-54 {
    font-size: 37.8px !important;
  }
  .fs-56 {
    font-size: 39.2px !important;
  }
  .fs-58 {
    font-size: 40.6px !important;
  }
  .fs-60 {
    font-size: 42px !important;
  }
  .fs-62 {
    font-size: 43.4px !important;
  }
  .fs-64 {
    font-size: 44.8px !important;
  }
  .fs-66 {
    font-size: 46.2px !important;
  }
  .fs-68 {
    font-size: 47.6px !important;
  }
  .fs-70 {
    font-size: 49px !important;
  }
  .fs-72 {
    font-size: 50.4px !important;
  }
  .fs-74 {
    font-size: 51.8px !important;
  }
  .fs-76 {
    font-size: 53.2px !important;
  }
  .fs-78 {
    font-size: 54.6px !important;
  }
  .fs-80 {
    font-size: 56px !important;
  }
}
@media (max-width: 425px) {
  .fs-30 {
    font-size: 16.5px !important;
  }
  .fs-32 {
    font-size: 17.6px !important;
  }
  .fs-34 {
    font-size: 18.7px !important;
  }
  .fs-36 {
    font-size: 19.8px !important;
  }
  .fs-38 {
    font-size: 20.9px !important;
  }
  .fs-40 {
    font-size: 22px !important;
  }
  .fs-42 {
    font-size: 23.1px !important;
  }
  .fs-44 {
    font-size: 24.2px !important;
  }
  .fs-46 {
    font-size: 25.3px !important;
  }
  .fs-48 {
    font-size: 26.4px !important;
  }
  .fs-50 {
    font-size: 27.5px !important;
  }
  .fs-52 {
    font-size: 28.6px !important;
  }
  .fs-54 {
    font-size: 29.7px !important;
  }
  .fs-56 {
    font-size: 30.8px !important;
  }
  .fs-58 {
    font-size: 31.9px !important;
  }
  .fs-60 {
    font-size: 33px !important;
  }
  .fs-62 {
    font-size: 34.1px !important;
  }
  .fs-64 {
    font-size: 35.2px !important;
  }
  .fs-66 {
    font-size: 36.3px !important;
  }
  .fs-68 {
    font-size: 37.4px !important;
  }
  .fs-70 {
    font-size: 38.5px !important;
  }
  .fs-72 {
    font-size: 39.6px !important;
  }
  .fs-74 {
    font-size: 40.7px !important;
  }
  .fs-76 {
    font-size: 41.8px !important;
  }
  .fs-78 {
    font-size: 42.9px !important;
  }
  .fs-80 {
    font-size: 44px !important;
  }
}
.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

@media (min-width: 320px) {
  .fw-xs-100 {
    font-weight: 100 !important;
  }
  .fw-xs-200 {
    font-weight: 200 !important;
  }
  .fw-xs-300 {
    font-weight: 300 !important;
  }
  .fw-xs-400 {
    font-weight: 400 !important;
  }
  .fw-xs-500 {
    font-weight: 500 !important;
  }
  .fw-xs-600 {
    font-weight: 600 !important;
  }
  .fw-xs-700 {
    font-weight: 700 !important;
  }
  .fw-xs-800 {
    font-weight: 800 !important;
  }
  .fw-xs-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 375px) {
  .fw-sm-100 {
    font-weight: 100 !important;
  }
  .fw-sm-200 {
    font-weight: 200 !important;
  }
  .fw-sm-300 {
    font-weight: 300 !important;
  }
  .fw-sm-400 {
    font-weight: 400 !important;
  }
  .fw-sm-500 {
    font-weight: 500 !important;
  }
  .fw-sm-600 {
    font-weight: 600 !important;
  }
  .fw-sm-700 {
    font-weight: 700 !important;
  }
  .fw-sm-800 {
    font-weight: 800 !important;
  }
  .fw-sm-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 768px) {
  .fw-md-100 {
    font-weight: 100 !important;
  }
  .fw-md-200 {
    font-weight: 200 !important;
  }
  .fw-md-300 {
    font-weight: 300 !important;
  }
  .fw-md-400 {
    font-weight: 400 !important;
  }
  .fw-md-500 {
    font-weight: 500 !important;
  }
  .fw-md-600 {
    font-weight: 600 !important;
  }
  .fw-md-700 {
    font-weight: 700 !important;
  }
  .fw-md-800 {
    font-weight: 800 !important;
  }
  .fw-md-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1024px) {
  .fw-lg-100 {
    font-weight: 100 !important;
  }
  .fw-lg-200 {
    font-weight: 200 !important;
  }
  .fw-lg-300 {
    font-weight: 300 !important;
  }
  .fw-lg-400 {
    font-weight: 400 !important;
  }
  .fw-lg-500 {
    font-weight: 500 !important;
  }
  .fw-lg-600 {
    font-weight: 600 !important;
  }
  .fw-lg-700 {
    font-weight: 700 !important;
  }
  .fw-lg-800 {
    font-weight: 800 !important;
  }
  .fw-lg-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1440px) {
  .fw-xl-100 {
    font-weight: 100 !important;
  }
  .fw-xl-200 {
    font-weight: 200 !important;
  }
  .fw-xl-300 {
    font-weight: 300 !important;
  }
  .fw-xl-400 {
    font-weight: 400 !important;
  }
  .fw-xl-500 {
    font-weight: 500 !important;
  }
  .fw-xl-600 {
    font-weight: 600 !important;
  }
  .fw-xl-700 {
    font-weight: 700 !important;
  }
  .fw-xl-800 {
    font-weight: 800 !important;
  }
  .fw-xl-900 {
    font-weight: 900 !important;
  }
}
@media (min-width: 1920px) {
  .fw-xxl-100 {
    font-weight: 100 !important;
  }
  .fw-xxl-200 {
    font-weight: 200 !important;
  }
  .fw-xxl-300 {
    font-weight: 300 !important;
  }
  .fw-xxl-400 {
    font-weight: 400 !important;
  }
  .fw-xxl-500 {
    font-weight: 500 !important;
  }
  .fw-xxl-600 {
    font-weight: 600 !important;
  }
  .fw-xxl-700 {
    font-weight: 700 !important;
  }
  .fw-xxl-800 {
    font-weight: 800 !important;
  }
  .fw-xxl-900 {
    font-weight: 900 !important;
  }
}
.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.navbar {
  position: relative;
  z-index: 9998 !important;
  height: 80px;
  transition: height 0.3s ease;
  font-family: inherit;
  background-color: #611232 !important;
  line-height: 85%;
  position: fixed;
  width: 100%;
  left: 0;
  text-align: center;
  z-index: 100;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
}
.navbar .container {
  width: 1440px;
  max-width: 1440px;
}
.navbar .container .navbar-collapse {
  position: relative;
}
.navbar .container .navbar-collapse .nav-pills {
  position: absolute !important;
  right: 0;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .navbar .container {
    width: 100%;
    max-width: auto;
  }
  .navbar .container .navbar-collapse {
    position: relative;
  }
  .navbar .container .navbar-collapse .nav-pills {
    position: relative !important;
  }
}

@media (max-width: 767px) {
  .navbar {
    height: 60px;
  }
  .navbar #GobnavbarPrincipal {
    display: none;
  }
  .navbar .navbar-brand {
    margin-top: -20px;
    margin-left: -15px;
  }
  .navbar .navbar-toggler {
    margin-top: -20px;
    margin-left: -5px;
  }
}
/* ======= SUB NAVBAR ======= */
.cs-subnavbar-gobmx {
  position: relative;
  z-index: 9997 !important;
}
.cs-subnavbar-gobmx .sub-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-top: 80px !important;
  transition: margin-top 0.3s ease;
  height: 52px;
  background-color: #3a0b1e !important;
  text-align: center;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container {
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .sub-navbar-menus {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  margin: 0;
  list-style: none;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .sub-navbar-menus::-webkit-scrollbar {
  display: none;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .sub-navbar-menus .subnav-item {
  flex: 0 0 auto;
  margin-left: 1rem;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .subnav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  height: 52px;
  padding: 0 1.25rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  text-decoration-line: none;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .subnav-link.active {
  color: #ffffff !important;
  border-bottom: 3px solid #e6d194;
}
.cs-subnavbar-gobmx .sub-navbar .sub-navbar-container .subnav-link:hover {
  color: #ffffff;
  text-decoration-line: none;
}

@media (max-width: 767px) {
  .cs-subnavbar-gobmx .sub-navbar {
    margin-top: 60px !important;
    height: 50px;
  }
}
.main-footer {
  position: relative;
  z-index: 9996 !important;
}

.btn {
  background-color: transparent;
  box-shadow: none !important;
}
.btn .btn:focus,
.btn .btn:active,
.btn .btn:focus:active {
  outline: none !important;
  box-shadow: 0 0 0 0.25rem rgba(128, 0, 63, 0.25); /* tu color vino */
}

.back-btn {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: #611232;
  text-decoration: none;
}
.back-btn:hover, .back-btn:visited, .back-btn:active, .back-btn:focus {
  color: #611232;
  text-decoration: none;
}

.hero-container {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 460px;
  /* 🔧 Breakpoints refinados */
}
.hero-container .hero-wave {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}
.hero-container .hero-wave-desktop {
  display: none;
}
.hero-container .hero-wave-mobile {
  display: block;
}
.hero-container .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1rem 0;
}
.hero-container .hero-content .hero-flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 640px) {
  .hero-container {
    max-height: 573px;
  }
}
@media (min-width: 768px) {
  .hero-container {
    height: 620px;
  }
  .hero-container .hero-wave-desktop {
    display: block;
  }
  .hero-container .hero-wave-mobile {
    display: none;
  }
  .hero-container .hero-content {
    padding: 2rem;
  }
  .hero-container .hero-content .hero-flex {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }
  .hero-container .hero-content .hero-flex .hero-flex-1 {
    max-width: 520px;
  }
  .hero-container .hero-content .hero-flex .hero-flex-2 {
    display: flex;
    justify-content: flex-end;
  }
}
@media (min-width: 1024px) {
  .hero-container {
    height: 631px;
  }
  .hero-container .hero-content {
    padding: 3rem;
  }
}
@media (min-width: 2480px) {
  .hero-container {
    height: 671px;
  }
  .hero-container .hero-content {
    padding: 3rem;
  }
}

.home-mobile-menu {
  background: linear-gradient(180deg, #611232 0%, #9b2247 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  padding: 8px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.home-mobile-menu .home-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2549019608);
  color: white;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Noto Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px; /* 120% */
  text-decoration: none;
  cursor: pointer;
}
.home-mobile-menu .home-button:hover, .home-mobile-menu .home-button:visited, .home-mobile-menu .home-button:active, .home-mobile-menu .home-button:focus {
  color: white;
}

.file-drop {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  border-radius: 12px;
  border: 2px dashed #dddddd;
  background: #ffffff;
  min-height: 61px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.3s;
  font-family: sans-serif;
}
.file-drop .file-content {
  line-height: 1.22;
}
.file-drop .file-content #file-name {
  font-size: 16px;
  font-weight: 600;
}
.file-drop .file-content #file-info {
  font-size: 14px;
  font-weight: 400;
}
.file-drop .file-selector {
  line-height: 1.22;
}
.file-drop .file-selector .btn-file label {
  width: 230px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #800040;
  color: #800040 !important;
  border-radius: 8px;
  margin: 0 auto;
  cursor: pointer;
}
.file-drop .file-selector .btn-file label span {
  margin-right: 0.25rem;
}
.file-drop #clearFileBtn {
  display: none;
  border: none;
  background: transparent;
  font-weight: 500;
  color: #8c8c8c;
  font-size: 24px;
}
.file-drop input {
  display: none;
}
.file-drop:hover {
  border-color: #800040; /* morado */
}

@media (max-width: 767px) {
  .file-drop {
    display: block;
    justify-content: space-between;
    text-align: center;
    padding: 8px 16px;
  }
  .file-drop .file-selector {
    line-height: 1.44;
    padding: 1rem 0;
  }
}
#file-name-desktop {
  font-size: 16px;
  font-weight: 600;
}

#file-name-mobile {
  font-size: 14px;
  font-weight: 600;
}

#file-info-desktop {
  font-size: 14px;
  font-weight: 600;
}

#file-info-mobile {
  font-size: 14px;
  font-weight: 400;
}

.user-dropdown {
  position: relative;
  display: inline-block;
  background-color: transparent;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  margin-right: 0.5rem;
  color: #fff;
}

.user-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: white;
}

.user-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(180deg, #9B2247 0%, #611232 100%);
  font-weight: bold;
  font-size: 12px;
  color: white;
  border: 2px solid #fff;
}

.user-name {
  font-size: 16px;
  font-weight: 400;
  padding: 0 0.25rem;
}

.chevron {
  fill: white;
  transition: transform 0.2s ease;
}

/* Muestra el menú si el contenedor completo está en hover */
.user-dropdown:hover .user-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Menú desplegable */
.user-menu {
  position: absolute;
  left: 10%;
  width: 90%;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  min-width: 150px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 10;
  list-style: none;
  padding-left: 0;
}

.user-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #000;
}

.user-menu li a:hover {
  background: #f5f5f5;
}

/* Parent container: stack vertically on mobile, horizontally on md+ */
.buttons-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem; /* ✅ reduced vertical spacing on mobile */
}

@media (min-width: 768px) {
  .buttons-container {
    flex-direction: row;
    gap: 3; /* no gap needed in horizontal layout */
  }
}
/* Buttons: full width on mobile, centered text */
.btn-cancel,
.btn-submit {
  width: 100%;
  display: block;
  text-align: center; /* ✅ ensure text is centered */
  justify-content: center; /* in case flexbox is applied */
  align-items: center;
}

/* Fixed width and order on desktop */
@media (min-width: 768px) {
  .btn-cancel {
    width: 117px;
    order: 1;
    margin-right: 1rem; /* spacing between buttons horizontally */
  }
  .btn-submit {
    width: 236px;
    order: 2;
  }
}
/* Order on mobile */
.btn-cancel {
  order: 2;
}

.btn-submit {
  order: 1;
}

.form-check-input[type=checkbox] {
  border-radius: 1px;
  background-color: transparent;
  border: 2px solid #808080;
  box-shadow: none;
}
.form-check-input[type=checkbox]:focus {
  border-color: #611232 !important;
  box-shadow: none !important;
  outline: none !important;
}
.form-check-input[type=checkbox]:checked {
  background-color: transparent;
  border-color: #611232;
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23611232' d='M13.485 1.929a1 1 0 0 1 1.415 1.414l-8.07 8.071a1 1 0 0 1-1.414 0L1.1 7.1a1 1 0 1 1 1.414-1.414l3.9 3.9 7.071-7.071z'/%3e%3c/svg%3e");
}