/* CONTAINER PRINCIPAL */
.faq {
    max-width: 1500px;
    margin: 2rem auto 4rem;
    padding: 0 1rem;
  }
  
  /* TÍTULOS */
  
  
  .faq-intro {
    margin-bottom: 3rem;
    color: #555;
    max-width: 800px;
  }
  
  /* GRID DAS DUAS COLUNAS */
  .faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  /* COLUNAS */
  .faq-column h3, h2, h1 {
    margin-bottom: 1.5rem;
    
    font-size: 1.4rem;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
  }
  
  /* ITEM DO FAQ */
  .faq-item {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  /* SUMMARY (PERGUNTA) */
  .faq-item summary {
    color: #464646;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
    padding-right: 1.5rem;
  }
  .faq-item summary.inf2 {
    color: #f2675b;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 600;
  }
  p span{
    color: #f2675b;
    font-weight: 600;

  }
  /* REMOVE SETA PADRÃO */
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  /* ÍCONE + / - */
  .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.4rem;
    line-height: 1;
    transition: transform 0.3s ease;
  }
  
  .faq-item[open] summary::after {
    content: "–";
  }
  
  /* CONTEÚDO */
  .faq-content {
    margin-top: 1rem;
    color: #444;
    line-height: 1.6;
    font-size: 1rem;
  }
  .faq-cta {
    background-color: white;
    text-align: center;
  
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  
    padding: 4rem 1rem;
  }
  

  
  .btn-whatsapp-FAQ {
    display: inline-block;   /* 🔑 isso resolve */
  margin-top: 1.5rem;      /* espaço entre o texto e o botão */
    margin-top: 2rem;
    padding: 10px;
    background-color: #25d366;
    border-radius: 7px;
    color: white;
    text-decoration: none;
    
   
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  

  
  .btn-whatsapp-FAQ:hover {
    background-color: #20ba5a;
    transform: scale(1.05) translateY(-5px);
  }

  



  
  /* MOBILE */
  @media (max-width: 900px) {
    .faq-list {
      grid-template-columns: 1fr;
    }
  
    .faq-column h3 {
      margin-top: 2rem;
    }
  }
  