/* ═══════════════════════════════════════════════════════
   Contactos — Page Styles
   Premium · Conversão · Limpo · Humano
   ═══════════════════════════════════════════════════════ */

/* ── Hero ── */
.ct-hero {
  padding: var(--page-top) 0 clamp(3rem,6vw,4rem);
  background: var(--cream);
}
.ct-hero h1 {
  max-width: 700px;
  margin-bottom: 1.4rem;
}
.ct-hero h1 em { color: var(--gold); }
.ct-hero-sub {
  max-width: 600px;
  font-size: clamp(1.02rem,1.5vw,1.12rem);
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 2rem;
}
.ct-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Motivos de contacto ── */
.ct-motivos {
  padding: clamp(3rem,6vw,4rem) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.ct-motivos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .6rem;
}
.ct-motivo {
  display: block;
  padding: 1.2rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all .25s;
}
.ct-motivo:hover,
.ct-motivo.is-active {
  border-color: var(--gold);
  background: var(--gold-bg);
}
.ct-motivo-icon {
  display: block;
  font-size: 1.3rem;
  margin-bottom: .4rem;
}
.ct-motivo strong {
  display: block;
  font: 600 .78rem var(--sans);
  color: var(--ink);
  margin-bottom: .2rem;
}
.ct-motivo span {
  font-size: .68rem;
  color: var(--quiet);
  line-height: 1.3;
}

/* ── Main section (form + info) ── */
.ct-main {
  padding: clamp(4rem,8vw,6rem) 0;
  background: var(--white);
}
.ct-main-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2.5rem,5vw,4rem);
  align-items: start;
}

/* ── Form ── */
.ct-form-card {
  padding: clamp(1.8rem,4vw,2.5rem);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.ct-form-card h2 {
  font-size: clamp(1.3rem,2.5vw,1.6rem);
  margin-bottom: .3rem;
}
.ct-form-card h2 em { color: var(--gold); }
.ct-form-subtitle {
  font-size: .85rem;
  color: var(--quiet);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.ct-form-card label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  margin: 1rem 0 .35rem;
}
.ct-form-card label:first-of-type { margin-top: 0; }
.ct-form-card input,
.ct-form-card select,
.ct-form-card textarea {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: 500 .9rem var(--sans);
  outline: none;
  transition: border-color .3s;
}
.ct-form-card input:focus,
.ct-form-card select:focus,
.ct-form-card textarea:focus {
  border-color: var(--gold);
}
.ct-form-card textarea {
  min-height: 100px;
  resize: vertical;
}
.ct-consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}
.ct-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--gold);
}
.ct-consent a { color: var(--gold); text-decoration: underline; }
.ct-form-submit {
  width: 100%;
  margin-top: 1.2rem;
}
.ct-form-error,
.ct-form-success {
  display: none;
  margin-top: .8rem;
  padding: .7rem 1rem;
  border-radius: .5rem;
  font-size: .8rem;
  font-weight: 500;
}
.ct-form-error {
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.2);
  color: #EF4444;
}
.ct-form-success {
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.2);
  color: #166534;
}
/* Honeypot */
.ct-hp { position: absolute; left: -9999px; }

/* ── Info sidebar ── */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ct-info-block h3 {
  font: 700 .95rem/1.2 var(--sans);
  color: var(--ink);
  margin-bottom: .6rem;
  letter-spacing: 0;
}
.ct-info-line {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 0;
  font-size: .9rem;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .2s;
}
a.ct-info-line:hover { color: var(--gold); }
.ct-info-line svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
}
.ct-info-address {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}
.ct-socials {
  display: flex;
  gap: .6rem;
  margin-top: .3rem;
}
.ct-social {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  transition: all .25s;
}
.ct-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.ct-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ── Depois do contacto ── */
.ct-depois {
  padding: clamp(4rem,8vw,5rem) 0;
  background: var(--cream);
}
.ct-depois h2 { margin-bottom: 2rem; }
.ct-depois h2 em { color: var(--gold); }
.ct-depois-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.ct-depois-step {
  text-align: center;
  padding: 1.8rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.ct-depois-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font: 700 1rem var(--serif);
  margin-bottom: .8rem;
}
.ct-depois-step h3 {
  font: 700 .95rem/1.2 var(--sans);
  margin-bottom: .3rem;
  letter-spacing: 0;
}
.ct-depois-step p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── FAQ ── */
.ct-faq {
  padding: clamp(4rem,8vw,6rem) 0;
  background: var(--white);
}
.ct-faq h2 { margin-bottom: 2rem; }
.ct-faq-list {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  max-width: 800px;
}
.ct-faq-item {
  background: var(--cream);
  border-radius: var(--r);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .3s;
}
.ct-faq-item[open] { border-color: var(--gold-soft); }
.ct-faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font: 600 .9rem var(--sans);
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ct-faq-item summary::-webkit-details-marker { display: none; }
.ct-faq-item summary::after {
  content: '';
  width: 9px; height: 9px;
  border-right: 2px solid var(--quiet);
  border-bottom: 2px solid var(--quiet);
  transform: rotate(45deg);
  transition: transform .3s;
  flex-shrink: 0;
}
.ct-faq-item[open] summary::after { transform: rotate(-135deg); }
.ct-faq-answer {
  padding: 0 1.4rem 1.1rem;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
}
.ct-faq-answer p { margin: 0; }

/* ── CTA final ── */
.ct-cta-final {
  padding: clamp(4rem,8vw,6rem) 0;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}
.ct-cta-final h2 {
  color: var(--white);
  margin-bottom: .6rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ct-cta-final h2 em { color: var(--gold-soft); }
.ct-cta-sub {
  font: italic 400 1rem/1.6 var(--serif);
  color: rgba(255,255,255,.5);
  margin-bottom: 2rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ct-motivos-grid { grid-template-columns: repeat(3, 1fr); }
  .ct-main-grid { grid-template-columns: 1fr; }
  .ct-depois-steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ct-motivos-grid { grid-template-columns: 1fr 1fr; }
  .ct-hero-actions { flex-direction: column; }
}
