@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: #FFF;
 z-index: 100000;
 -webkit-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.25);
 -moz-box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.25);
 box-shadow: 0px 6px 5px 0px rgba(0, 0, 0, 0.25);
}

.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>p>a {
 text-decoration: none;
 font-family: Poppins-Regular;
 font-size: 18px;
 font-weight: 400;
 cursor: pointer;
 color: #1B1B1B;
}

.contentHeader>.center>button {
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: center;
 background: #2E8EFF;
 font-family: Poppins-SemiBold;
 font-weight: 600;
 font-size: 16px;
 line-height: 15px;
 color: #FFFFFF;
 padding: 12px 14px;
 border-radius: 6px;
 border: none;
 cursor: pointer;
}

.contentHeader > .center > button > a{
 list-style: none;
 text-decoration: none;
 font-family: Poppins-SemiBold;
 font-weight: 600;
 font-size: 16px;
 line-height: 15px;
 color: #FFFFFF;
}

.contentHeader > .center > button > img{
 width: 12px;
 height: 8px;
 margin-left: 8px;
}

.content {
 width: 100%;
 min-height: 85vh;
 padding: 40px 80px;
 display: flex;
 align-items: star;
 flex-direction: column;
 justify-content: start;
 gap: 1.6rem;
}

.content > div{
 width: 100% !important;
 display: flex;
 flex-direction: column;
}

.content > div > p{
 font-family: Poppins-SemiBold;
 font-size: 18px;
}

#mt{
 margin-top: 100px;
}

.w-50{
 width: 40%;
}

.w-auto{
 width: fit-content;
}

.content > div > .border{
 border-bottom: 1.5px solid #2E8EFF;
 padding-bottom: 15px;
}

.content > div > .border > h1{
 font-family: Archivo-Thin;
 font-size: 34px;
 font-weight: 400;
}

.content > div > .border > h2{
 font-family: Archivo-Regular;
 font-size: 22px;
 font-weight: 400;
}

.content > div > .border > h1 > span{
 font-family: Archivo-Regular;
 font-size: 34px;
}

.content > div > .boxInfo{
 width: 100%;
 display: flex;
 flex-direction: column;
 padding: 25px;
 padding-right: 0px;
 gap: 1rem;
}
.content > div > .boxInfo > p{
 font-family: Poppins-Regular;
 font-size: 18px;
 color: #8E8E8E;
}

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 !important;
 margin: 0;
}

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

.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;
}

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

.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 !important;
}

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

.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;
}

/* Estilos para el menú */
.menu {
 display: none;
 background-color: white;
 width: 100%;
 padding: 20px 0px;
 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 position: absolute;
 top: 79px;
 left: 0;
 right: 0;
 z-index: 9999999;
}

.menu > div {
 width: 100%;
 border-bottom: 2px solid #2E8EFF;
}

.menu > div >.boxMenu{
 display: flex;
 flex-direction: row;
 align-items: center;
 padding: 10px 20px;
 justify-content: space-between;
}

.menu > div > .boxMenu > p {
 font-size: 16px;
 font-family: Archivo-Regular;
 margin: 0;
 color: #1B1B1B;
}

/* Estilos para los elementos dentro del menú */
.menu h3 {
 margin: 0;
 font-size: 14px;
 font-family: Poppins-Regular;
 margin-top: 20px;
 margin-bottom: 10px;
 text-align: center;
 color: #1B1B1B;
}

.menu p {
 text-align: center;
 font-size: 14px;
 font-family: Poppins-Regular;
 margin-bottom: 15px;
 color: #1B1B1B;
}

.menu p > a{
 text-decoration: none;
 color: #1B1B1B;
}

.menu h3 > a {
 text-decoration: none;
 color: #1B1B1B;
}

.menu .login-button {
 display: block;
 width: 90%;
 padding: 10px;
 background-color: #2E8EFF;
 font-family: Poppins-SemiBold;
 font-size: 14px;
 color: white;
 text-align: center;
 text-decoration: none;
 border-radius: 5px;
}

.flex{
 width: 100%;
 border-bottom: none !important;
 display: flex;
 justify-content: center;
 align-items: center;
}

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;
 }

 header {
  padding: 20px;
 }

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

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

 .content{
  padding: 10px 30px;
 }

 .w-50{
  width: 100%;
 }

 .content > div > .boxInfo {
  padding: 25px 10px;
 }

 .content > div > .border > h1 {
  font-size: 24px;
 }

 .content > div > .border > h1 > span {
  font-size: 24px;
 }

 .content > div > .border > h2 {
  font-size: 20px;
 } 

 .content > div > .boxInfo > p {
  font-size: 16px;
 }

 .content > div > p {
  font-size: 16px;
 }

 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 !important;
  margin: 0;
  margin-bottom: 16px;
 }

 .boxMoreInfo>p {
  font-family: Poppins-Regular;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff7a !important;
  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;
    }

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

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

    .content{
        padding: 40px 30px;
    }

    .w-50{
        width: 100%;
    }

    #mt{
        margin-top: 100px;
    }

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

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

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

@media screen and (min-width: 1300px) {
    .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;
      }
 
 .content{
    padding: 40px 40px;
    }
}