* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.conta {
  max-width: 1300px;
  width: 95%;
  margin: auto;
}

/*  */
.no {
  display: none !important;
}

/*  */
svg {
  display: block;
}

/*  */
.page-container {
  max-width: 900px;

  margin: 50px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-container-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-container-content>ul {
  padding-left: 40px;
  margin: 0;
}


/* faq questions - section */

/* --- FAQ Section --- */
.faq-section {
  margin-top: 60px;
  padding: 60px 0;
  background: #f9f9f9;
  border-radius: var(--card-radius);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s;
  color: var(--text-muted);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

.faq-item.active .faq-question {
  color: var(--accent-orange);
}




/* 404 */
.page-error-404 {
  padding: 80px 0;
  text-align: center;
}

.page-error-404-container {
  max-width: 600px;
}

.page-error-404-content-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #333;
}

.page-error-404-content-description {
  font-size: 1.2rem;
}

.page-error-404-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.icon-error-404 {
  width: auto;
  height: 100%;
  display: blocK;
}