/* ============================================================
   CONTATO — Contact page styles
   ============================================================ */

/* ── Page Header ── */
.page-header {
  position: relative;
  height: 420px;
}

.page-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.page-header-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,23,38,1) 0%, rgba(10,23,38,.7) 60%, rgba(10,23,38,.35) 100%);
}

.page-header-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 60px;
}

.page-header-title {
  font-size: 76px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.page-header-sub {
  margin-top: 16px;
  font-size: 19px;
  font-weight: 300;
  color: var(--blue-muted);
  max-width: 480px;
}

/* ── Contact section ── */
.contact-section {
  background: var(--navy);
  padding: 100px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── Channels ── */
.channel-list {
  display: flex;
  flex-direction: column;
}

.channel {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: inherit;
}

.channel:last-child { border-bottom: none; }

.channel-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(196,163,94,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.channel-value {
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
}

.channel-value.sm {
  font-size: 22px;
  line-height: 1.25;
}

.channel-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--blue-muted);
  margin-top: 8px;
}

.channel-sub.link { color: var(--gold); }

/* ── Form ── */
.form-section {
  display: flex;
  flex-direction: column;
}

form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input,
.field textarea,
.field select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--cream);
  padding: 16px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color .25s;
  width: 100%;
  border-radius: 0;
}

.field input:focus,
.field textarea:focus { border-color: var(--gold); }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field select {
  -webkit-appearance: none;
  cursor: pointer;
}

.field select option {
  background: var(--navy-mid);
  color: var(--cream);
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  background: var(--gold);
  color: var(--navy);
  padding: 18px 44px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: background .25s;
  width: 100%;
}

.submit-btn:hover { background: var(--gold-light); }

.form-note {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}

.form-note a { color: var(--gold); }

/* ── Map section ── */
.map-section {
  background: var(--navy-mid);
  padding: 100px 80px;
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.map-title {
  font-size: 52px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.04;
  margin-bottom: 24px;
}

.map-body {
  font-size: 17px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--blue-soft);
  max-width: 420px;
  margin-bottom: 36px;
}

.map-addr {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}

.map-vline {
  width: 1px;
  background: var(--gold);
  height: 44px;
  flex-shrink: 0;
  margin-top: 4px;
}

.map-addr-label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.map-addr-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.6;
}

.map-placeholder {
  position: relative;
  height: 440px;
  border: 1px solid rgba(196,163,94,.18);
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
}

.map-pin-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin { text-align: center; }

.pin-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 12px;
  box-shadow: 0 0 0 6px rgba(196,163,94,.2), 0 0 0 12px rgba(196,163,94,.1);
}

.pin-label {
  background: rgba(10,23,38,.88);
  padding: 12px 20px;
  border: 1px solid rgba(196,163,94,.3);
}

.pin-label-tag {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.pin-label-loc {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
}

@media (max-width: 900px) {
  .page-header { height: 260px; }
  .page-header-title { font-size: 38px; }
  .page-header-content { padding: 0 28px 40px; }
  .contact-section { padding: 60px 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .channel-value { font-size: 22px; }
  .channel-value.sm { font-size: 18px; }
  .two-cols { grid-template-columns: 1fr; }
  .map-section { padding: 60px 28px; }
  .map-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-title { font-size: 32px; }
  .map-placeholder { height: 280px; }
}
@media (max-width: 600px) {
  .page-header { height: 220px; }
  .page-header-title { font-size: 30px; }
  .map-title { font-size: 26px; }
}
