/* ============================================
   SECTIONS
   ============================================ */

/* ----- HERO ----- */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.status {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in oklab, var(--bg) 50%, white);
}
.status .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: oklch(0.62 0.18 145);
  position: relative;
}
.status .pulse::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1px solid oklch(0.62 0.18 145);
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

.hero h1 {
  font-size: clamp(52px, 7.4vw, 116px);
  line-height: 1.0;
  letter-spacing: -0.022em;
  max-width: 16ch;
}
.hero h1 .stroke {
  position: relative; display: inline-block;
}
.hero h1 .underline {
  display: inline-block; position: relative;
}
.hero h1 .underline::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.08em;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  animation: scaleIn 1.4s var(--ease-out) 0.6s forwards;
}
@keyframes scaleIn { to { transform: scaleX(1); } }

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  margin-top: 80px;
  align-items: end;
}
.hero-lede { max-width: 44ch; font-size: clamp(18px, 1.7vw, 22px); color: var(--ink-2); line-height: 1.45; }
.hero-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.hero-aside {
  border-left: 1px solid var(--line);
  padding-left: 36px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.9;
}
.hero-aside .row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px dashed var(--line); }
.hero-aside .row:last-child { border-bottom: 0; }
.hero-aside .row b { color: var(--ink); font-weight: 500; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-aside { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 28px; }
}

/* Floating marks in hero */
.hero-marks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-marks .mark {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}
.hero-marks .mark::before {
  content: "↳ ";
  color: var(--accent);
}
.hero-marks .m1 { top: 18%; right: 6%; animation-delay: 1.4s; }
.hero-marks .m2 { top: 32%; right: 6%; animation-delay: 1.7s; }
@media (max-width: 900px) { .hero-marks { display: none; } }
@keyframes fadeIn { to { opacity: 1; } }

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: scroll 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 64px;
}
.marquee-item::after {
  content: "✦";
  color: var(--accent);
  font-size: 0.5em;
  font-style: normal;
}

/* ----- DECISION FLOW (Como o cliente decide) ----- */
.decision {
  padding: 140px 0;
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-head .meta { padding-bottom: 8px; }
.section-head h2 { font-size: clamp(36px, 5.4vw, 78px); }
@media (max-width: 860px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  padding: 36px 28px 80px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .35s var(--ease);
  cursor: default;
}
.step:last-child { border-right: 0; }
.step:hover { background: color-mix(in oklab, var(--accent-soft) 28%, transparent); }

.step-n {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 40px;
  display: flex; align-items: center; gap: 10px;
}
.step-n b {
  font-family: var(--display);
  font-size: 48px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}
.step-title {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.step-desc {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.step .arrow {
  position: absolute;
  right: -8px; top: 50%;
  width: 16px; height: 16px;
  color: var(--ink-3);
  transform: translateY(-50%);
}
.step:last-child .arrow { display: none; }

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .step .arrow { display: none; }
}

.decision-kicker {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.decision-kicker .quote {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.decision-kicker .quote em { color: var(--accent); }
@media (max-width: 860px) {
  .decision-kicker { grid-template-columns: 1fr; }
}

/* ----- STATEMENT (O problema é estrutura) ----- */
.statement {
  padding: 160px 0;
  background: var(--bg-3);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.statement .eyebrow { color: oklch(0.7 0.020 60); }
.statement h2 {
  font-size: clamp(44px, 7vw, 112px);
  max-width: 14ch;
  margin: 40px 0 60px;
}
.statement h2 em { color: oklch(0.78 0.16 50); }

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid oklch(0.32 0.02 50);
}
.statement-grid .card {
  position: relative;
  padding-right: 24px;
}
.statement-grid .label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: oklch(0.6 0.02 60);
  margin-bottom: 18px;
}
.statement-grid .big {
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.statement-grid .big em { color: oklch(0.78 0.16 50); }
.statement-grid p { color: oklch(0.78 0.02 60); font-size: 16px; max-width: 38ch; }

@media (max-width: 860px) {
  .statement-grid { grid-template-columns: 1fr; gap: 40px; }
}
