  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

  .preguntas-frecuentes {
    padding: 40px 20px;
    background: none;
    max-width: 1000px;
    margin: auto;
    font-family: "Poppins", sans-serif;
  }

  .faq-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #00d2ff;
    position: relative;
  }

  .faq-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #00d2ff;
    margin: 10px auto 0;
  }

  .faqsection-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .faqsection-button {
    background-color: rgba(0, 210, 255, 0.1);
    color: #00d2ff;
    border: 1px solid rgba(0, 210, 255, 0.3);
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .faqsection-button.active {
    background: linear-gradient(135deg, #00d2ff, #0077ff);
    color: white;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.4);
  }

  .faq-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    transition: opacity 0.4s ease;
  }

  .faq-section.hidden {
    display: none;
  }

  .faq-item {
    background: rgba(30, 30, 30, 0.5);
    border-left: 4px solid #00d2ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    color: #dcdcdc;
    transition: background 0.3s ease;
  }

  .faq-item:hover {
    background: rgba(0, 210, 255, 0.08);
  }

  .faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
  }

  .faq-question i {
    margin-right: 10px;
    color: #00d2ff;
    transition: transform 0.3s ease;
  }

  .faq-question.active i {
    transform: rotate(90deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 28px;
    margin-top: 10px;
    font-size: 1rem;
    color: #ccc;
  }

  .faq-answer.show {
    max-height: 500px;
  }

  @media (max-width: 768px) {
    .faq-title {
      font-size: 2rem;
    }

    .faqsection-button {
      font-size: 13px;
      padding: 8px 16px;
    }

    .faq-question {
      font-size: 1rem;
    }
  }