@charset "UTF-8";
html {
  font-size: 62.5%;
  /* esto hace que 1rem = 10px */
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  html .container {
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 20px;
  }
}

.bg-white {
  background: #fff;
}

.bg-gray {
  background: #f8f9fa;
}

.bg-bluelight {
  background: #ECF5FA;
}

.btn {
  min-width: 144px;
  height: 49px;
  padding: 8px 24px;
  line-height: 2;
  margin: 8px;
  border-radius: 8px;
  font-size: 1.6rem;
}

@media (max-width: 1199px) {
  .btn {
    font-size: 1.4rem;
    height: 42px;
    padding: 8px 16px;
    line-height: 1;
  }
}

.btn-primario {
  background: #123850;
  color: #fff;
}

.btn-primario:hover {
  background: #4F8EB6;
  color: #fff;
}

.btn-secundario {
  border: 1px solid #123850;
  color: #123850;
  line-height: 1.8;
}

.btn-secundario:hover {
  background-color: #4F8EB6;
  color: #fff;
}

.btn-secundario.white {
  color: #fff;
  border-color: #fff;
}

.btn-link {
  color: #123850;
  text-decoration: none;
}

.btn-link:hover {
  color: #123850;
  background: #12385010;
  text-decoration: underline;
}

.btn-link:active {
  background: #12385020 !important;
  color: #123850 !important;
}

.btn-link-simple {
  color: #123850;
  text-decoration: none;
}

.btn-link-simple:hover {
  color: #123850;
  text-decoration: underline;
}

.hr {
  height: 2px;
  /* Altura de la línea */
  background-color: #afafaf;
  /* Color de la línea */
  border: none;
  /* Quita el borde por defecto */
  margin: 20px 0;
  /* Espacio arriba y abajo de la línea */
}

.mssgLabel {
  display: none;
  width: 100%;
  max-width: initial;
  margin: 8px auto;
  padding: 8px 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #dadada;
}

.mssgLabel .icon {
  font-size: 2.6rem;
}

.mssgLabel .text-box {
  text-align: left;
}

.mssgLabel .text-box .title {
  color: #000;
  font-family: 'Inter';
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0;
}

.mssgLabel .text-box .text {
  color: #666666;
  text-align: center;
  font-family: 'Roboto';
  font-size: 12px;
  margin: 0;
  text-align: left;
}

.mssgLabel.info {
  background: #E2EBF7;
}

.mssgLabel.info .icon {
  color: #1F99C2;
}

.mssgLabel.error {
  background: #F9E5E9;
}

.mssgLabel.error .icon {
  color: #B0233A;
}

.mssgLabel.warning, .mssgLabel.time {
  background: #FFF6DC;
}

.mssgLabel.warning .icon, .mssgLabel.time .icon {
  color: #EDA518;
}

.mssgLabel.sucess {
  background: #FFF6DC;
}

.mssgLabel.sucess .icon {
  color: #107537;
}

.tituloSeccion {
  padding-top: 56px;
  color: #000;
  text-align: center;
  font-family: "Sharp Sans Medium";
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 46.8px */
}

.subtituloSeccion {
  color: #4F8EB6;
  text-align: center;
  font-family: "Sharp Sans Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 23.4px */
  margin-bottom: 48px;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  background: #fff;
  padding: 8px 16px;
}

.header .box-logos {
  margin-left: -16px;
}

.header .box-logos img {
  max-height: 48px;
}

.header .box-logos img:nth-child(2) {
  max-height: 40px;
}

.header .menu-header .nav-item {
  font-family: "Inter";
  font-size: 1.6rem;
  color: #123850;
  text-decoration: none;
  margin-right: 16px;
}

.header .menu-header .nav-item:hover {
  color: #4F8EB6;
}

@media (max-width: 768px) {
  .header .box-logos img:nth-child(2) {
    display: none;
  }
  .header .menu-header .nav-item {
    font-size: 1.4rem;
  }
}

.secc-heroBanner {
  padding: 16px 0;
}

.secc-heroBanner .box-banner {
  background: url("../imgs/heroBanner.png") no-repeat center center/cover;
  position: relative;
  height: 100vh;
  color: white;
  border-radius: 1rem;
  max-height: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 56px 32px;
}

@media (max-width: 1199px) {
  .secc-heroBanner .box-banner {
    background-position: right;
  }
  .secc-heroBanner .box-banner .btn-link {
    display: none;
  }
}

.secc-heroBanner .box-banner .box-text h1 {
  color: #123850;
  font-family: "Sharp Sans Semibold";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 1%;
  max-width: 100%;
}

@media (max-width: 1199px) {
  .secc-heroBanner .box-banner .box-text h1 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0;
  }
}

