/* ============================================================================
 * GERADO por scripts/sync-css.mjs — NÃO EDITAR À MÃO.
 * Origem: knxsite/src/app/(frontend)/contato/contato.css
 * Para alterar, edite a origem no knxsite (só leitura durante a migração) ou
 * ajuste a transformação em scripts/sync-css.mjs.
 * ============================================================================ */

/* Contato — estilos específicos da página */

/* ---- Delay classes extras ---- */
.hp-d155 { transition-delay: 155ms; }
.hp-d195 { transition-delay: 195ms; }

/* ============================================================
   DOBRA 1 — HERO
   ============================================================ */
.ct-hero {
  background: var(--color-gray-50);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.ct-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ct-hero .lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 52ch;
  margin: 0 0 20px;
}

/* ============================================================
   DOBRA 2 — CANAIS DE CONTATO
   ============================================================ */
.ct-canais {
  padding: 96px 0;
  background: white;
}
.ct-canais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
.ct-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ct-contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 22px;
  transition: box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-spring);
}
.ct-contact-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.ct-contact-card .ct-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-contact-card .ct-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.ct-contact-card .ct-card-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-strong);
  line-height: 1.4;
}
.ct-contact-card .ct-card-sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
  line-height: 1.45;
}

/* Talismã frame */
.ct-talisma-frame {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.ct-talisma-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   DOBRA 3 — FOTO DA CIDADE (PARALLAX)
   ============================================================ */
.ct-cidade {
  position: relative;
  overflow: hidden;
  background-image: url('../../img/contato/11-goiania.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center 55%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-cidade-quote-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 80px 32px;
}
.ct-cidade-quote {
  max-width: 760px;
  text-align: center;
}
.ct-cidade-quote .quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: white;
  text-shadow: 0 2px 16px rgba(0,0,0,0.72), 0 1px 4px rgba(0,0,0,0.55);
  margin: 0 0 20px;
}
.ct-cidade-quote .quote-text em {
  font-style: normal;
  color: white;
}
.ct-cidade-quote .quote-attr {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.ct-cidade-quote .quote-attr strong {
  color: rgba(255,255,255,0.95);
  font-weight: 700;
}

/* ============================================================
   DOBRA 4 — FORMULÁRIO
   ============================================================ */
.ct-form-section {
  padding: 96px 0;
  background: var(--color-gray-50);
}
.ct-form-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.ct-form-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 96px;
}
.ct-form-intro p { margin: 0; }

.ct-hint-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ct-hint-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ============================================================
   DOBRA 5 — INFO ÚTIL
   ============================================================ */
.ct-info {
  padding: 80px 0;
  background: white;
}
.ct-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.ct-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ct-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--fg);
  line-height: 1.6;
}
.ct-info-bullet {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  flex-shrink: 0;
  background: var(--color-orange-50);
  border: 1px solid var(--color-orange-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange-600);
  margin-top: 2px;
}

/* ============================================================
   DOBRA 6 — FECHAMENTO
   ============================================================ */
.ct-fechamento {
  padding: 96px 0;
  background: var(--color-navy-700);
  text-align: center;
}
.ct-fechamento h2 {
  color: white;
  margin-bottom: 20px;
}
.ct-fechamento .btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  color: white;
  text-decoration: none;
}
.ct-fechamento .btn-ghost:active {
  background: rgba(255,255,255,0.16);
  color: white;
}

/* ============================================================
   DOBRA 7 — MAPA
   ============================================================ */
.ct-mapa {
  padding: 0;
  line-height: 0;
}
.ct-mapa iframe {
  width: 100%;
  height: clamp(280px, 55vh, 460px);
  border: none;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .ct-hero-grid   { grid-template-columns: 1fr; gap: 40px; }
  .ct-hero-art    { display: none; }
  .ct-canais-grid { grid-template-columns: 1fr; }
  .ct-form-grid   { grid-template-columns: 1fr; }
  .ct-form-intro  { position: static; }
  .ct-info-grid   { grid-template-columns: 1fr; }
}

/* 768px: valor específico para corrigir bug de background-attachment:fixed no iOS,
   não é um breakpoint de grid — não padronizar para 960/640. */
@media (max-width: 768px) {
  .ct-cidade {
    background-attachment: scroll;
    min-height: 380px;
  }
}
