@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 {
  font-family: "Archivo-Regular", sans-serif;
  line-height: 1.6;
  background: rgba(255, 255, 255, 1);
  width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  max-height: auto;
}

/* Estilos del encabezado */
.header {
  width: 100%;
  background-color: #4caf50;
  color: white;
  padding: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estilos del contenido principal con Grid */
.main-content {
  /* display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  /* Espacio entre las columnas */
  padding: 4rem;
  padding-right: 20px;
}

.cabecera {
  width: 100%;
  margin-top: 80px;
}

.cabecera > div {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  border-bottom: 2px solid #2e8eff;
  gap: 1rem;
  /* Espacio entre las columnas */
}

.cabecera > div > .titulo_cabecera {
  color: #1e1e1e;
  font-family: Archivo-Thin;
  font-size: 67.636px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
}

.cabecera > div > .titulo_cabecera > .titulo_strong {
  color: #1e1e1e !important;
  font-family: Archivo-Regular !important;
  font-size: 67.636px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
}

.cabecera > div > .titulo_p {
  color: #10217d;
  font-family: Poppins-Regular;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.main {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  /* Espacio entre las columnas */
}

.main > .boxBtnPlanes {
  width: 80%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  column-gap: 2rem;
}

.main > .boxBtnPlanes > .btnFocus {
  height: 46px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #2e8eff;
  cursor: pointer;
  color: #fff;
  font-family: Poppins-Regular;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main > .boxBtnPlanes > .btnUnFocus {
  height: 46px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #2e8eff;
  background: #fff;
  cursor: pointer;
  color: #2e8eff;
  font-family: Poppins-Regular;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main > .boxBtnPlanes > .btnFocus > p > a {
  text-decoration: none;
  color: #ffffff;
}

.main > .boxBtnPlanes > .btnUnFocus > p > a {
  text-decoration: none;
  color: #2e8eff;
}

.main > .boxOpcionPlanes {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}

.main > .boxOpcionPlanes > .planes {
  width: 250px;
  height: 240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #2e8eff;
  padding: 40px 16px 32px 16px;
}

.main > .boxOpcionPlanes > .planes > .boxInfoPlan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.main > .boxOpcionPlanes > .planes > .boxInfoPlan > h3 {
  color: #2e8eff;
  font-family: Archivo-SemiBold;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.main > .boxOpcionPlanes > .planes > .boxInfoPlan > p {
  color: #10217d;
  text-align: center;
  font-family: Archivo-Light;
  font-size: 40.554px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.main > .boxOpcionPlanes > .planes > .boxInfoPlan > p > span {
  color: #10217d;
  text-align: center;
  font-family: Archivo-SemiBold;
  font-size: 40.554px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.main > .boxOpcionPlanes > .planes > .adquirirPlan {
  width: 80%;
  height: 43.009px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.168px;
  background: #2e8eff;
  color: #fff;
  font-family: Poppins-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
}

.main > .boxOpcionPlanesColectivo {
  width: 80%;
  gap: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.main > .boxOpcionPlanesColectivo > .colectivoPlan,
.colectivoPlan2 {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.main > .boxOpcionPlanesColectivo > .colectivoPlan > p {
  color: #1e1e1e;
  text-align: center;
  font-family: Archivo-Regular;
  font-size: 32px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
}

.main > .boxOpcionPlanesColectivo > .colectivoPlan > p > span {
  color: #10217d;
  font-family: Archivo-Regular;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main > .boxOpcionPlanesColectivo > .colectivoPlan2 > p {
  color: #1e1e1e;
  text-align: center;
  font-family: Archivo-Thin;
  font-size: 32px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
}

.main > .boxOpcionPlanesColectivo > .colectivoPlan2 > p > span {
  color: #10217d;
  font-family: Archivo-Regular;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.boxOpcionPlanesColectivo > form {
  width: 70%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.boxOpcionPlanesColectivo > form > .form-container {
  width: 100%;
}

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

.boxOpcionPlanesColectivo > form > .form-group > .row {
  display: flex;
  flex-direction: row;
}

.phone-group {
  display: flex;
}

.phone-group select {
  width: 20%;
  margin-right: 10px;
}

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

.submit-btn:hover {
  background-color: #001a5a;
}

.boxOpcionPlanesColectivo > form > .form-group,
.form-group-modal 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;
}

.boxOpcionPlanesColectivo > form > .input-group {
  display: flex;
  gap: 10px;
}

.boxOpcionPlanesColectivo > form > input,
select {
  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;
}

.boxOpcionPlanesColectivo > form > select {
  width: 120px !important;
  flex: 1;
  color: #252525;
  font-family: Poppins-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 15px 20px;
}

.boxOpcionPlanesColectivo > form > input[type="text"],
input[type="email"] {
  flex: 3;
}

.boxOpcionPlanesColectivo > form > input:focus,
select:focus {
  outline: none;
  border-color: #2e8eff;
}

.boxOpcionPlanesColectivo > form > input[type="text"],
input[type="email"],
select {
  transition: border-color 0.3s ease;
}

.seleccionado {
  background: #2faf00 !important;
}

.trazado {
  color: #2c2c2d !important;
  font-family: Archivo-Light !important;
  font-size: 36px !important;
  font-style: normal !important;
  font-weight: 400px !important;
  line-height: normal !important;
  text-decoration: line-through !important;
}

.main > .boxOpcionPlanes > .planRecomendado {
  width: 250px;
  position: relative;
  flex-direction: column;
  height: 342px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #2faf00;
  padding: 40px 16px 32px 16px;
}

.main > .boxOpcionPlanes > .planRecomendado > .obsoluto {
  position: absolute;
  top: -15px;
  border-radius: 16px;
  background: #2faf00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: Poppins-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 140px;
  height: 34px;
}

.main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanTitulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 16px;
}

.main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanTitulo > h3 {
  color: #2e8eff;
  font-family: Archivo-SemiBold;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanTitulo > p {
  color: #525252;
  text-align: center;
  font-family: Archivo-Light;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-decoration: line-through;
}

.main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanTitulo > span {
  color: #525252;
  font-family: Archivo-SemiBold;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: line-through;
}

.main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanAnual {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: space-between;
  justify-content: center;
  margin-bottom: 32px;
}

.main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanAnual > .precio {
  color: #10217d;
  text-align: center;
  font-family: Archivo-Light;
  font-size: 40.554px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 8px;
}

.main
  > .boxOpcionPlanes
  > .planRecomendado
  > .boxInfoPlanAnual
  > .precio
  > span {
  color: #10217d;
  text-align: center;
  font-family: Archivo-SemiBold;
  font-size: 40.554px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanAnual > .ahorro {
  color: #2e8eff;
  text-align: center;
  font-family: Archivo-Regular;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 8px;
}

.main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanAnual > .promocion {
  color: #ff2e31;
  text-align: center;
  font-family: Archivo-Thin;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.main > .boxOpcionPlanes > .planRecomendado > .adquirirPlanBtn {
  width: 80%;
  height: 43.009px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.168px;
  background: #2e8eff;
  color: #fff;
  font-family: Poppins-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
}

.main > .boxFacturacion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.main > .boxFacturacion > .headerFacturacion {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  color: #1e1e1e;
  font-family: Archivo-Thin;
  font-size: 64px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.main > .boxFacturacion > .content {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.main > .boxFacturacion > .content > .form {
  width: 48%;
}

.form-container {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

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

.input-group {
  display: flex;
  gap: 10px;
}

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

select {
  width: 120px !important;
  color: #252525;
  font-family: Poppins-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 15px 20px;
  border-radius: 5px;
  border: 1px solid #000;
}

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

input:focus,
select:focus {
  outline: none;
  border-color: #2e8eff;
}

input[type="text"],
input[type="email"],
select {
  transition: border-color 0.3s ease;
  border-radius: 5px;
  border: 1px solid #000;
}

.main > .boxFacturacion > .content > .degradadoBox {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

.main > .boxFacturacion > .content > .degradadoBox > .degradado {
  width: 100%;
  display: flex;
  padding: 60px 64px;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  border-radius: 16px;
  background: linear-gradient(180deg, #2e8eff 0%, #76b5ff 100%);
}

.main > .boxFacturacion > .content > .degradadoBox > .degradado > h4 {
  color: #fff;
  font-family: Archivo-Regular;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 15px;
}

.main > .boxFacturacion > .content > .degradadoBox > .degradado > .precio {
  color: #10217d;
  font-family: Archivo-Thin;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-bottom: 70px;
}

.main
  > .boxFacturacion
  > .content
  > .degradadoBox
  > .degradado
  > .precio
  > span {
  color: #10217d;
  font-family: Archivo-Regular;
  font-size: 64px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.main > .boxFacturacion > .content > .degradadoBox > .degradado > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #fff;
  font-family: Poppins-Regular;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: justify;
  margin-bottom: 40px;
}

.main > .boxFacturacion > .content > .degradadoBox > .degradado > div > img {
  width: 24px;
  height: 17px;
  margin-right: 9px;
}

.main > .boxFacturacion > .content > .degradadoBox > .btnPagar {
  border-radius: 6px;
  background: #10217d;
  display: flex;
  height: 95px;
  padding: 32px 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  align-self: stretch;
  color: #fff;
  font-family: Poppins-Regular;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
}

.comparacion {
  width: 100%;
  gap: 2rem;
  margin-bottom: 20px;
}

.comparacion > .boxSubHeader {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  border-bottom: 2px solid #2e8eff;
  gap: 1rem;
  /* Espacio entre las columnas */
}

.comparacion > .boxSubHeader > .titulo_cabecera {
  color: #1e1e1e;
  font-family: Archivo-Thin;
  font-size: 67.636px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}

.comparacion > .boxSubHeader > .titulo_cabecera > .titulo_strong {
  color: #10217d !important;
  font-family: Archivo-Regular !important;
  font-size: 67.636px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
}

.comparacion > .boxSubHeader > .titulo_p {
  color: #10217d;
  font-family: Poppins-Regular;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.comparacion > .flexTabla {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
}

.comparacion > .flexTabla > .box {
  width: 100%;
  align-items: center;
  justify-items: start;
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  /* grid-template-rows: repeat(9, auto); */
  gap: 20px;
  /* Espacio entre los items */
  padding: 10px;
  /* margin-top: 30px; */
}

.grid-item {
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-items: center !important;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
  font-size: 1.5rem;
  color: #2e8eff;
  font-family: Archivo-Regular;
  font-size: 25.346px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.grid-item2 {
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: start;
  padding: 20px;
  border-radius: 5px;
  font-size: 1.5rem;
  color: #2e8eff;
  font-family: Archivo-Regular;
  font-size: 25.346px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.beneficio {
  margin-left: 20px;
  color: #1e1e1e;
  text-align: center;
  font-family: Archivo-Thin;
  font-size: 32px;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
}

.comparacion > .flexTabla > .box > .button {
  height: 46px;
  width: 200px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-items: center !important;
  border-radius: 16px;
  background: #10217d;
  /* cursor: pointer; */
  color: #fff;
  font-family: Poppins-Regular;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  /* margin-left: 60px; */
}

.infoComparacionDetails {
  color: #252525 !important;
  font-family: Poppins-Regular !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
}

/* Estilos del pie de página */
.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  position: fixed;
  width: 100%;
  bottom: 0;
}

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

.modal > .contenidoModal > .headerModal {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal > .contenidoModal > .headerModal > h1 {
  color: #1e1e1e;
  text-align: center;
  font-family: Archivo-Regular;
  font-size: 40.554px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 30px;
}

.form-container-modal {
  width: 100%;
}

.form-group-modal {
  margin-bottom: 15px;
}

.label-modal {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
}

.modal > .contenidoModal > .form-container-modal > input[type="text"],
input[type="date"] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #000;
  outline: none;
}

.modal > .contenidoModal > .form-container-modal > input[type="text"]:focus {
  border-color: #007bff;
}

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

.submit-btn:hover {
  background-color: #0056b3;
}

.cancel-btn {
  width: 100%;
  padding: 15px;
  background-color: white;
  color: #007bff;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #007bff;
  border-radius: 8px;
  cursor: pointer;
}

.cancel-btn:hover {
  background-color: #f0f0f0;
}

.date-group {
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #000;
}

.date-group input[type="text"] {
  flex: 1;
  outline: none;
  border: none;
}

.calendar-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0 10px;
}

.calendar-icon img {
  width: 20px;
  height: 20px;
}

.main-final {
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.w50 {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.main-final > .w50 > div > h1 {
  color: #1e1e1e;
  text-align: center;
  font-family: Archivo-Regular;
  font-size: 40.554px;
  font-style: normal;
  font-weight: 600;
  line-height: 108.664%;
}

.main-final > .w50 > .boxTextoFinal {
  width: 58%;
}

.main-final > .w50 > .boxTextoFinal > p {
  color: #1e1e1e;
  text-align: center;
  font-family: Archivo-Regular;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 108.664%;
}

.main-final > .w50 > .btnBoxFinal {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-final > .w50 > .btnBoxFinal > .btnFinal {
  display: flex;
  width: 100%;
  height: 64px;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  align-self: center;
  align-content: center;
  gap: 25px;
  align-self: stretch;
  border-radius: 8px;
  background: #2e8eff;
  color: #fff;
  font-family: Poppins-Regular;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 19.8px */
  letter-spacing: -0.2px;
  border: none;
}

#correoEnviar {
  background: #10217d !important;
}

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

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

.error {
  border: 2px solid red;
}

#banco,
#country,
#state {
  width: 100% !important;
}

/* Eliminar el icono en Chrome, Safari y Edge */
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
}

/* Eliminar el icono en Firefox */
input[type="date"] {
  -moz-appearance: textfield;
}

/* Para todos los navegadores - eliminar estilos predeterminados del input */
input[type="date"] {
  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;
}

#tablaMovil,
#datosFacturacion,
#pagarMovil,
#planesComeback,
#menuMovil,
#footerMovil {
  display: none;
}

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

.menuActive {
  font-family: Poppins-SemiBold !important;
}

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

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

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 > p > a {
  text-decoration: none;
  color: #ffffff7a;
  cursor: pointer;
}

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

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

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

/* 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 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) {
  header {
    padding: 20px;
  }

  footer {
    padding: 20px;
  }

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

  .main-content {
    gap: 2rem;
    padding: 30px 20px;
  }

  .cabecera > div {
    width: 100%;
    border-bottom: 1px solid #2e8eff;
  }

  .cabecera > div > .titulo_cabecera {
    font-size: 26px;
  }

  .cabecera > div > .titulo_cabecera > .titulo_strong {
    font-size: 24px !important;
  }

  .cabecera > div > .titulo_p {
    font-size: 16px;
  }

  .main {
    gap: 3rem;
  }

  .main > .boxBtnPlanes {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 1rem;
  }

  .main > .boxBtnPlanes > .btnFocus {
    width: auto;
    padding: 10px 19px;
    font-size: 12px;
  }

  .main > .boxBtnPlanes > .btnUnFocus {
    width: auto;
    padding: 10px 19px;
    font-size: 12px;
  }

  .main > .boxOpcionPlanes {
    width: 100%;
  }

  .main > .boxOpcionPlanes > .planes {
    width: 150px;
    height: 150px;
    padding: 20px 5px;
    justify-content: space-around;
  }

  .main > .boxOpcionPlanes > .planes > .boxInfoPlan {
    gap: 0.5rem;
  }

  .main > .boxOpcionPlanes > .planes > .boxInfoPlan > h3 {
    font-size: 18px;
  }

  .main > .boxOpcionPlanes > .planes > .boxInfoPlan > p {
    font-size: 20px;
  }

  .main > .boxOpcionPlanes > .planes > .boxInfoPlan > p > span {
    font-size: 20px;
  }

  .main > .boxOpcionPlanes > .planes > .adquirirPlan {
    font-size: 12px;
    height: 30px;
  }

  .main > .boxOpcionPlanes > .planRecomendado {
    width: 150px;
    height: 200px;
    padding: 20px 5px;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .obsoluto {
    font-size: 9.5px;
    width: 83px;
    height: 20px;
    top: -10px;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanTitulo {
    gap: 0.5rem;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanTitulo > h3 {
    font-size: 18px;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanTitulo > p {
    font-size: 15px;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanTitulo > p > span {
    font-size: 15px;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanAnual {
    gap: 0.5rem;
    margin-bottom: 10px;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanAnual > h3 {
    font-size: 18px;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanAnual > .precio {
    font-size: 20px;
  }

  .main
    > .boxOpcionPlanes
    > .planRecomendado
    > .boxInfoPlanAnual
    > .precio
    > span {
    font-size: 20px;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanAnual > .promocion {
    font-size: 10px;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .adquirirPlanBtn {
    font-size: 12px;
    height: 30px !important;
  }

  .main > .boxOpcionPlanesColectivo {
    width: 100%;
    gap: 1rem;
  }

  .main > .boxOpcionPlanesColectivo > div > img {
    width: 70px;
    height: 70px;
  }

  .main > .boxOpcionPlanesColectivo > .colectivoPlan,
  .colectivoPlan2 {
    width: 90%;
  }

  .main > .boxOpcionPlanesColectivo > .colectivoPlan > p {
    font-size: 20px;
    line-height: 21px;
  }

  .main > .boxOpcionPlanesColectivo > .colectivoPlan > p > span {
    font-size: 20px;
  }

  .main > .boxOpcionPlanesColectivo > .colectivoPlan2 {
    width: 100%;
  }

  .main > .boxOpcionPlanesColectivo > .colectivoPlan2 > p {
    font-size: 20px;
    line-height: 21px;
  }

  .main > .boxOpcionPlanesColectivo > .colectivoPlan2 > p > span {
    font-size: 20px;
  }

  .main > .boxOpcionPlanesColectivo > form {
    width: 100%;
  }

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

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

  .phone-group select,
  #banco {
    font-size: 10px !important;
  }

  .submit-btn {
    font-size: 12px;
    margin-top: 15px;
  }

  .comparacion {
    width: 100%;
    margin-bottom: 0px;
  }

  .comparacion > .boxSubHeader {
    width: 100%;
    border-bottom: 1px solid #2e8eff;
    margin-top: 30px;
  }

  .comparacion > .boxSubHeader > .titulo_cabecera {
    font-size: 26px;
  }

  .comparacion > .boxSubHeader > .titulo_cabecera > .titulo_strong {
    font-size: 24px !important;
  }

  .comparacion > .boxSubHeader > .titulo_p {
    font-size: 14px;
  }

  #tablaMovil {
    display: flex;
    margin-top: 30px;
  }

  .boxScroll {
    /* flex: 0 0 auto; */
    width: 100% !important;
    border: 1.5px solid #2e8eff;
    border-radius: 20px;
    padding: 20px;
    /* margin-right: 20px; */
    scroll-snap-align: start;
  }

  .boxScroll > h1 {
    width: 100%;
    text-align: start;
    color: #10217d;
    font-size: 20px;
    font-weight: 200;
    font-family: Archivo-Regular;
    margin-bottom: 15px;
  }

  .boxScroll > h1 > span {
    font-family: Archivo-SemiBold;
    font-weight: 800;
  }

  .boxScroll > div {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    margin-top: 15px;
    font-family: Poppins-Medium;
    font-size: 14px;
  }

  .boxScroll > div > img {
    margin-right: 10px;
  }

  #tablaOriginal,
  #menuWeb,
  #footerWeb {
    display: none !important;
  }

  /* #tablaMovil */

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

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

  .row {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }

  .row-grid {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  .grid-item2 {
    font-size: 12px;
  }

  .grid-item {
    padding: 0px;
  }

  .grid-item > img {
    width: 12px;
    height: 12px;
  }

  .comparacion > .flexTabla > .box > .row > .button {
    height: 34px;
    width: 100px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    justify-items: center !important;
    border-radius: 16px;
    background: #10217d;
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
  }

  .infoComparacionDetails {
    color: #252525 !important;
    font-family: Poppins-Regular !important;
    font-size: 12px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: normal !important;
  }

  .main > .boxFacturacion {
    gap: 2rem;
  }

  .main > .boxFacturacion > .content > .form {
    width: 100%;
  }

  #detalleFacturacion,
  #individualUno,
  #individualDos,
  #individualTres,
  #individualCuatro,
  #individualPlusUno,
  #individualPlusDos,
  #individualPlusTres,
  #individualPlusCuatro {
    display: none !important;
  }

  .headerDatosFacturacion {
    width: 100%;
    gap: 0.9rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  #datosFacturacion,
  #pagarMovil,
  #planesComeback {
    display: flex;
  }

  .headerDatosFacturacion > div > h1 {
    font-family: Archivo-Thin;
    font-size: 20px;
    font-weight: 300;
    line-height: 21px;
    color: #2e8eff;
    text-align: start;
  }

  .headerDatosFacturacion > div {
    display: flex;
    width: 100%;
  }

  .BoxDatosPlanSeleccionado {
    display: flex;
    width: 100%;
    height: auto;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid #2e8eff;
    border-radius: 15px;
    padding-top: 15px;
    padding-left: 30px;
    padding-bottom: 15px;
  }

  .BoxDatosPlanSeleccionado > .titulo {
    width: 100%;
    font-family: Archivo-Regular;
    font-size: 16px;
    font-weight: 600;
    line-height: 17px;
    color: #2e8eff;
  }

  .BoxDatosPlanSeleccionado > .ahorro {
    width: 100%;
    font-family: Archivo-Light !important;
    font-size: 13px;
    /* font-weight: 400; */
    line-height: 14px;
    text-decoration: line-through !important;
  }

  .BoxDatosPlanSeleccionado > .monto {
    font-family: Archivo-Bold;
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    line-height: 24px;
    color: #10217d;
  }

  .BoxDatosPlanSeleccionado > .monto > span {
    font-family: Archivo-Regular !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 24px !important;
  }

  .headerDatosFacturacion > div > p {
    font-family: Archivo-Regular;
    font-size: 16px;
    font-weight: 400;
    line-height: 17px;
    color: #1e1e1e;
    text-align: start;
  }

  .btnPagar {
    border-radius: 6px;
    background: #10217d;
    display: flex;
    height: 34px;
    padding: 20px 100px;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    align-self: stretch;
    color: #fff;
    font-family: Poppins-Regular;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
  }

  .volverPlanes {
    width: 100%;
    font-size: 12px;
    font-family: Archivo-Regular;
    font-weight: 600;
    line-height: 13px;
    color: #2e8eff;
  }

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

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

  .modal > .contenidoModal > .headerModal > img {
    width: 60px;
    height: 60px;
  }

  .modal > .contenidoModal > .headerModal > h1 {
    font-size: 16px;
  }

  .form-group-modal {
    margin-bottom: 10px;
  }

  .form-group-modal > label {
    font-size: 14px;
  }

  .submit-btn {
    padding: 0px;
    height: 35px;
    font-size: 14px;
  }

  .cancel-btn {
    height: 35px;
    padding: 0px;
    font-size: 14px;
  }

  #banco {
    font-size: 10px !important;
  }

  input[type="date"] {
    font-size: 10px !important;
  }

  .calendar-icon img {
    width: 15px;
    height: 15px;
  }

  .w50 {
    width: 100%;
  }

  .w50 > div > img {
    margin-left: 20px;
    width: 86px;
    height: 67px;
  }

  .main-final > .w50 > div > h1 {
    font-size: 16px;
  }

  .main-final > .w50 > .boxTextoFinal > p {
    font-size: 14px;
  }

  .main-final > .w50 > .btnBoxFinal > .btnFinal {
    height: 35px;
    font-size: 12px;
  }

  .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: 1199px) {
  header {
    padding: 25px;
  }

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

  .contentHeader > .center > a > 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;
  }

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

  .headerModalEmergencia > img {
   width: 55%;
   height: auto;
  }

  .canalesAtencionInfoBox{
   margin: 0px;
  }

  .canalesAtencionInfoBox > h1 {
   font-size: 20px;
  }

  .canalesAtencionInfoBox > div > p {
   font-size: 16px;
   margin-bottom: 8px;
  }

  .canalesAtencionInfoBox > div > button {
   font-size: 14px;
   width: 60%;
  }

  .main-content{
    padding: 1.5rem;
    padding-right: 10px;
    gap: 3rem;
  }

  .cabecera{
    margin-top: 100px;
  }

  .cabecera > div {
    width: 100%;
  }

  .cabecera > div > .titulo_cabecera {
    font-size: 4vw;
  }

  .cabecera > div > .titulo_cabecera > .titulo_strong{
    font-size: 4vw !important;
  }

  .cabecera > div > .titulo_p {
    font-size: 2vw;
  }

  .main {
    gap: 3rem;
  }

  .main > .boxBtnPlanes {
    width: 95%;
  }

  .main > .boxBtnPlanes > .btnFocus{
    font-size: 1.8vw;
  }

  .main > .boxBtnPlanes > .btnUnFocus{
    font-size: 1.8vw;
  }

  .main > .boxOpcionPlanes {
    width: 90%;
    justify-content: space-around;
  }

  .main > .boxOpcionPlanes > .planes {
    width: 30%;
    height: auto;
    justify-content: space-around;
    padding: 20px 10px;
  }

  .main > .boxOpcionPlanes > .planRecomendado{
    width: 30%;
    height: auto;
    justify-content: space-around;
    padding: 20px 10px;
  }

  .main > .boxOpcionPlanes > .planes > .boxInfoPlan{
    margin-bottom: 10px;
  }

  .main > .boxOpcionPlanes > .planes > .boxInfoPlan > h3{
    font-size: 3vw;
  }

  .main > .boxOpcionPlanes > .planes > .boxInfoPlan > p {
    font-size: 2.5vw;
  }

  .main > .boxOpcionPlanes > .planes > .boxInfoPlan > p > span{
    font-size: 2.5vw;
  }

  .main > .boxOpcionPlanes > .planes > .adquirirPlan {
    width: 70%;
    height: 30px;
    font-size: 2vw;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .obsoluto {
    font-size: 1.5vw;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanTitulo > h3{
    font-size: 3vw;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanTitulo > p{
    font-size: 2.5vw;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanAnual > .precio{
    font-size: 2.5vw;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanAnual > .precio > span {
    font-size: 2.5vw;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .boxInfoPlanAnual > .promocion{
    font-size: 1.5vw;
  }

  .main > .boxOpcionPlanes > .planRecomendado > .adquirirPlanBtn {
    width: 70%;
    height: 30px;
    font-size: 2vw;
  }

  .main > .boxOpcionPlanesColectivo > .colectivoPlan, .colectivoPlan2{
    width: 90%;
  }

  .main > .boxOpcionPlanesColectivo > .colectivoPlan > p {
    font-size: 3cqb;
  }

  .main > .boxOpcionPlanesColectivo > .colectivoPlan > p > span {
    font-size: 3vw;
  }

  .boxOpcionPlanesColectivo > form{
    width: 80%;
  }

  .form-group label {
    font-size: 2vw;
  }

  input, select {
    font-size: 2vw;
  }

  .phone-group > input, select {
    font-size: 2vw;
  }

  .phone-group > select {
    padding: 0px;
    padding-inline: 10px;
  }

  .input-group > input, select {
    font-size: 2vw;
  }

  .input-group > select {
    padding: 0px;
    padding-inline: 10px;
  }

  #banco, #country, #state {
    padding: 10px;
    font-size: 2vw;
  }

  .submit-btn {
    font-size: 2vw;
    margin-top: 10px;
  }

  .main > .boxFacturacion{
    gap: 2rem;
  }

  .main > .boxFacturacion > .headerFacturacion {
    font-size: 4vw;
    font-family: Archivo-Regular;
  }

  .main > .boxFacturacion > .content > .degradadoBox > .degradado {
    padding: 30px;
  }

  .main > .boxFacturacion > .content > .degradadoBox > .degradado > h4 {
    font-size: 4.5vw;
  }

  .trazado{
    font-size: 3vw !important;
  }

  .main > .boxFacturacion > .content > .degradadoBox > .degradado > .precio{
    font-size: 3.5vw;
    margin-bottom: 30px;
  }

  .main > .boxFacturacion > .content > .degradadoBox > .degradado > .precio > span{
    font-size: 3.5vw;
  }

  .main > .boxFacturacion > .content > .degradadoBox > .degradado > div {
    font-size: 2.5vw;
  }

  .main > .boxFacturacion > .content > .degradadoBox > .btnPagar {
    font-size: 3vw;
    height: 60px;
  }

  .comparacion > .boxSubHeader {
    width: 100%;
  }

  .comparacion > .boxSubHeader > .titulo_cabecera {
    font-size: 4vw;
  }

  .comparacion > .boxSubHeader > .titulo_cabecera > .titulo_strong {
    font-size: 4vw !important;
  }

  .comparacion > .boxSubHeader > .titulo_p {
    font-size: 2.5vw;
  }

  .comparacion > .flexTabla {
    margin-top: 30px;
  }

  .beneficio{
    font-size: 2.5vw !important;
    font-family: Archivo-Regular;
  }

  .comparacion > .flexTabla > .box {
    padding: 0px;
  }

  .comparacion > .flexTabla > .box > .button {
    font-size: 1.5vw !important;
    /* height: auto;
    width: auto; */
    width: 100%;
    padding: 10px 30px;
  }

  .grid-item2 {
    font-size: 2vw;
  }

  .grid-item > img {
    width: 15px;
  }

  .infoComparacionDetails{
    font-size: 1.5vw !important;
    line-height: 1 !important;
    padding-inline: 0px;
  }

  .modal > .contenidoModal > .headerModal > h1{
    font-size: 2vw;
    margin-top: 10px;
  }

  .modal > .contenidoModal > .headerModal > img{
    width: 60px;
    height: auto;
  }

  .form-group-modal {
    margin-bottom: 8px;
  }

  .form-group-modal label {
    font-size: 1.5vw !important;
  }

  .form-group-modal > input, select {
    font-size: 1.5vw !important;
  }

  .form-group-modal > .submit-btn{
    font-size: 1.5vw !important;
    padding: 10px !important;
  }

  .form-group-modal > .cancel-btn {
    font-size: 1.5vw !important;
    padding: 10px !important;
  }

  .form-group-modal > .date-group > input{
    font-size: 1.5vw;
  }

  .form-group-modal > .phone-group > input{
    font-size: 1.5vw;
  }

  footer{
    padding: 30px 20px;
 }

 .copyRight{
    margin-top: 40px;
 }

 .w50{
    margin-top: 120px;
    margin-bottom: 30px;
    width: 80%;
 }

 .main-final > .w50 > div > h1{
    font-size: 3vw;
 }

 .main-final > .w50 > .boxTextoFinal > p {
    font-size: 2.5vw;
 }

 .main-final > .w50 > .btnBoxFinal > .btnFinal {
    font-size: 2vw;
    width: 90%;
    height: 54px;
 }
}

@media screen and (min-width: 1200px) {
  .main > .boxOpcionPlanes {
    flex-wrap: nowrap;
  }

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

  .modal > .contenidoModal > .headerModal > h1{
    font-size: 1.5vw;
    margin-top: 10px;
  }

  .modal > .contenidoModal > .headerModal > img{
    width: 60px;
    height: auto;
  }

  .form-group-modal {
    margin-bottom: 8px;
  }

  .form-group-modal label {
    font-size: 1vw !important;
  }

  .form-group-modal > input, select {
    font-size: 1vw !important;
  }

  .form-group-modal > .submit-btn{
    font-size: 1vw !important;
    padding: 10px !important;
  }

  .form-group-modal > .cancel-btn {
    font-size: 1vw !important;
    padding: 10px !important;
  }

  .form-group-modal > .date-group > input{
    font-size: 1vw;
  }

  .form-group-modal > .phone-group > input{
    font-size: 1vw;
    padding: 10px;
  }

  .form-group-modal > .phone-group > select{
    font-size: 1vw;
    padding: 10px;
  }

  #banco {
    padding: 10px;
    font-size: 1vw;
  }
}
