/* ── CONTATO.HTML — ESTILOS ESPECÍFICOS ── */

/* ── HERO ── */
.contato-hero { min-height: 52vh; }
.contato-hero .page-hero-bg { opacity: .18; }

/* ── CONTATO SECTION ── */
.contato-section { padding: 100px 0; background: var(--white); }
.contato-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ── FORMULÁRIO ── */
.contato-form-col .section-title { margin-top: 4px; }
.contato-form { margin-top: 40px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.form-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-label span { color: var(--gold); }
.form-input {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(159,124,86,.12);
  background: var(--white);
}
.form-input.erro { border-color: #e05c5c; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239F7C56' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 140px; margin-bottom: 0; }
.form-group:not(.form-row > .form-group) { margin-bottom: 20px; }
.form-error { font-size: 12px; color: #e05c5c; min-height: 16px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 16px; font-size: 13px; }
.form-nota { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }

/* ── INFO CARD ── */
.contato-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.contato-info-titulo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contato-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contato-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(212,179,144,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}
.contato-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contato-info-valor {
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
  transition: color .2s;
}
a.contato-info-valor:hover { color: var(--gold-light); }
.contato-redes { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.contato-social { display: flex; flex-direction: column; gap: 10px; }
.contato-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.contato-social-link:hover { color: var(--gold-light); }
.contato-wa-btn {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
  padding: 16px;
}

/* ── MAPA ── */
.mapa-section { background: var(--off-white); }
.mapa-wrapper { height: 400px; overflow: hidden; }
.mapa-wrapper iframe { display: block; }
.mapa-legenda {
  padding: 16px clamp(20px, 5vw, 64px);
  display: flex;
  justify-content: center;
}
.mapa-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-light);
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.mapa-tag svg { color: var(--gold); }

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  .contato-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .mapa-wrapper { height: 300px; }
}

@media (max-width: 480px) {
  .contato-info-card { padding: 28px 24px; }
}