.secc-heroBanner .box-banner .box-text p {
  color: rgba(18, 56, 80, 0.69);
  font-family: "Sharp Sans Light";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: -0.6px;
}

@media (max-width: 1199px) {
  .secc-heroBanner .box-banner .box-text p {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 1199px) {
  .secc-heroBanner .box-banner .box-text {
    margin-right: 24px;
  }
}

.secc-heroBanner .box-banner .box-login {
  width: 340px;
  border-radius: 12px;
  border: 1px solid var(--azul-light, #4F8EB6);
  background: rgba(255, 255, 255, 0.9);
  padding: 16px;
  margin-top: -34px;
}

@media (max-width: 1199px) {
  .secc-heroBanner .box-banner .box-login {
    min-width: 340px;
  }
}

.secc-heroBanner .box-banner .box-login .card-body .logo-reper-login {
  margin: 4px auto 16px;
  display: block;
}

.secc-heroBanner .box-banner .box-login .card-body .form-login label {
  color: #000;
  font-family: "Sharp Sans Medium";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 124%;
  /* 14.88px */
}

.secc-heroBanner .box-banner .box-login .card-body .form-login input {
  height: 42px;
  border-radius: 8px;
  background: #FFF;
  font-size: 16px;
}

.secc-heroBanner .box-banner .box-login .card-body .form-login button {
  width: 100%;
  margin: 8px auto;
}

.secc-heroBanner .box-banner .box-login .card-body .form-login .forgotPassword {
  text-align: right;
  margin-bottom: 16px;
}

.secc-heroBanner .box-banner .box-login .card-body .form-login .forgotPassword .btn-link-simple {
  font-family: "Inter";
  font-size: 1.1rem;
  font-weight: normal;
  margin-bottom: 24px;
  color: #4F8EB6;
}

.secc-heroBanner .box-banner .box-login .card-body .form-login .hr-login {
  display: inline-block;
  width: 44%;
  vertical-align: middle;
  margin: 16px 0;
}

.secc-heroBanner .box-banner .box-login .card-body .form-login .hr-login-word {
  vertical-align: middle;
  margin: 8px;
  font-size: 1rem;
}

.secc-heroBanner .box-banner .box-login .card-body .form-login .btnInicioClave {
  margin-top: 8px;
}

.secc-heroBanner .box-banner .box-login .card-body .form-login .btnInicioClave img {
  max-height: 24px;
  margin-left: 8px;
  margin-bottom: 4px;
}

.secc-heroBanner .box-banner .box-login .card-body .form-login .btnInicioClave:hover img {
  -webkit-filter: brightness(0%) saturate(0%) invert(100%) sepia(100%) hue-rotate(0deg);
          filter: brightness(0%) saturate(0%) invert(100%) sepia(100%) hue-rotate(0deg);
}

@media (max-width: 768px) {
  .secc-heroBanner .box-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 32px 16px;
  }
  .secc-heroBanner .box-banner .box-text h1 {
    width: 100%;
    font-size: 32px;
  }
  .secc-heroBanner .box-banner .box-text .btn {
    display: none;
  }
  .secc-heroBanner .box-banner .box-login {
    scale: .8;
    margin-top: -10%;
  }
  .secc-heroBanner .box-banner .box-login .btn {
    font-size: 1.8rem;
  }
}

.secc-porqueRegistrarse {
  padding-bottom: 72px;
}

.secc-porqueRegistrarse .box-beneficio .titulo-block {
  margin: 16px;
  color: #000;
  text-align: center;
  font-family: "Sharp Sans Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 23.4px */
}

.secc-porqueRegistrarse .box-beneficio .texto-block {
  margin: 0 16px;
  color: #000;
  text-align: center;
  font-family: "Sharp Sans Light";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* 20.8px */
}

.secc-eresprofesionaldelasalud,
.secc-reperennumeros {
  padding: 24px 0px;
}

.secc-eresprofesionaldelasalud .blue-block, .secc-eresprofesionaldelasalud .green-block,
.secc-reperennumeros .blue-block,
.secc-reperennumeros .green-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background: #4F8EB6;
  border-radius: 8px;
  padding: 16px;
}

