body {
  margin: 0;
  height: 100vh;
  background: #012b3a; /* Fondo plano, mismo color principal */
  font-family: "Poppins", sans-serif;
}

/* Elimina las capas y animaciones */
body::before,
body::after {
  display: none !important;
}

/* General */



.container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
  margin-bottom: 7rem;
  font-family: "Poppins", sans-serif;
}

.section {
  background: rgba(0, 0, 0, 0.1); /* negro con 80% opacidad */
  padding: 2rem;
  margin-bottom: 5rem;
  border-radius: 12px;
  box-shadow: 0 20px 50px #000000;
  border: 1px solid #000;
  transform: translateY(30px);
  transition: all 0.7s ease;
  margin-top: 5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(200, 200, 200, 0.3);
  border-color: white;

}


.section h2 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #fff;
}

.section p {
  line-height: 1.6;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px); /* efecto vidrio */
  color: #fff;
  font-size: 1.2rem;
}

/* Lista de features */
.features {
  list-style: none;
  padding: 0;
}

.features li {
  background: #eee;
  margin: 0.5rem 0;
  padding: 0.8rem 1rem;
  border-radius: 8px;
}

/* FAQ */
.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #fff;
  color: #000;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.faq-answer {
  display: none;
  padding: 1rem;
  background: #eee;
  border-radius: 0 0 8px 8px;
  margin-top: -8px;
}


