/* ==================================================
   STOCK — Institucional: editorial/industrial language
   Loaded after stock.css + internal.css
   ================================================== */

/* ---------- reveal primitives (wipe = sliding curtain + rise) ---------- */
.wipe { position: relative; }
.wipe::after {
  content: "";
  position: absolute; inset: -1px;
  background: var(--cream);
  transform: translateX(0);
  transition: transform 1.1s cubic-bezier(.22,.61,.36,1);
  z-index: 3;
  pointer-events: none;
}
.wipe.on::after { transform: translateX(102%); }
.rise { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); }
.rise.on { opacity: 1; transform: none; }
.rise-d1 { transition-delay: .1s; }
.rise-d2 { transition-delay: .22s; }
.rise-d3 { transition-delay: .34s; }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; transition: none; }
  .wipe::after { display: none; }
}

/* ---------- 1. editorial statement ---------- */
.ed-state {
  padding: 110px 0 90px;
  background: #fff;
}
.ed-kicker {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 36px;
}
.ed-kicker::before { content: ""; width: 46px; height: 2px; background: var(--orange); }
.ed-state p.ed-big {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.32;
  color: var(--blue-ink);
  max-width: 1020px;
  text-wrap: pretty;
  margin: 0;
}
.ed-state .ed-hl { color: var(--orange); white-space: nowrap; }
.ed-state .ed-mut { color: rgba(16,24,64,0.42); }

/* ---------- 2. full-bleed photo strip ---------- */
.ed-strip {
  position: relative;
  height: clamp(320px, 52vh, 560px);
  overflow: hidden;
}
.ed-strip img {
  position: absolute; inset: 0;
  width: 100%; height: 120%;
  object-fit: cover;
  will-change: transform;
}
.ed-strip .ed-strip-tag {
  position: absolute; left: 0; bottom: 0;
  background: var(--blue-ink);
  color: #fff;
  padding: 18px 30px 18px max(30px, calc((100vw - 1200px) / 2));
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  display: flex; align-items: center; gap: 12px;
}
.ed-strip .ed-strip-tag::after { content: ""; width: 34px; height: 2px; background: var(--orange); }

/* ---------- 3. giant numbers row ---------- */
.ed-nums {
  background: #fff;
  padding: 96px 0 100px;
}
.ed-nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.ed-num { border-top: 2px solid var(--blue-ink); padding-top: 22px; }
.ed-num .en-v {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 5.4vw, 84px);
  line-height: 1;
  color: var(--blue-ink);
  letter-spacing: -0.02em;
  display: flex; align-items: baseline;
}
.ed-num .en-v .en-suf { color: var(--orange); font-size: 0.5em; font-weight: 700; margin-left: 4px; }
.ed-num .en-l { margin-top: 12px; font-size: 14.5px; color: var(--text-muted); }

/* ---------- 4. manifesto band (deep blue) ---------- */
.manifesto {
  position: relative;
  background: var(--blue-ink);
  padding: 130px 0;
  overflow: hidden;
}
.manifesto .mf-s {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 520px; opacity: 0.05;
  pointer-events: none;
}
.mf-label {
  font-size: 13px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 30px;
}
.manifesto blockquote {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.4;
  color: #fff;
  max-width: 900px;
  text-wrap: pretty;
}
.manifesto blockquote strong { color: var(--orange); font-weight: 600; }
.mf-who {
  margin-top: 36px;
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.55); font-size: 14px;
}
.mf-who::before { content: ""; width: 40px; height: 2px; background: var(--orange); }

/* ---------- 5. process timeline ---------- */
.tl-sec { background: var(--cream); padding: 120px 0 130px; }
.tl-head { max-width: 680px; margin-bottom: 80px; }
.tl-head .isec-title { margin-bottom: 14px; }
.tl-head p { color: var(--text-muted); font-size: 16.5px; line-height: 1.7; margin: 0; }

.tl {
  position: relative;
  display: flex; flex-direction: column; gap: 90px;
}
.tl-rail {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; transform: translateX(-50%);
  background: rgba(16,24,64,0.10);
}
.tl-rail .tl-fill {
  position: absolute; left: 0; top: 0; width: 100%;
  background: var(--orange);
  height: 0%;
}
.tl-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  scroll-margin-top: 130px;
}
.tl-dot {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--cream);
  border: 3px solid rgba(16,24,64,0.18);
  transition: border-color .4s, background .4s, box-shadow .4s;
  z-index: 2;
}
.tl-step.on .tl-dot {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(240,78,35,0.15);
}
.tl-media {
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: 0 22px 54px rgba(12,18,48,0.16);
}
.tl-media img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.06); transition: transform 1.4s cubic-bezier(.22,.61,.36,1); }
.tl-step.on .tl-media img { transform: scale(1); }
.tl-body .tl-n {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 15px; letter-spacing: .16em;
  color: var(--orange);
}
.tl-body h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: clamp(24px, 2.2vw, 32px);
  color: var(--blue-ink);
  margin: 10px 0 14px;
}
.tl-body p { color: var(--text-muted); font-size: 16px; line-height: 1.75; margin: 0; max-width: 440px; }
.tl-step:nth-child(even) .tl-media { order: 2; }
.tl-step:nth-child(even) .tl-body { order: 1; display: flex; flex-direction: column; align-items: flex-end; text-align: right; }

