main {
  margin-left: 0;
  /* Remove margem lateral para telas pequenas */
  padding: 20px;
  width: 100%;
  flex: 1;
}

.faq-title {
  color: #A84421;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: center;
}

.faq-subtitle {
  font-size: 16px;
  color: #9F5C32;
  margin-bottom: 20px;
  text-align: center;
}

.container {
  background-color: #FDE6C6;
  padding: 20px;
  border-radius: 10px;
  max-width: 100%;
  margin: auto;
  box-shadow: 0 2px 6px rgba(255, 112, 67, 0.25);
  box-sizing: border-box;
  position: relative;
}

.faq-section {
  margin-top: 20px;
}

.faq {
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #F77F00;
  background-color: #FFF3E0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.faq h3:hover {
  background-color: #FFCC80;
  font-size: 19px;

}

.faq h3 {
  padding: 10px 14px;
  margin: 0;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  color: #BF360C;
  font-weight: bold;
  transition: font-size 0.3s ease;
}

.faq h3:hover {
  background-color: #FFCC80;
  font-size: 19px;
}

.faq p {
  display: none;
  padding: 10px 14px;
  margin: 0;
  background-color: #FFF8E1;
  color: #333;
  border-top: 1px solid #F77F00;
  font-size: 16px;
}

.faq.active p {
  display: block;
}

.faq p a {
  color: #BF360C;
  text-decoration: none;
}