/* ===== Contato Page ===== */

.ct-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

/* Hero */
.ct-hero {
  padding: 44px 0 36px;
  max-width: 620px;
}

.ct-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: var(--text);
}

.ct-hero p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* Layout */
.ct-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}

/* Sidebar */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 96px;
}

.ct-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ct-info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(24, 18, 14, 0.08);
}

.ct-info-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.ct-info-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
}

.ct-info-card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
}

.ct-info-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color 0.15s ease;
}

.ct-info-link--whatsapp {
  color: var(--whatsapp);
}

.ct-info-link--whatsapp:hover {
  filter: brightness(0.85);
}

/* Form area */
.ct-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ct-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ct-form-hint {
  font-size: 0.86rem;
  color: var(--muted);
}

.ct-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* Responsive */
@media (max-width: 900px) {
  .ct-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ct-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 640px) {
  .ct-hero {
    padding: 28px 0 24px;
  }

  .ct-hero h1 {
    font-size: 1.65rem;
  }

  .ct-sidebar {
    grid-template-columns: 1fr;
  }

  .ct-form-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .ct-form-hint {
    display: none;
  }
}
