.faq-section {
  padding: 64px 32px;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

.faq-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12); /* Sombra negra */
  max-width: 800px;
  margin: 0 auto 24px;
  padding: 16px 24px;
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2); /* Más intensa cuando está abierta */
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #e5233e;
  cursor: pointer;
  padding: 8px 0;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  transition: transform 0.3s ease;
  color: #111;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 12px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}



.section-divider-faqs {
  position: relative;
  text-align: center;
  border-top: 1px solid #eaeaea;
  margin: 10px 0 40px;
  font-family: 'Poppins', sans-serif;
}

.section-title-faqs {
  display: inline-block;
  background-color: #e5233e;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  padding: 12px 128px;
  border-radius: 0 0 20px 20px;
  position: relative;
  top: -17px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 48px 16px;
  }

  .faq-item {
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .section-title-faqs {
    font-size: 18px;
    padding: 10px 64px;
    border-radius: 0 0 16px 16px;
  }
}

