body {
  padding-top: 75px; /* Para não ficar atrás do header fixo */
}
/* ===== CONTATO ===== */
.contato-container {
  background: rgba(17,56,35,0.92);
  max-width: 420px;
  margin: 60px auto 40px auto;
  padding: 40px 32px 24px 32px;
  border-radius: 22px;
  box-shadow: 0 8px 48px #0007, 0 3px 14px #ffe06633;
  border: 2.5px solid #ffe06644;
  text-align: center;
  color: #e7c063;
}

.contato-container h1 {
  color: #e7c063;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.contato-container .contato-texto {
  font-size: 1.08rem;
  color: #fff9;
  margin-bottom: 24px;
}
.contato-form input, .contato-form textarea {
  width: 100%;
  padding: 14px 15px;
  margin: 0 0 15px 0;
  border: 1.8px solid #16744d;
  border-radius: 10px;
  background: #fffbe9;
  color: #2e5335;
  font-size: 1.07rem;
  transition: border .2s, box-shadow .18s;
  outline: none;
  box-shadow: 0 1.5px 6px #ffe06610;
}
.contato-form input:focus, .contato-form textarea:focus {
  border-color: #ffe066;
  background: #fffbe1;
  box-shadow: 0 0 0 2px #ffe06644;
}
.contato-form textarea {
  min-height: 88px;
  resize: vertical;
}
.contato-form button[type="submit"] {
  background: linear-gradient(90deg, #e7c063 0%, #f3e1b8 40%, #e5b246 100%);
  color: #214221;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 2px 12px #ffe06655;
  width: 100%;
  margin-top: 4px;
  padding: 16px 0;
  transition: background 0.2s, color 0.18s, box-shadow 0.18s;
}
.contato-form button[type="submit"]:hover {
  background: linear-gradient(90deg, #e7c063 0%, #f3e1b8 40%, #e5b246 100%);
  box-shadow: 0 6px 24px #ffe06688;
}
.contato-info {
  margin-top: 20px;
  color: #e7c063;
  font-size: 1.04rem;
  line-height: 1.7;
}
.contato-info a {
  color: #e7c063;
  text-decoration: underline;
  transition: color .19s;
}
.contato-info a:hover {
  color: #e7c063;
  text-decoration: none;
}
.contato-info span {
  font-weight: 600;
}
/* ===== MODAL DE SUCESSO ===== */
.contato-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.85);
  justify-content: center; align-items: center;
}
.modal-content {
  background: #123d2a;
  color: #ffe066;
  border-radius: 20px;
  padding: 38px 32px 32px 32px;
  max-width: 380px;
  margin: 0 auto;
  box-shadow: 0 12px 48px #000c, 0 2px 8px #ffe06644;
  text-align: center;
  animation: fadeInScale .35s cubic-bezier(.55,.1,.58,.9);
  position: relative;
}
.close-modal {
  position: absolute;
  right: 26px; top: 20px;
  font-size: 2.2rem;
  color: #e7c063;
  font-weight: bold;
  cursor: pointer;
  transition: color .18s;
}
.close-modal:hover {
  color: #fff;
}
.modal-content button {
  margin-top: 22px;
  padding: 12px 0;
  width: 100%;
  background: #ffe066;
  color: #14321d;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.11rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #ffe06644;
  transition: background 0.18s, color 0.18s;
}
.modal-content button:hover {
  background: #fffbe1;
  color: #a77b11;
}
@keyframes fadeInScale {
  from { transform: scale(.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@media (max-width: 600px) {
  .contato-container { padding: 22px 4vw 18px 4vw;}
  .modal-content { padding: 32px 10px 24px 10px; }
}
