.contenedorCabecera{
  display: flex;
  text-align: center;
  margin-bottom: 0; 
  margin-top: 50px;
}

.columnaCabecera {
  flex: 1;
}

.columnaCabecera h2 {
  font-family: "DM Sans", serif;
  font-optical-sizing: auto;
  font-size: clamp(24px, 4vw, 38px); 
  color: #000000;
  font-weight: 700; 
  margin-bottom: 0px;
  word-wrap: break-word; 
  margin-top: 0;
}

.lineaVerdeCabecera {
  width: 150px; 
  height: 2px; 
  background-color: #00761a; 
  margin: 10px auto 0;
  margin-bottom: 50px;
}

/* ESTILOS PARA PREGUNTAS FRECUENTES */

/* TITULOS */

.contenedorTituloFaqs {
  display: flex;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.columnaTituloFaqs {
  flex: 1;
}

.columnaTituloFaqs h1{

  font-family: "Inter", serif;
  font-size: 20px;
  font-weight: 750;
  font-style: normal;
  color: #3e3e3e;
  
}

.iconoFaqs {
  width: 40px;
  height: 40px;
}

/* SECCION DE PREGUNTAS */

.contenedorFaqs {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-left: 30px;
  gap: 35px
}

.columnaFaqs {
  flex: 1;  
}

.lineaVerdeFaqs {
  width: 80%;
  max-width: 250px; /* Ancho de la línea */
  height: 1px; /* Grosor de la línea */
  background-color: #00761a; /* Color verde */
}

.columnaFaqs h1 {

  font-family: "Inter", serif;
  font-size: 18px;
  font-weight: 650;
  font-style: normal;
  color: #040404;

}

.columnaFaqs p {

  font-family: "DM Sans", serif;
  font-size: 15px;
  font-weight: 220;
  font-style: normal;

}

.ultimoElementoFaqs {
  margin-bottom: 60px;
}