.secc-eresprofesionaldelasalud .blue-block .box, .secc-eresprofesionaldelasalud .green-block .box,
.secc-reperennumeros .blue-block .box,
.secc-reperennumeros .green-block .box {
  width: 50%;
  /* Esto asegura que cada caja tenga el 50% del ancho del contenedor */
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  /* Esto es más específico: no crecer, no encoger, mantener el 50% */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.secc-eresprofesionaldelasalud .blue-block .box-text, .secc-eresprofesionaldelasalud .green-block .box-text,
.secc-reperennumeros .blue-block .box-text,
.secc-reperennumeros .green-block .box-text {
  text-align: center;
  margin: auto;
  padding: 16px;
}

.secc-eresprofesionaldelasalud .blue-block .box-text .titulo, .secc-eresprofesionaldelasalud .green-block .box-text .titulo,
.secc-reperennumeros .blue-block .box-text .titulo,
.secc-reperennumeros .green-block .box-text .titulo {
  color: #fff;
  text-align: center;
  font-family: "Sharp sans Semibold";
  font-size: 36px;
  font-style: normal;
}

.secc-eresprofesionaldelasalud .blue-block .box-text .texto, .secc-eresprofesionaldelasalud .green-block .box-text .texto,
.secc-reperennumeros .blue-block .box-text .texto,
.secc-reperennumeros .green-block .box-text .texto {
  color: #FFF;
  font-family: "Sharp Sans Medium";
  font-size: 16px;
  font-style: normal;
}

.secc-eresprofesionaldelasalud .blue-block .box-image .left, .secc-eresprofesionaldelasalud .blue-block .box-image .right, .secc-eresprofesionaldelasalud .green-block .box-image .left, .secc-eresprofesionaldelasalud .green-block .box-image .right,
.secc-reperennumeros .blue-block .box-image .left,
.secc-reperennumeros .blue-block .box-image .right,
.secc-reperennumeros .green-block .box-image .left,
.secc-reperennumeros .green-block .box-image .right {
  width: 50%;
  float: left;
  padding: 8px;
  text-align: center;
  height: 100%;
}

.secc-eresprofesionaldelasalud .blue-block .box-image .left img, .secc-eresprofesionaldelasalud .blue-block .box-image .right img, .secc-eresprofesionaldelasalud .green-block .box-image .left img, .secc-eresprofesionaldelasalud .green-block .box-image .right img,
.secc-reperennumeros .blue-block .box-image .left img,
.secc-reperennumeros .blue-block .box-image .right img,
.secc-reperennumeros .green-block .box-image .left img,
.secc-reperennumeros .green-block .box-image .right img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 8px;
}

.secc-eresprofesionaldelasalud .blue-block .box-image .left, .secc-eresprofesionaldelasalud .green-block .box-image .left,
.secc-reperennumeros .blue-block .box-image .left,
.secc-reperennumeros .green-block .box-image .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  height: 100%;
}

@media (max-width: 768px) {
  .secc-eresprofesionaldelasalud .blue-block .box-image .left, .secc-eresprofesionaldelasalud .green-block .box-image .left,
  .secc-reperennumeros .blue-block .box-image .left,
  .secc-reperennumeros .green-block .box-image .left {
    display: none;
  }
}

.secc-eresprofesionaldelasalud .blue-block .box-image .right img, .secc-eresprofesionaldelasalud .green-block .box-image .right img,
.secc-reperennumeros .blue-block .box-image .right img,
.secc-reperennumeros .green-block .box-image .right img {
  width: 100%;
}

@media (max-width: 768px) {
  .secc-eresprofesionaldelasalud .blue-block .box-image .right, .secc-eresprofesionaldelasalud .green-block .box-image .right,
  .secc-reperennumeros .blue-block .box-image .right,
  .secc-reperennumeros .green-block .box-image .right {
    width: 100%;
  }
}

.secc-opcionesderegistro {
  padding-bottom: 72px;
}

.secc-opcionesderegistro .container .box-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 32px;
}

