/* SECCIÓN FAQ */
    .faq-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .faq-header h2 {
      font-size: 2.5rem;
      color: var(--brand);
      margin-bottom: 15px;
      font-weight: 700;
    }

    .faq-header p {
      font-size: 1.1rem;
      color: var(--text-gray);
      max-width: 800px;
      margin: 0 auto;
    }

    /* ACORDEÓN */
    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid #e5e7eb;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .faq-item:hover {
      box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }

    .faq-question {
      width: 100%;
      padding: 20px 24px;
      background: var(--white);
      border: none;
      text-align: left;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--brand);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      transition: var(--transition);
    }

    .faq-question:hover {
      background: var(--bg-light);
    }

    .faq-question.active {
      background: var(--bg-light);
      color: var(--dodger-blue);
    }

    .faq-icon {
      min-width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--dodger-blue);
      transition: transform var(--transition);
    }

    .faq-question.active .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-answer.active {
      max-height: 2000px;
      padding: 0 24px 24px 24px;
    }

    .faq-answer-content {
      color: var(--text-gray);
      font-size: 1rem;
      line-height: 1.7;
    }

    .faq-answer-content ul {
      margin: 12px 0;
      padding-left: 24px;
    }

    .faq-answer-content li {
      margin-bottom: 8px;
    }

    .faq-answer-content strong {
      color: var(--text-dark);
    }

    /* CTA FINAL */
    .faq-cta {
      margin-top: 50px;
      padding: 30px;
      background: linear-gradient(135deg, var(--brand) 0%, #0a1452 100%);
      border-radius: var(--radius);
      text-align: center;
      color: var(--white);
    }

    .faq-cta h3 {
      font-size: 1.8rem;
      margin-bottom: 15px;
    }

    .faq-cta p {
      font-size: 1.1rem;
      margin-bottom: 25px;
      opacity: 0.95;
    }

    .faq-cta-btn {
      display: inline-block;
      padding: 14px 32px;
      background: var(--dodger-blue);
      color: var(--white);
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition);
    }

    .faq-cta-btn:hover {
      background: #0b85e0;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(13, 151, 255, 0.4);
      color: var(--white);
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .faq-section {
        padding: 40px 16px;
      }

      .faq-header h2 {
        font-size: 2rem;
      }

      .faq-header p {
        font-size: 1rem;
      }

      .faq-question {
        padding: 16px 18px;
        font-size: 1rem;
      }

      .faq-icon {
        min-width: 24px;
        height: 24px;
        font-size: 1.3rem;
      }

      .faq-answer.active {
        padding: 0 18px 20px 18px;
      }

      .faq-answer-content {
        font-size: 0.95rem;
      }

      .faq-cta {
        padding: 24px 20px;
      }

      .faq-cta h3 {
        font-size: 1.5rem;
      }

      .faq-cta p {
        font-size: 1rem;
      }
    }

    @media (max-width: 480px) {
      .faq-header h2 {
        font-size: 1.75rem;
      }

      .faq-question {
        font-size: 0.95rem;
      }

      .faq-answer-content {
        font-size: 0.9rem;
      }
    }