:root {
  --teal: #01B2A8;
  --yellow: #FCBA4A;
  --orange: #F98D22;
  --dark: #331528;
  --muted: #f4f4f6;
  --radius: 10px;
  --transition: 0.3s;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: var(--dark);
  line-height: 1.5;
}

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

.section { 
  padding: 50px 0; 
}

h1, h2, h3 {
  margin-bottom: 20px;
  color: var(--dark);
}

h1 {
  font-size: 2rem;
  text-align: center;
}

h2 {
  font-size: 1.6rem;
  margin-top: 0;
}

/* ---------- LOGO ---------- */
.logo-img {
  height: 90px;   
  width: auto;    
}

/* ---------- HEADER ---------- */
.site-header { 
  background: var(--teal); 
  color: #fff; 
}

.header-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.main-nav a { 
  color: #fff; 
  margin: 0 12px; 
  text-decoration: none; 
  font-weight: bold; 
  transition: color var(--transition);
}

.contato-section {
  background: #331528;  /* Escolher a cor  #492E16*/
  color: #fff;
  padding: 40px;
  border-radius: var(--radius);
}

.contato-title {
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 10px;
}

.contato-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.faq-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.faq-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contato-form label {
  font-weight: bold;
  margin-top: 10px;
  display: block;
}

.contato-form input,
.contato-form textarea {
  background: #fff;
  color: #000;
}


/* link ativo (página atual) */
.main-nav a.active { 
  color: var(--yellow); 
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
}

.main-nav a:hover { 
  color: var(--yellow); 
}

.auth button { 
  margin-left: 8px; 
  padding: 6px 14px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
}

/* ---------- BOTÕES ---------- */
.btn-primary { 
  background: var(--orange); 
  color: #fff; 
  border: none; 
  padding: 10px 20px; 
  border-radius: var(--radius); 
  cursor: pointer;
  transition: background var(--transition);
}
.btn-primary:hover { 
  background: #e67a10;
}

.btn-secondary { 
  background: var(--yellow); 
  border: none; 
  padding: 8px 16px; 
  border-radius: var(--radius); 
  cursor: pointer;
  transition: background var(--transition);
}
.btn-secondary:hover { 
  background: #f7a81f;
}

/* ---------- CARDS / LISTAS ---------- */
.cards-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 20px; 
  margin-top: 20px; 
}

.card { 
  background: #fefefe; 
  padding: 20px; 
  border-radius: var(--radius); 
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
  transition: transform var(--transition);
}
.card:hover {
  transform: translateY(-3px);
}
.card.small { 
  background: #fff; 
}

/* ---------- PERFIL ---------- */
.perfil-list { 
  list-style: none; 
  padding: 0; 
}
.perfil-list li { 
  margin: 10px 0; 
  padding: 10px; 
  background: var(--muted); 
  border-radius: var(--radius); 
  font-weight: 500;
}

/* ---------- FAQ ---------- */
details { 
  margin-bottom: 12px; 
  background: var(--muted); 
  padding: 10px; 
  border-radius: var(--radius);
}
details summary { 
  cursor: pointer; 
  font-weight: bold; 
}

/* ---------- FORMULÁRIOS ---------- */
input, textarea {
  width: 100%; 
  padding: 10px; 
  margin-top: 6px; 
  margin-bottom: 14px; 
  border: 1px solid #ccc; 
  border-radius: var(--radius);
  font-size: 1rem;
}

.search-bar { 
  width: 100%; 
  padding: 12px; 
  margin-bottom: 20px; 
  border-radius: var(--radius); 
  border: 1px solid #ccc; 
}

/* ---------- FOOTER ---------- */
.site-footer { 
  background: var(--dark); 
  color: #fff; 
  text-align: center; 
  padding: 20px 0; 
  margin-top: 40px; 
}

/* ---------- RESPONSIVIDADE ---------- */
@media (max-width: 768px) {
  .header-inner { 
    flex-direction: column; 
    gap: 12px; 
  }
  .main-nav a { 
    display: inline-block; 
    margin: 6px; 
  }
}