/* ---------- 6. diferenciais: expanding rows ---------- */
.dif-sec { background: #fff; padding: 120px 0; }
.dif-rows { border-top: 1px solid rgba(16,24,64,0.12); margin-top: 56px; }
.dif-row {
  position: relative;
  border-bottom: 1px solid rgba(16,24,64,0.12);
  padding: 30px 10px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 28px;
  align-items: baseline;
  cursor: default;
  transition: padding-left .35s cubic-bezier(.22,.61,.36,1);
}
.dif-row::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: -1px;
  width: 0; background: var(--orange);
  transition: width .35s cubic-bezier(.22,.61,.36,1);
}
.dif-row:hover { padding-left: 26px; }
.dif-row:hover::before { width: 6px; }
.dif-row .df-n {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 15px; letter-spacing: .1em;
  color: rgba(16,24,64,0.32);
  transition: color .3s;
}
.dif-row:hover .df-n { color: var(--orange); }
.dif-row .df-t {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 34px);
  color: var(--blue-ink);
  line-height: 1.2;
}
.dif-row .df-d {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 15.5px; line-height: 1.7;
  max-width: 560px;
  overflow: hidden;
  max-height: 0; opacity: 0;
  transition: max-height .5s cubic-bezier(.22,.61,.36,1), opacity .4s, margin-top .4s;
  margin-top: 0;
}
.dif-row:hover .df-d { max-height: 130px; opacity: 1; margin-top: 12px; }
.dif-row .df-a {
  align-self: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(16,24,64,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-ink);
  transition: background .3s, color .3s, border-color .3s, transform .35s;
}
.dif-row:hover .df-a { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(45deg); }

/* ---------- 7. MVV split (sticky left) ---------- */
.mvv2 { background: var(--cream); padding: 120px 0; }
.mvv2-grid { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 90px; align-items: start; }
.mvv2-left { position: sticky; top: 120px; }
.mvv2-left .isec-title { margin-bottom: 16px; }
.mvv2-left p { color: var(--text-muted); font-size: 16px; line-height: 1.7; }
.mvv2-item {
  padding: 40px 0;
  border-top: 1px solid rgba(16,24,64,0.12);
  display: grid; grid-template-columns: 72px 1fr; gap: 26px;
}
.mvv2-item:last-child { border-bottom: 1px solid rgba(16,24,64,0.12); }
.mvv2-item .m2-big {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 44px; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240,78,35,0.75);
}
.mvv2-item h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 21px; color: var(--blue-ink);
  margin: 0 0 10px;
}
.mvv2-item p { color: var(--text-muted); font-size: 15.5px; line-height: 1.7; margin: 0; }
.mvv2-item ul { margin: 0; padding: 0; list-style: none; color: var(--text-muted); font-size: 15.5px; line-height: 2; }
.mvv2-item ul li { display: flex; align-items: center; gap: 10px; }
.mvv2-item ul li::before { content: ""; width: 14px; height: 2px; background: var(--orange); flex: none; }

/* ---------- 8. segments double marquee ---------- */
.segmq { background: #fff; padding: 100px 0 110px; overflow: hidden; }
.segmq .isec-head { margin-bottom: 52px; }
.segmq-track { display: flex; gap: 16px; width: max-content; }
.segmq-row { margin-bottom: 16px; }
.segmq-row.r1 .segmq-track { animation: segmq-l 36s linear infinite; }
.segmq-row.r2 .segmq-track { animation: segmq-r 36s linear infinite; }
@keyframes segmq-l { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes segmq-r { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.segmq-chip {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  border: 1.5px solid rgba(16,24,64,0.14);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 16px; color: var(--blue-ink);
  white-space: nowrap;
  transition: border-color .3s, background .3s, color .3s;
}
.segmq-chip:hover { border-color: var(--orange); background: var(--orange); color: #fff; }
.segmq-chip svg { color: var(--orange); flex: none; transition: color .3s; }
.segmq-chip:hover svg { color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .segmq-row .segmq-track { animation: none; }
}

/* ---------- 9. final CTA (blue, split) ---------- */
.icta {
  background: var(--blue-ink);
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.icta::after {
  content: "";
  position: absolute; right: 0; top: 0; bottom: 0; width: 38%;
  background: linear-gradient(105deg, transparent 0, transparent 12%, rgba(240,78,35,0.9) 12.5%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.14;
  pointer-events: none;
}
.icta-grid { display: flex; align-items: center; justify-content: space-between; gap: 60px; position: relative; z-index: 1; }
.icta h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 42px);
  color: #fff; margin: 0;
  max-width: 640px; line-height: 1.25;
  text-wrap: balance;
}
.icta h2 span.hl { color: var(--orange); }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .ed-nums-grid { grid-template-columns: 1fr 1fr; gap: 48px 32px; }
  .tl-rail { left: 8px; }
  .tl-dot { left: 8px; }
  .tl-step { grid-template-columns: 1fr; gap: 26px; padding-left: 44px; }
  .tl-step:nth-child(even) .tl-media { order: 0; }
  .tl-step:nth-child(even) .tl-body { order: 0; align-items: flex-start; text-align: left; }
  .mvv2-grid { grid-template-columns: 1fr; gap: 48px; }
  .mvv2-left { position: static; }
  .icta-grid { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .dif-row { grid-template-columns: 48px 1fr; }
  .dif-row .df-a { display: none; }
  .dif-row .df-d { grid-column: 1 / -1; }
  .mvv2-item { grid-template-columns: 1fr; gap: 10px; }
}
