    body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #8B008B; /* ROSA PINK SÓLIDO */
  color: #fff;
  line-height: 1.6;
}

  
    .detalhes-da-lista {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px 15px;
      background: transparent;
      position: relative;
    }
  
    .perfect-list-box.alt-style.products-section {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: 20px;
      padding: 20px;
      max-width: 600px;
      width: 100%;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }
  
    .perfect-list-box h3 {
      color: #ffffff;
      font-size: 1.3rem;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-align: center;
    }
  
    .perfect-list-box h3 i {
      font-size: 1.1rem;
      color: #ffffff;
    }
  
    .products-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
  
    .product-card {
      background: #fff;
      border-radius: 16px;
      padding: 10px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      height: auto;
    }
  
    .product-card img {
      width: 100%;
      height: auto;
      max-height: 100px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 6px;
    }
  
    .perfect-list-box .product-card h4 {
      font-size: 0.85rem;
      margin-bottom: 4px;
      color: #333;
    }
  
    .old-price {
      color: #888;
      text-decoration: line-through;
      font-size: 0.7rem;
      margin: 2px 0;
    }
  
    .new-price {
      color: #28a745;
      font-weight: bold;
      font-size: 0.95rem;
      margin: 0;
    }
  
    .price-note {
      color: #ff3399;
      font-size: 0.8rem;
      margin-top: 2px;
    }
  
    @media (min-width: 600px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    .faq-section {
  padding: 30px 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  background: none;
  border: none;
  color: white;
  text-align: left;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question:hover {
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 12px;
  color: #cccccc; /* cor mais clara e visível */
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04); /* leve fundo translúcido pra destacar */
  border-radius: 8px;
  margin-top: 5px;
}


.faq-answer.open {
  max-height: 500px;
  padding: 10px 12px 20px;
}