/* ══════════════════════════════════════════════════════════════
   ORIGINEI HUB — Contato page
   ══════════════════════════════════════════════════════════════ */

/* ── §01 Hero ────────────────────────────────────────────────── */
.ct-hero {
  position: relative;
  overflow: hidden;
  padding-block: 120px 90px;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.ct-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ct-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.25) saturate(0.5);
}
.ct-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,5,5,0.80) 50%, transparent 100%),
    radial-gradient(ellipse at 20% 50%, rgba(255,107,0,0.12) 0%, transparent 60%);
}
.ct-hero-inner {
  position: relative;
  z-index: 2;
}
.ct-hero-content {
  max-width: 680px;
}
.ct-hero-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--fw-extrabold);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-block: var(--sp-5) var(--sp-5);
}
.ct-accent {
  font-style: normal;
  color: var(--accent);
}
.ct-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-lg);
  line-height: var(--lh-relaxed);
  max-width: 560px;
  margin-bottom: var(--sp-8);
}
.ct-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.ct-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,107,0,0.25);
  background: rgba(255,107,0,0.08);
  color: rgba(255,255,255,0.75);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
}

/* ── §02 Intent grid ─────────────────────────────────────────── */
.ct-intent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  max-width: 900px;
  margin-inline: auto;
}
.ct-intent-card--wide {
  grid-column: 1 / -1;
}
.ct-intent-card {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-5);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  cursor: pointer;
  text-align: left;
  transition: all var(--t-base) var(--ease);
  color: var(--text);
  width: 100%;
}
.ct-intent-card:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.ct-intent--selected {
  border-color: var(--accent) !important;
  background: var(--accent-light) !important;
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12), var(--shadow-md) !important;
}
.ct-intent-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base);
}
.ct-intent-card:hover .ct-intent-icon,
.ct-intent--selected .ct-intent-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.ct-intent-body {
  flex: 1;
}
.ct-intent-body strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--heading);
  margin-bottom: 3px;
}
.ct-intent-body span {
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: var(--lh-relaxed);
}
.ct-intent-arrow {
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--t-fast), color var(--t-fast);
}
.ct-intent-card:hover .ct-intent-arrow,
.ct-intent--selected .ct-intent-arrow {
  color: var(--accent);
  transform: translateX(3px);
}
@media (max-width: 640px) {
  .ct-intent-grid { grid-template-columns: 1fr; }
  .ct-intent-card--wide { grid-column: auto; }
}

/* ── §03 Form layout ─────────────────────────────────────────── */
.ct-form-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-16);
  align-items: start;
}
@media (max-width: 920px) {
  .ct-form-layout { grid-template-columns: 1fr; gap: var(--sp-12); }
}

/* Selected intent badge */
.ct-selected-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-5);
}
.ct-selected-badge button {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 2px;
  display: flex; align-items: center;
  opacity: 0.7;
}
.ct-selected-badge button:hover { opacity: 1; }

/* Form fields */
.ct-form { display: flex; flex-direction: column; gap: 0; }
.ct-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); margin-bottom: var(--sp-4); }
@media (max-width: 600px) { .ct-field-row { grid-template-columns: 1fr; } }
.ct-field { display: flex; flex-direction: column; margin-bottom: var(--sp-4); }
.ct-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.ct-req { color: var(--accent); }
.ct-input,
.ct-select,
.ct-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  box-sizing: border-box;
}
.ct-input::placeholder, .ct-textarea::placeholder { color: var(--muted); opacity: 0.6; }
.ct-input:focus, .ct-select:focus, .ct-textarea:focus {
  border-color: var(--accent);
  background: var(--accent-light);
}
.ct-input--invalid { border-color: #f87171 !important; }
.ct-input--invalid:focus { background: rgba(248,113,113,0.05) !important; }
.ct-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.ct-textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.ct-error-msg {
  font-size: 12px;
  color: #f87171;
  margin-top: 4px;
  display: none;
}
.ct-input--invalid ~ .ct-error-msg { display: block; }

/* Checkbox */
.ct-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  color: var(--muted);
  line-height: var(--lh-relaxed);
  cursor: pointer;
  margin-bottom: var(--sp-5);
  margin-top: var(--sp-2);
}
.ct-checkbox-label a { color: var(--accent); text-decoration: none; }
.ct-checkbox-label a:hover { text-decoration: underline; }
.ct-checkbox {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

/* Submit button */
.ct-submit-btn { width: 100%; justify-content: center; }
.ct-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ctSpin 0.6s linear infinite;
}
@keyframes ctSpin { to { transform: rotate(360deg); } }