.secc-opcionesderegistro .container .box-cards .card-opcionReg {
  border: none;
  padding: 32px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 415px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
          box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.secc-opcionesderegistro .container .box-cards .card-opcionReg .box-icon-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.secc-opcionesderegistro .container .box-cards .card-opcionReg .box-icon-title .icon {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.secc-opcionesderegistro .container .box-cards .card-opcionReg .box-icon-title .titulo {
  color: #123850;
  font-family: "Sharp Sans Semibold";
  font-size: 24px;
  font-style: normal;
}

.secc-opcionesderegistro .container .box-cards .card-opcionReg .text {
  margin: 16px 0;
  font-family: "Sharp Sans Medium";
  font-size: 16px;
  font-style: normal;
}

.secc-opcionesderegistro .container .box-cards .card-opcionReg .btn {
  margin-top: auto;
}

.secc-opcionesderegistro .container .card-consulta {
  margin: 40px auto 30px;
  min-width: 420px;
  border: none;
  padding: 32px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 680px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
          box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.secc-opcionesderegistro .container .card-consulta .titulo {
  color: #123850;
  font-family: "Sharp Sans Medium";
  font-size: 24px;
  font-style: normal;
}

.secc-opcionesderegistro .container .card-consulta .box-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.secc-opcionesderegistro .container .card-consulta .box-form .box-input {
  margin: 8px;
}

.secc-opcionesderegistro .container .card-consulta .box-form .box-input label {
  color: #000;
  font-family: "Sharp Sans Medium";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
}

.secc-opcionesderegistro .container .card-consulta .box-form .box-input input {
  height: 49px;
  font-size: 16px;
}

.secc-opcionesderegistro .container .card-consulta .box-form .box-input:nth-child(1) {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}

.secc-opcionesderegistro .container .card-consulta .box-form .box-input:nth-child(2) {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 0%;
          flex: 2 1 0%;
}

.secc-reperennumeros {
  padding-top: 108px;
}

.secc-reperennumeros .green-block {
  background: #449AA7;
}

.secc-reperennumeros .green-block .box-image .left img {
  width: 100%;
}

@media (max-width: 768px) {
  .secc-reperennumeros .green-block .box-image .left {
    width: 100% !important;
    display: block !important;
  }
}

.secc-reperennumeros .green-block .box-image .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  height: 96%;
}

@media (max-width: 768px) {
  .secc-reperennumeros .green-block .box-image .right {
    display: none;
  }
}

.secc-reperennumeros .green-block .box-image .right .enfermedades, .secc-reperennumeros .green-block .box-image .right .pacientes {
  color: #fff;
  width: 100%;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px;
  height: 96%;
}

.secc-reperennumeros .green-block .box-image .right .enfermedades .dato, .secc-reperennumeros .green-block .box-image .right .pacientes .dato {
  font-family: 'Inter';
  font-size: 48px;
}

.secc-reperennumeros .green-block .box-image .right .enfermedades .titulo, .secc-reperennumeros .green-block .box-image .right .pacientes .titulo {
  font-family: 'Inter';
  font-size: 18px;
}

.secc-reperennumeros .green-block .box-image .right .enfermedades {
  background: #60B7C4;
}

.secc-reperennumeros .green-block .box-image .right .pacientes {
  background: #32808B;
}

.secc-faq {
  margin-bottom: 72px;
}

.secc-faq .accordion-item {
  border: none;
}

.secc-faq .accordion-item .accordion-button {
  color: #000000;
  font-family: 'Inter';
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  background: #ECF5FA;
  border-radius: 8px;
  padding: 16px;
  margin: 8px 0;
}

.secc-faq .accordion-item .accordion-body {
  color: #000;
  font-family: 'Inter';
  font-weight: 380;
  font-size: 16px;
}

.secc-enlaces {
  padding: 36px;
  background: #ECF5FA;
}

.secc-enlaces .tituloSeccion {
  padding: 0;
  font-size: 24px;
}

.secc-enlaces div {
  margin: auto;
}

.secc-footer {
  background: #E1E5E7;
  padding-top: 36px;
  padding-bottom: 24px;
}

.secc-footer .box-left {
  float: left;
  display: inline-block;
}

.secc-footer .box-right {
  display: inline-block;
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.secc-footer .box-right img {
  max-width: 92px;
  margin: -8px 0 8px auto;
  -webkit-filter: invert(40%) sepia(97%) saturate(633%) hue-rotate(176deg) brightness(70%) contrast(92%);
          filter: invert(40%) sepia(97%) saturate(633%) hue-rotate(176deg) brightness(70%) contrast(92%);
}

.secc-footer .box-right .text-footer {
  text-align: right;
  font-family: "Inter";
  font-style: normal;
  font-size: 1.4rem;
}

.secc-footer .box-right .text-footer a {
  color: #000;
  text-decoration: none;
}

.secc-footer .box-right .text-footer a:hover {
  text-decoration: underline;
}

.secc-footer .box-right .text-footer:last-child {
  margin-bottom: 16px;
}

.secc-footer .footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.secc-footer .footer-bottom p {
  font-family: "Sharp Sans Medium";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.secc-footer .footer-bottom .links a {
  color: #123850;
  font-family: "Sharp Sans Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  margin: 8px 16px 40px;
}

.modal .modal-content {
  padding: 8px;
}

.modal .btn-close {
  font-size: 1.4rem;
  margin-top: -40px;
}

.modal .modal-title {
  font-size: 2rem;
  font-family: "Sharp sans Semibold";
  color: #123850;
  font-weight: 500;
  margin: 16px 0 8px;
}

.modal .modal-body p {
  font-family: "Inter";
  font-size: 1.4rem;
}

.modal.consulta-solicitud .textofijo {
  font-weight: bold;
  color: #333;
  /* Color oscuro para la parte fija */
}

.modal.consulta-solicitud .estado {
  color: #007bff;
  /* Color azul para el estado */
  font-style: italic;
}
