body {
  margin: 0px;
}
.faq-section {
      background: #0f172a;
      color: #e5e7eb;
      padding: 100px 20px;
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-title {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 400;
      text-align: center;
      margin-bottom: 60px;
      color: #f8fafc;
    }

    .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding: 20px 0;
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      color: #f1f5f9;
      text-align: left;
      font-family: Georgia, serif;
      font-size: 1.1rem;
      cursor: pointer;
      padding: 10px 0;
      transition: opacity 0.3s ease;
    }

    .faq-question:hover {
      opacity: 0.8;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .faq-answer p {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 0.95rem;
      line-height: 1.7;
      color: #cbd5f5;
      padding: 10px 0 0 0;
    }

    /* Estado activo */
    .faq-item.active .faq-answer {
      max-height: 5000px;
      opacity: 1;
    }
    
    
.faq-cta {
  margin-top: 80px;
  text-align: center;
}

.faq-cta p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  color: #cbd5f5;
  margin-bottom: 25px;
  line-height: 1.6;
}

.faq-cta a {
  display: inline-block;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8fafc;
  text-decoration: none;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
}

.faq-cta a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}