/* ================= FAQ ================= */

.faq {
    background: #f7f8fa;
    padding: 120px 20px;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  
  .faq-tag {
    display: inline-block;
    background: rgba(201,164,0,0.15);
    color: #b59400;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  .faq h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #111;
  }
  
  .faq-sub {
    font-size: 17px;
    color: #555;
    margin-bottom: 48px;
  }
  
  /* ================= LISTA ================= */
  
  .faq-list {
    text-align: left;
  }
  
  /* CARD */
  .faq details {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 14px;
    padding: 18px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all .3s ease;
    cursor: pointer;
  }
  
  .faq details:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  }
  
  /* TÍTULO */
  .faq summary {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    list-style: none;
    position: relative;
    padding-right: 30px;
  }
  
  /* REMOVE SETA PADRÃO */
  .faq summary::-webkit-details-marker {
    display: none;
  }
  
  /* SETA CUSTOM */
  .faq summary::after {
    content: "➕";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    color: #c9a400;
    transition: transform .3s ease;
  }
  
  .faq details[open] summary::after {
    content: "➖";
  }
  
  /* RESPOSTA */
  .faq details p {
    margin-top: 14px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .faq h2 {
      font-size: 28px;
    }
  
    .faq-sub {
      font-size: 16px;
    }
  }
  /* ================= SUPORTE FAQ ================= */

.faq-suporte {
    margin-top: 60px;
    text-align: center;
  }
  
  .faq-suporte p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
  }
  
  /* BOTÃO */
  .btn-suporte {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    position: relative;
  }
  
  /* ÍCONE */
  .btn-suporte .icon {
    font-size: 22px;
  }
  
  /* HOVER */
  .btn-suporte:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 28px 55px rgba(37, 211, 102, 0.45);
  }
  
  /* PULSE SUAVE */
  .btn-suporte::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    animation: pulseWhats 2.8s infinite;
  }
  
  @keyframes pulseWhats {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .btn-suporte {
      width: 100%;
      justify-content: center;
      font-size: 16px;
    }
  }
  