:root {
  --bg: #f8fafc;
  --primary: #6b46c1;
  --text: #1e293b;
  --text-light: #475569;
  --border: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  line-height: 1.6;
  padding: 20px 0;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  text-align: center;
  padding: 60px 0 40px;
}

.icon {
  font-size: 64px;
  color: var(--primary);
  margin-bottom: 20px;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
}

.intro {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  margin-bottom: 40px;
}

.policy-list {
  margin-top: 40px;
}

.policy-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.policy-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  transition: background 0.3s;
  color: var(--text);
}

.policy-question:hover {
  background: #f1f5f9;
}

.policy-question.active {
  background: #f1f5f9;
}

.policy-question i {
  color: var(--primary);
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.policy-question.active i.fa-chevron-down {
  transform: rotate(180deg);
}

.contact .policy-question {
  cursor: default;
}

.contact .policy-question:hover {
  background: transparent;
}

.contact .policy-question i {
  transform: none !important;
}

.policy-answer {
  padding: 0 24px 24px;
  color: var(--text-light);
  font-size: 1.05rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.policy-answer.active {
  padding-top: 12px;
  max-height: 1000px; /* Ajustado para conteúdo maior */
}

.policy-answer p {
  margin-bottom: 15px;
}

.subsection {
  margin-top: 20px;
}

.subsection h3 {
  color: var(--text);
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: 600;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

ul li {
  margin-bottom: 8px;
}

.policy-answer a {
  color: var(--primary);
  text-decoration: none;
}

.policy-answer a:hover {
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 80px 0 40px;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Responsivo */
@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  .policy-question { 
    font-size: 1.05rem; 
    padding: 20px; 
  }
  .intro {
    padding: 20px;
  }
}

.contact .policy-question {
    cursor: default;
    background: #f1f5f9; /* mesmo fundo das seções abertas */
}

.contact .policy-question:hover {
    background: #f1f5f9; /* impede o hover */
}

.contact .policy-question i {
    transform: none !important;
    color: var(--primary);
}

/* Garante que fique sempre visível */
.contact .policy-answer {
    padding-top: 12px;
    max-height: none;
}