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

.contato-title {
  color: #A84421;
  font-size: 26px;
  /* Menor para caber melhor em mobile */
  margin-bottom: 10px;
  text-align: center;
}

.contato-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;
}

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

.contato {
  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;
}

.contato:hover {
  box-shadow: 0 6px 16px rgba(255, 112, 67, 0.35);
  background-color: #ffE0B2;
}

.contato 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;
  will-change: transform;
}

.contato h3:hover {
  background-color: #FFCC80;
  transform: scale(1.12);
  /* Crescimento suave no hover */
  transform-origin: center;
  /* Mantém crescimento simétrico */
}

.contato h3 a {
  color: #BF360C;
  text-decoration: none;
}

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

.contato.active p {
  display: block;
}

.contato p a {
  color: #000;
}