@font-face {
  font-family: "Archivo-Thin";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-Thin.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Archivo-Light";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-Light.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Archivo-SemiBold";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-SemiBold.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Archivo-Bold";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-Bold.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Archivo-Regular";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-Regular.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Archivo-ExtraBold";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Archivo-ExtraBold.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-Thin";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-Thin.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-Light";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-Light.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-Medium";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-Medium.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-Regular";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-Regular.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-Bold";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-Bold.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

@font-face {
  font-family: "Poppins-SemiBold";
  /* Nombre de la fuente que usarás en CSS */
  src: url("./fonts/Poppins-SemiBold.ttf") format("truetype");
  /* Ruta al archivo .ttf */
  font-weight: normal;
  /* Puedes especificar el peso de la fuente si es necesario */
  font-style: normal;
  /* Puedes especificar el estilo de la fuente si es necesario */
}

/* Reseteo básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Diseño del cuerpo */
body {
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  max-height: auto;
}

header {
  position: fixed;
  width: 100%;
  padding: 25px 80px;
  background: transparent;
  z-index: 100000;
}

.contentHeader {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.contentHeader > .center {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 3rem;
}

.contentHeader > .center > img {
  width: 140px;
}

.contentHeader > .center > p {
  font-family: Poppins-Regular;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  color: #ffffff;
}

.contentHeader > .center > p > a {
  text-decoration: none;
  font-family: Poppins-Regular;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  color: #ffffff;
}

.content {
  width: 100%;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-fondo {
  background-image: url("./images/fondo-login-web.png");
  background-position: center;
  background-repeat: no-repeat;
}

.content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  width: 45%;
  height: auto;
  background: #ffffff;
  border-radius: 20px;
}

.content-box > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.content-box > div > h1 {
  color: #10217d;
  font-size: 26px;
  font-family: Poppins-Bold;
  margin-bottom: 15px;
}

.content-box > div > p {
  margin: 0;
  color: #252525;
  font-family: Poppins-Regular;
  font-size: 20px;
}

footer {
  width: 100%;
  padding: 40px 80px;
  display: flex;
  background: #252525;
  flex-direction: column;
}

.footerBoxImg {
  display: flex;
  flex-direction: column;
  align-items: start;
  align-self: start;
  justify-content: start;
  width: auto;
}

.footerBoxImg > img {
  width: 150px;
  margin-left: -10px;
  margin-bottom: 20px;
}

.footerBoxImg > .linea {
  width: 60px;
  border-bottom: 1.5px solid #ffffff54;
}

.footerInfoContact {
  width: 100%;
  padding: 15px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* border-bottom:  1.5px solid #ffffff54; */
}

.footerInfoContact > .boxMoreInfo {
  display: flex;
  flex-direction: column;
}

.footerInfoContact > .boxMoreInfo > p {
  font-family: Poppins-Regular;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff7a;
  margin: 0;
  margin-bottom: 15px;
}

.footerInfoContact > .boxMoreInfo > h5 {
  font-family: Poppins-Regular;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff7a;
  margin: 0;
  margin-bottom: 16px;
}

.footerInfoContact > .boxMoreInfo > .rowFooter {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}

.footerInfoContact > .boxMoreInfo > .rowFooter > img {
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

.footerInfoContact > .boxMoreInfo > .rowFooter > p {
  font-family: Poppins-Regular;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff7a;
  margin: 0;
}

.footerInfoContact > .boxMoreInfo > p > a {
  text-decoration: none;
  color: #ffffff7a;
  cursor: pointer;
}

.footerFinalInfo > .boxMoreExtra > .rowFooter > p > a {
  color: #ffffff7a !important;
  text-decoration: none;
}

.footerFinalInfo {
  width: 100%;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footerFinalInfo > .boxMoreExtra {
  display: flex;
  flex-direction: column;
  border-bottom: 1.5px solid #ffffff54;
  width: 100%;
}

.footerFinalInfo > .boxMoreExtra > .rowFooter {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}

.footerFinalInfo > .boxMoreExtra > .rowFooter > img {
  width: 15px;
  height: 15px;
  margin-right: 8px;
}

.footerFinalInfo > .boxMoreExtra > .rowFooter > p {
  font-family: Poppins-Regular;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff7a !important;
  margin: 0;
}

.copyRight {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}

.copyRight > div > p {
  font-family: Poppins-Regular;
  font-size: 10px;
  font-weight: 500;
  color: #ffffff7a;
}

.copyRight > .boxFlecha {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffffff54;
  border-radius: 100%;
  width: 50px;
  height: 50px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 80px;
  background: transparent;
}

form {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

form > .form-group {
  width: 100%;
  margin-bottom: 20px;
}

form > .form-group > .row {
  width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #10217d;
  font-family: Poppins-Regular;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

form > .form-group > .row > input {
  padding: 15px 20px;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #252525;
  font-family: Poppins-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

form > .form-group > input {
  padding: 15px 20px;
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #252525;
  font-family: Poppins-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #2e8eff;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 10000000000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 211, 211, 0.404);
}

.modal > .contenidoModal {
  width: 40%;
  /* overflow-y: scroll; */
  height: auto;
  padding: 48px 64px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
  border-radius: 32px;
  background: #fff;
}

.headerModalEmergencia {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.headerModalEmergencia > img {
  width: 380px;
  height: 280px;
}

.canalesAtencionInfoBox {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px;
}

.canalesAtencionInfoBox > h1 {
  color: #2e8eff;
  font-size: 24px;
  font-family: Archivo-Regular;
  margin-bottom: 20px;
}

.canalesAtencionInfoBox > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.canalesAtencionInfoBox > div > p {
  color: #10217d;
  font-family: Poppins-Light;
  font-size: 18px;
  margin: 0;
  margin-bottom: 16px;
}

.canalesAtencionInfoBox > div > p > span {
  color: #10217d;
  font-family: Poppins-Bold;
}

.canalesAtencionInfoBox > div > button {
  width: 80%;
  margin-top: 10px;
  background: #2e8eff;
  padding: 10px 0px;
  border-radius: 6px;
  font-family: Poppins-Bold;
  font-size: 16px;
  color: #ffffff;
  border: none;
}

.ojito {
  position: absolute;
  right: 15px;
  top: 35%;
}

input.invalid,
select.invalid {
  border: 2px solid red !important;
}

input.valid,
select.valid {
  border: 2px solid black !important;
}

.error {
  border: 2px solid red;
}

p a[href^="tel"] {
  color: #ffffff7a !important;
  text-decoration: none;
}

@media screen and (min-width: 280px) and (max-width: 750px) {
  #menuWeb,
  #footerWeb {
    display: none !important;
  }

  #footerMovil,
  #menuMovil {
    display: flex !important;
  }

  .modal {
    background: #1e1e1e8c;
    z-index: 10000000000;
  }

  .modal > .contenidoModal {
    width: 80%;
    border-radius: 22px;
    padding: 25px;
  }

  .headerModalEmergencia {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .headerModalEmergencia > img {
    width: 240px;
    height: 160px;
  }

  .canalesAtencionInfoBox {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .contentHeader > .center > img {
    width: auto;
  }

  .contentHeader > .center > button {
    font-size: 12px;
  }

  .canalesAtencionInfoBox > h1 {
    color: #2e8eff;
    font-size: 16px;
    font-family: Archivo-Regular;
    margin-bottom: 20px;
  }

  .canalesAtencionInfoBox > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .canalesAtencionInfoBox > div > p {
    color: #10217d;
    font-family: Poppins-Light;
    font-size: 12px;
    margin: 0;
    margin-bottom: 16px;
  }

  .canalesAtencionInfoBox > div > p > span {
    color: #10217d;
    font-family: Poppins-Bold;
  }

  .canalesAtencionInfoBox > div > button {
    width: 80%;
    margin-top: 10px;
    background: #2e8eff;
    padding: 10px 0px;
    border-radius: 6px;
    font-family: Poppins-Bold;
    font-size: 12px;
    color: #ffffff;
    border: none;
  }

  .bg-fondo {
    background-image: url("./images/fondo-login-movil.png");
    background-position: center;
    background-repeat: no-repeat;
  }

  header {
    padding: 30px;
  }

  .contentHeader {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .contentHeader > .center {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 3rem;
  }

  .contentHeader > .center > img {
    width: 140px;
  }

  .contentHeader > .center > p {
    font-family: Poppins-Regular;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    color: #1b1b1b;
  }

  .contentHeader > .center > button {
    background: #fafafa;
    border-radius: 6px;
    width: 125px;
    height: 32px;
    cursor: pointer;
    border: none;
    outline: none;
  }

  .contentHeader > .center > button > a {
    text-decoration: none;
    color: #2e8eff;
    font-family: Poppins-SemiBold;
    font-size: 12px;
  }

  .content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    width: 80%;
    height: auto;
    background: #ffffff;
    border-radius: 20px;
  }

  .content-box > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  form {
    width: 100%;
  }

  .form-group label {
    font-size: 12px;
  }

  input,
  select {
    font-size: 12px;
  }

  input[type="text"],
  input[type="email"] {
    flex: 3;
  }

  footer {
    padding: 20px;
  }

  .footerBoxImg {
    display: flex;
    flex-direction: column;
    align-items: start;
    align-self: start;
    justify-content: start;
    width: auto;
  }

  .footerBoxImg > img {
    width: 130px;
    margin-left: -10px;
    margin-bottom: 20px;
  }

  .footerBoxImg > .linea {
    width: 60px;
    border-bottom: 1.5px solid #ffffff54;
  }

  .footerInfoContact {
    width: 100%;
    padding: 15px 0px;
    display: flex;
    flex-direction: column;
    border-bottom: 1.5px solid #ffffff54;
  }

  .footerInfoContact > p {
    font-family: Poppins-Regular;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff7a;
    margin: 0;
    margin-bottom: 15px;
  }

  .footerInfoContact > .row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .footerInfoContact > .row > .column{
    display: flex;
    flex-direction: column;
  }

  .footerInfoContact > .row > .column > .rowFooter {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }

  .footerInfoContact > .row > .column > h5 {
    font-family: Poppins-Regular;
    font-size: 10px;
    font-weight: 500;
    color: #ffffff7a !important;
    margin: 0;
    margin-bottom: 16px;
  }

  .footerInfoContact > .row > .column > .rowFooter > img {
    width: 15px;
    height: 15px;
    margin-right: 8px;
  }

  .footerInfoContact > .row > .column > .rowFooter > p {
    font-family: Poppins-Regular;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff7a !important;
    margin: 0;
  }

  .footerInfoContact > .row > .column > .rowFooter > p > a{
    text-decoration: none;
    color: #ffffff7a !important;
  }

  .mtfoot{
    margin-top: 15px !important;
    margin-bottom: 5px !important;
  }

  .footerMoreInfo,
  .footerFinalInfo {
    width: 100%;
    padding: 15px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .footerMoreInfo .footerFinalInfo > .boxMoreInfo {
    display: flex;
    flex-direction: column;
  }

  .boxMoreInfo > h5 {
    font-family: Poppins-Regular;
    font-size: 10px;
    font-weight: 500;
    color: #ffffff7a;
    margin: 0;
    margin-bottom: 16px;
  }

  .boxMoreInfo > p {
    font-family: Poppins-Regular;
    font-size: 11px;
    font-weight: 500;
    color: #ffffff7a;
    margin: 0;
    margin-bottom: 9px;
  }

  .boxMoreInfo > p > a {
    text-decoration: none;
    color: #ffffff7a;
    cursor: pointer;
  }

  .boxMoreInfo > .emergencia {
    color: #ffffff !important;
  }

  .boxMoreInfo > .rowFooter {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 8px;
  }

  .boxMoreInfo > .rowFooter > img {
    width: 15px;
    height: 15px;
    margin-right: 16px;
  }

  .boxMoreInfo > .rowFooter > p {
    font-family: Poppins-Regular;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff7a;
    margin: 0;
  }
}

@media screen and (min-width: 751px) and (max-width: 1299px) {
  header {
    padding: 25px;
  }

  .contentHeader > .center {
    column-gap: 1rem;
  }

  .contentHeader > .center > img {
    width: 120px;
  }

  .contentHeader > .center > p {
    font-size: 14px;
  }

  .contentHeader > .center > p > a {
    font-size: 14px;
  }

  .modal > .contenidoModal{
    width: 60%;
  }

  .content-box {
    width: 55%;
  }

  footer{
    padding: 40px 20px;
    padding-right: 10px;
  }

  .copyRight{
    margin-top: 40px;
  }
}

@media screen and (min-width: 1300px) {
  .content-box {
    width: 30%;
  }

  .modal > .contenidoModal{
    width: 40%;
    padding: 20px;
    gap: 1rem;
  }

  .headerModalEmergencia > img{
    width: 300px;
    height: auto;
  }

  .canalesAtencionInfoBox{
    margin-top: 10px;
  }

  .canalesAtencionInfoBox > h1 {
    margin-bottom: 10px;
  }

  .canalesAtencionInfoBox > div > p {
    margin-bottom: 10px;
  }
}
