.elementor-6361 .elementor-element.elementor-element-9ac9d83{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-67ff870 *//* Estilos generales */
.preguntas-frecuentes {
  background-color: #aa8add; /* Fondo en color #4ffffe */
  padding: 60px 0;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.contenedor-preguntas {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.titulo {
  text-align: center;
  font-size: 48px;
  color: #ffffff;  /* Títulos con el color #aa8add */
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 3px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.faqs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-item {
  background-color: #4ffffe; /* Fondo translúcido */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.3); /* Cambio al pasar el cursor */
}

.pregunta {
  color: #aa8add;  /* Títulos de preguntas con color #aa8add */
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.respuesta {
  color: #333;
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 15px;
}

.respuesta:before {
  content: "👉 ";
  font-size: 22px;
  color: #aa8add; /* Color de la flecha en la respuesta */
}

@media (max-width: 768px) {
  .faq-item {
    padding: 20px;
  }

  .titulo {
    font-size: 36px;
  }

  .pregunta {
    font-size: 20px;
  }

  .respuesta {
    font-size: 16px;
  }
}/* End custom CSS */