/* Success message */
.ct-success {
  display: flex !important;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  background: rgba(34,197,94,0.07);
  border: 1.5px solid rgba(34,197,94,0.25);
  margin-top: var(--sp-4);
}
.ct-success-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1.5px solid rgba(34,197,94,0.35);
  display: flex; align-items: center; justify-content: center;
  color: #22c55e;
}
.ct-success strong {
  display: block;
  font-size: var(--text-base);
  color: var(--heading);
  margin-bottom: var(--sp-2);
}
.ct-success p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}
.ct-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 9px 18px;
  border-radius: var(--radius-md);
  background: #25D366;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  transition: background var(--t-fast), transform var(--t-fast);
}
.ct-wa-btn:hover { background: #1dba58; transform: translateY(-1px); }

/* ── Sidebar ──────────────────────────────────────────────────── */
.ct-sidebar { display: flex; flex-direction: column; gap: var(--sp-10); }
.ct-sidebar-block {}

/* Channels */
.ct-channels { display: flex; flex-direction: column; gap: var(--sp-3); }
.ct-channel {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  text-decoration: none;
  transition: all var(--t-base) var(--ease);
  color: var(--text);
}
.ct-channel:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.ct-channel-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.ct-channel-icon--wa { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.20); color: #25D366; }
.ct-channel:hover .ct-channel-icon--wa { background: rgba(37,211,102,0.15); }
.ct-channel-text { display: flex; flex-direction: column; gap: 2px; }
.ct-channel-text strong { font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--heading); }
.ct-channel-text span  { font-size: var(--text-xs); color: var(--muted); }
.ct-channel-text em    { font-style: normal; font-size: var(--text-xs); font-weight: var(--fw-semibold); color: var(--accent); margin-top: 4px; }

/* Steps list */
.ct-steps-list { list-style: none; padding: 0; margin: 0; }
.ct-step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--border-subtle, rgba(0,0,0,0.06));
  position: relative;
}
.ct-step-item:last-child { border-bottom: none; }
.ct-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-light);
  border: 1.5px solid var(--accent-mid);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.ct-step-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--heading);
  margin-bottom: 2px;
}
.ct-step-text span { font-size: var(--text-xs); color: var(--muted); line-height: var(--lh-relaxed); }

/* ── §04 Trust grid ──────────────────────────────────────────── */
.ct-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 900px) { .ct-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ct-trust-grid { grid-template-columns: 1fr; } }

.ct-trust-card {
  padding: var(--sp-8);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  text-align: center;
  transition: border-color var(--t-base), background var(--t-base);
}
.ct-trust-card:hover {
  border-color: rgba(255,107,0,0.25);
  background: rgba(255,107,0,0.05);
}
.ct-trust-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(255,107,0,0.10);
  border: 1px solid rgba(255,107,0,0.18);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
}
.ct-trust-card strong {
  display: block;
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: #fff;
  margin-bottom: var(--sp-3);
}
.ct-trust-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: var(--lh-relaxed);
  margin: 0;
}

/* ── §05 CTA ─────────────────────────────────────────────────── */
.ct-cta {
  position: relative;
  overflow: hidden;
}
.ct-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ct-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.6);
}

/* ── shimmer-border on channels ──────────────────────────────── */
.ct-channel.shimmer-border {
  background: var(--surface);
}
