@font-face {
  font-family: "Roc Grotesk Regular";
  src: url("../fonts/Kostic-RocGroteskRegular.otf");
  font-weight: 400;
}

@font-face {
  font-family: "Roc Grotesk Medium";
  src: url("../fonts/Kostic-RocGroteskMedium.otf");
  font-weight: 500;
}

@font-face {
  font-family: "Roc Grotesk Bold";
  src: url("../fonts/Kostic-RocGroteskBold.otf");
  font-weight: 700;
}

@font-face {
  font-family: "Roc Grotesk Wide";
  src: url("../fonts/Kostic-RocGroteskWide.otf");
  font-weight: 400;
}

@font-face {
  font-family: "Roc Grotesk Light";
  src: url("../fonts/Kostic-RocGroteskLight.otf");
  font-weight: 700;
}

@font-face {
  font-family: "Roc Grotesk Wide Medium";
  src: url("../fonts/Kostic-RocGroteskWideMedium.otf");
  font-weight: 500;
}

@font-face {
  font-family: "Roc Grotesk wide extra bold";
  src: url("../fonts/Kostic-RocGroteskWideExtraBold.otf");
  font-weight: 700;
}

@font-face {
  font-family: "Roc Grotesk Wide Bold";
  src: url("../fonts/Kostic-RocGroteskWideBold.otf");
  font-weight: 700;
}


/* Botón destacado landing */
.btn-landing {
  display: block;
  margin: 15px auto;
  background: #d2d700ff;
  color: #2d55a1;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  padding: 16px 40px;
  font-size: 0.8em;
  text-align: center;
  box-shadow: 0 2px 8px rgba(60,106,192,0.08);
  cursor: pointer;
  transition: background 0.2s;
}
.btn-landing:hover {
  background: #fff200;
}
/* Difuminado laterales para la imagen de cabecera */
.header-blur-container {
  position: relative;
  margin: 0 auto 30px auto;
  display: block;
}
.header-blur-container img {
  width: 100%;
  display: block;
}
.header-blur-container::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* Beneficios estilo landing */
.benefits-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 32px 0 32px 0;
}
.benefit-box {  
  padding: 15px;
  background: #e6ecf6;
  border-radius: 18px;
  width:200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(60,106,192,0.08);
}
.benefit-icon {
  height: 80px;
  margin-bottom: 18px;
}
.benefit-text {
  color: #2253a1;
  font-family: "Roc Grotesk Wide Bold", Arial, sans-serif;
  font-size: 1.00em;
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .benefits-row {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .benefit-box {
    width: 90vw;
    max-width: 300px;
    height: 120px;
  }
  .benefit-icon {
    height: 40px;
    margin-bottom: 10px;
  }
}

body {
  margin: 0;
  padding: 0;
}

p {
  font-family: "Roc Grotesk Wide";
  letter-spacing: 2px;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6;
  font-size: 18px;
  text-align: center;
  margin: 0;
  padding: 18px 0;
}
/* Títulos destacados */
.tittle {
  font-size: 1.5em;
  padding-top: 25px;
  display: block;
}
  @media (max-width: 700px) {
    h1, h2, h3, .faq p strong, .benefit-text, .container > .cont > p strong {
      font-size: 0.9em;
      margin-top: 18px;
      padding-left: 8px;
      padding-right: 8px;
    }
  }

.container {
  margin: 0 auto;
  padding: 0;
}
.cont{
  max-width: 1000px;
  margin: 0 auto;
  background: transparent;
  
}
.faq p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;  /* 🔹 Asegura alineación a la izquierda */
}
.footer-blur-container {
  position: relative;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-blur-container img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 0;
  }
  @media (max-width: 700px) {
    .footer-blur-container img {
      max-width: 250px;
    }
}
.footer-blur-container::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
hr {
  border: none;
  border-top: 1px solid #2d55a1ff;
}
.faq {
  padding: 0 0 40px 0;
}