/* Accordion amarelo e preto */
.accordion {
    width: 100%;
  }
  
  .accordion-item {
    border: 1px solid #FFD700;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    font-family: var(--ff-poppins);
  }
  
  .accordion-header {
    background-color: #FFD700;
    color: #000;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between; /* isso move a seta pra direita */
    align-items: center;
  }
  
  .accordion-header .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
  }
  
  .accordion-header:hover {
    background-color: #e6c200;
  }
  
  .accordion-content {
    background-color: #222;
    color: #FFD700;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
  }
  
  .accordion-content p {
    margin: 15px 0;
  }
