/* ============ Fontes locais: a página mantém o mesmo desenho em qualquer conexão ============ */

@font-face {
  font-family: 'Oswald';
  src: url('../assets/fonts/oswald-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../assets/fonts/oswald-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/archivo-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/archivo-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/archivo-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/archivo-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../assets/fonts/archivo-latin-800-normal.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('../assets/fonts/caveat-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('../assets/fonts/caveat-latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============ Shoolé Lavatênis — Landing Page (fiel ao layout 1440) ============ */

:root {
  --paper: #F8F1E8;
  --paper-2: #F3E9DB;
  --ink: #000000;
  --olive: #4A4A42;
  --orange: #FF4305;
  --orange-cta: #FF5B00;
  --blue: #058EE7;
  --cyan: #0096D3;
  --green: #009F00;
  --lime: #D8E600;
  --indigo: #20117F;
  --paper-texture:
    radial-gradient(circle at 18% 27%, rgba(72, 54, 37, 0.055) 0 0.4px, transparent 0.75px),
    radial-gradient(circle at 73% 62%, rgba(105, 78, 52, 0.045) 0 0.5px, transparent 0.85px),
    radial-gradient(circle at 42% 81%, rgba(68, 52, 40, 0.04) 0 0.35px, transparent 0.7px);
  --font-display: 'Oswald', 'Anton', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-hand: 'Caveat', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-size: 29px 31px, 43px 47px, 61px 59px;
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* moldura de 1440px que replica o layout */
.frame {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}

.container {
  width: min(1344px, 92%);
  margin-inline: auto;
}

/* ---------- Tipografia ---------- */

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

h1 em, h2 em { font-style: normal; }
h1 em { color: var(--orange); }
h1 .azul { color: var(--cyan); }

.eyebrow {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 17px;
}
.eyebrow-blue { color: var(--blue); }
.eyebrow-orange { color: var(--orange); }
.eyebrow-lime { color: var(--lime); }
.eyebrow-dark { color: var(--ink); }

.handwriting {
  font-family: var(--font-hand);
  font-weight: 700;
}

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 15px 28px;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange-cta);
  color: #fff;
}
.btn-primary:hover { background: #e94207; }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #262420; }

/* ---------- Header (desktop: aparece só ao rolar) ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(246, 239, 230, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(10, 9, 8, 0.08);
  transform: translateY(-105%);
  transition: transform 0.25s ease;
}
.site-header.scrolled { transform: none; }

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
}

.header-logo img { height: 44px; width: auto; }

.header-nav { display: flex; gap: 26px; margin-left: auto; }

.header-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.header-nav a:hover { color: var(--orange); border-color: var(--orange); }

.header-cta { padding: 11px 22px; font-size: 12px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero,
.ticker,
.mercado,
.modelo,
.estrutura,
.historia {
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-size: 29px 31px, 43px 47px, 61px 59px;
}

.hero-art {
  height: 741px;
  line-height: 0;
  overflow: hidden;
}
.hero-art-img { width: 100%; height: auto; }

/* Corrige no desktop o acento agudo incorporado à arte original: Lavó → Lavô. */
.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero-art::before {
  left: 16.55%;
  top: 73.15%;
  z-index: 3;
  width: 13px;
  height: 9px;
  background: #f7f0e7;
}
.hero-art::after {
  left: calc(16.55% + 2px);
  top: calc(73.15% + 1px);
  z-index: 4;
  width: 10px;
  height: 7px;
  background: #111;
  clip-path: polygon(0 72%, 50% 0, 100% 72%, 83% 91%, 50% 39%, 17% 91%);
}

.hotspot {
  position: absolute;
  display: block;
  z-index: 2;
}

.hero-mobile { display: none; }

/* ---------- Ticker ---------- */

.ticker {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  height: 64px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
}
.ticker-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin-inline: auto;
}
.ticker-inner > span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.ticker-left { left: 48px; }
.ticker-center { left: 447px; color: var(--ink); }
.ticker-line { left: 670px; width: 378px; height: 2px; background: var(--ink); }
.ticker-right { right: 72px; }

/* ---------- O Mercado ---------- */

.mercado { background-color: var(--paper); }

.mercado .frame {
  height: 634px;
  overflow: hidden;
}

.mercado-copy {
  position: relative;
  z-index: 2;
  max-width: 460px;
  padding: 36px 0 6px 48px;
}

/* Oculta somente o pequeno resíduo da extração da colagem, fora da arte do mockup. */
.mercado .frame::after {
  content: "";
  position: absolute;
  left: 435px;
  bottom: 0;
  z-index: 1;
  width: 55px;
  height: 70px;
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-size: 29px 31px, 43px 47px, 61px 59px;
}

.mercado h2, .modelo h2, .historia h2 {
  text-shadow: -3px 3px 0 #FFFDF4;
}
.mercado h2 {
  font-size: 53px;
  line-height: 1;
  transform: scaleX(0.95);
  transform-origin: left top;
}

.eyebrow + h2 { margin-top: 22px; }

.section-sub {
  margin-top: 22px;
  font-size: 15.5px;
  line-height: 1.5;
  color: #2E2C27;
  max-width: 352px;
}

.mercado-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.mercado-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15.5px;
  line-height: 1.35;
  font-weight: 500;
  max-width: 400px;
}
.mercado-list .li-icon {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  margin-top: -2px;
  mix-blend-mode: multiply;
}
.mercado-list small {
  display: block;
  font-weight: 600;
  color: #55524B;
  font-size: 12px;
  margin-top: 3px;
}

.mercado-visual {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: right;
}

/* ---------- Modelo Operacional ---------- */

.modelo {
  position: relative;
  background-color: var(--paper);
  height: 435px;
  padding: 32px 0 21px;
  overflow: hidden;
}

.modelo-blob-e {
  position: absolute;
  right: 0;
  top: 0;
  width: 248px;
  z-index: 0;
}

.modelo-blob-blue {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  z-index: 0;
}

.modelo .frame { z-index: 1; }

.modelo .container-fluid { padding-inline: 48px; }

.modelo-head {
  display: flex;
  align-items: flex-start;
  gap: 190px;
  margin-bottom: 18px;
}

.modelo h2 {
  font-size: 44.5px;
  line-height: 0.99;
  margin-top: 20px;
  transform: scaleX(1.13);
  transform-origin: left top;
}
.modelo .eyebrow + h2 { margin-top: 20px; }

.modelo-sub {
  margin-top: 54px;
  max-width: 380px;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
  max-width: 1282px;
}

.step {
  position: relative;
  background: #FFF9ED;
  border: 1px solid rgba(10, 9, 8, 0.12);
  padding: 24px 20px;
  min-height: 232px;
}
.step::after {
  content: '\2192';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  z-index: 2;
}
.step:last-child::after { content: none; }

.step-num {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.03em;
}
.num-1, .num-5 { color: var(--orange); }
.num-2 { color: var(--indigo); }
.num-3 { color: var(--cyan); }
.num-4 { color: var(--green); }

.step h3 {
  font-size: 15.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 14px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14.5px;
  line-height: 1.45;
  color: #33312C;
  max-width: 62%;
}
.step:nth-child(4) p, .step:nth-child(5) p { max-width: 58%; }

.step-icon {
  position: absolute;
  right: 14px;
  bottom: 26px;
  width: 72px;
  height: auto;
  mix-blend-mode: multiply;
}
.step:nth-child(5) .step-icon { width: 100px; bottom: 30px; }

/* ---------- A Estrutura ---------- */

.estrutura {
  background-color: var(--paper);
  overflow: hidden;
}

.estrutura .frame { min-height: 414px; }

.estrutura-copy {
  position: relative;
  z-index: 2;
  padding: 0 0 12px 40px;
  max-width: 884px;
}

.estrutura .eyebrow { font-size: 15px; padding-left: 8px; padding-top: 27px; }

.estrutura-cards {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10, 9, 8, 0.08);
  border: 1px solid rgba(10, 9, 8, 0.08);
  max-width: 838px;
  margin-left: -13px;
  height: 323px;
  grid-template-rows: repeat(2, 1fr);
}

.apoio {
  background: #FBF4EB;
  padding: 12px 20px;
  min-width: 0;
}

.apoio-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
}

.apoio-icon { width: 44px; height: auto; flex: 0 0 auto; mix-blend-mode: multiply; }

.apoio h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.apoio p {
  font-size: 14px;
  line-height: 1.4;
  color: #33312C;
  padding-left: 57px;
}

.estrutura-visual {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  height: 100%;
  width: 577px;
  object-fit: cover;
  object-position: right;
}

/* ---------- Quem está por trás ---------- */

.historia { background-color: var(--paper); }

.historia .frame { min-height: 414px; }

.historia-copy {
  position: relative;
  z-index: 2;
  max-width: 490px;
  padding: 20px 0 2px 48px;
}

.historia .eyebrow { font-size: 15px; }

.historia h2 {
  font-size: 36px;
  line-height: 0.99;
  margin-top: 8px;
  transform: scaleX(1.12);
  transform-origin: left top;
}

.historia-copy p {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.35;
  color: #2E2C27;
  max-width: 440px;
}

.lavo-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #29217A;
  color: #fff;
  padding: 10px 20px 10px 14px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.4;
  margin-top: 14px;
}
.lavo-badge-crown {
  font-size: 17px;
  border: 1.6px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.historia-visual {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 906px;
  overflow: hidden;
}

.historia-visual::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: 10px;
  background: var(--paper);
  clip-path: polygon(
    0 0, 68% 0, 96% 11%, 63% 23%, 100% 37%,
    62% 50%, 94% 63%, 60% 76%, 100% 89%, 70% 100%, 0 100%
  );
}

.historia-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.numeros-desktop {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 52%;
  padding: 18px 92px 18px 38px;
  color: #fff;
  background: #18191A;
  clip-path: polygon(0 0, 87% 0, 83% 12%, 89% 24%, 81% 37%, 88% 50%, 80% 63%, 86% 76%, 81% 89%, 88% 100%, 0 100%);
}

.numeros-desktop-title {
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.numeros-desktop-list {
  list-style: none;
  display: grid;
  gap: 3px;
}

.numeros-desktop-list li {
  min-height: 83px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 15px;
}

.numero-icon {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.numero-icon-badge { width: 51px; height: 51px; }

.numeros-desktop-list strong {
  display: block;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.numeros-desktop-list span {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.historia-mobile { display: none; }

/* ---------- Transição rasgada ---------- */

.torn-black {
  display: block;
  width: 100%;
  height: 21px;
  object-fit: cover;
  object-position: top;
  background: var(--paper);
  position: relative;
  z-index: 3;
  margin-bottom: -21px;
}

/* ---------- Formulário / CTA final ---------- */

.cta-final {
  background: #000;
  color: var(--paper);
  height: 613px;
  padding: 27px 0 104px;
  overflow: hidden;
}

.cta-grid {
  display: grid;
  grid-template-columns: 512px 1fr;
  gap: 50px;
  padding-inline: 48px;
  align-items: start;
}

.cta-copy { position: relative; padding-top: 0; }

.cta-copy h2 {
  color: #fff;
  font-size: 49.5px;
  line-height: 0.93;
  margin-top: 10px;
  margin-bottom: 18px;
  transform: scaleX(1.29);
  transform-origin: left top;
}
.cta-copy h2 em { color: #74B100; }
.cta-title-line {
  display: inline-block;
  transform: scaleX(0.89);
  transform-origin: left top;
}

.cta-checklist {
  list-style: none;
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}
.cta-checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
}
.cta-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 2px;
  color: #74B100;
  font-weight: 800;
  border: 1.5px solid #74B100;
  border-radius: 3px;
  width: 17px;
  height: 17px;
  font-size: 11px;
  display: grid;
  place-items: center;
}

.cta-obs {
  color: #C9C3B8;
  font-size: 15px;
  line-height: 1.45;
  max-width: 300px;
}

.cta-arrow {
  position: absolute;
  right: 13px;
  top: 138px;
  width: 172px;
  height: auto;
  mix-blend-mode: screen;
  filter: contrast(1.35) brightness(0.95);
}

.socials { display: flex; gap: 47px; margin-top: 48px; }
.socials a {
  background: #fff;
  color: #000;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}
.socials a:hover { background: var(--orange); }
.socials svg { width: 24px; height: 24px; }

.cta-form-col {
  max-width: 722px;
  padding-top: 45px;
}

.lead-form { display: grid; gap: 11px; }

.field label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.field input,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 26px;
  height: 39px;
  outline: 3px solid transparent;
  transition: outline-color 0.15s ease;
}
.field input:focus,
.field select:focus { outline-color: var(--orange-cta); }

.field input::placeholder { color: #2E2C27; opacity: 1; }

.field-select { position: relative; }
.field-select::after {
  content: '';
  position: absolute;
  right: 26px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field select { appearance: none; cursor: pointer; }
.field select:invalid { color: #2E2C27; }

.field input.invalid,
.field select.invalid { outline-color: #E03616; }

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 20px;
  letter-spacing: 0.12em;
  padding: 0;
  height: 59px;
  border-radius: 28px;
  margin-top: 2px;
  background: linear-gradient(180deg, #FF6100 0%, #FF5000 100%);
}
.btn-submit:hover { background: linear-gradient(180deg, #FF5700 0%, #F24800 100%); }
.btn-submit .arrow { font-size: 1.2em; }
.btn-submit[disabled] { opacity: 0.6; cursor: wait; transform: none; }

.form-feedback {
  min-height: 1.4em;
  font-size: 14px;
  text-align: center;
  margin-top: 4px;
}
.form-feedback.ok { color: var(--green); }
.form-feedback.err { color: #FF7A55; }

.footer-logo {
  width: 568px;
  max-width: 85%;
  margin: 32px auto 0;
}

.footer-legal {
  margin-top: 12px;
  color: #9c978f;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ============ Responsivo: só entra em telas realmente estreitas ============ */

@media (max-width: 520px) {

  /* header sempre visível */
  .site-header { transform: none; position: sticky; }

  /* sem alargamento dos títulos no mobile */
  .mercado h2, .modelo h2, .historia h2, .cta-copy h2 { transform: none; }

  .eyebrow { font-size: 14px; }

  /* hero: troca arte integral por HTML */
  .hero-art { display: none; }
  .hero-mobile {
    display: grid;
    gap: 36px;
    padding-top: 100px;
    padding-bottom: 56px;
  }
  h1 { font-size: clamp(3rem, 8vw, 4.6rem); }
  .hero-copy h1 { margin-bottom: 26px; }
  .hero-sub { max-width: 42ch; margin-bottom: 30px; color: #33312C; }
  .hero-visual { position: relative; }
  .hero-photo { width: 100%; box-shadow: 10px 12px 0 rgba(10, 9, 8, 0.12); }
  .hero-note {
    position: absolute;
    left: -8px;
    bottom: -14px;
    background: var(--paper);
    padding: 10px 16px 6px;
    transform: rotate(-3deg);
    font-size: 1.4rem;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(10, 9, 8, 0.12);
  }
  .hero-note .note-arrow { width: 52px; display: block; margin: 4px 0 0 auto; }

  .ticker { height: auto; padding: 12px 4vw; }
  .ticker-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 18px;
    row-gap: 4px;
    white-space: normal;
    text-align: center;
    font-size: 11px;
  }
  .ticker-inner > span { position: static; transform: none; }
  .ticker-line { display: none; }

  /* seções viram fluxo vertical */
  .mercado .frame, .estrutura .frame, .historia .frame { min-height: 0; }

  .mercado-copy, .estrutura-copy, .historia-copy {
    max-width: none;
    padding: 56px 4vw 32px;
  }
  .mercado h2 { font-size: clamp(2.2rem, 6vw, 3rem); }

  .mercado-visual, .estrutura-visual, .historia-visual {
    position: static;
    width: 100%;
    height: auto;
  }
  .historia-visual { display: none; }
  .historia-mobile { display: block; padding: 0 4vw 56px; }

  .numeros {
    background: var(--ink);
    color: var(--paper);
    padding: 32px 30px;
  }
  .numeros-title {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 15px;
    margin-bottom: 22px;
  }
  .numeros ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .numeros strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 1;
    color: var(--orange);
  }
  .numeros span {
    display: block;
    margin-top: 5px;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
  }
  .historia-foto { width: 100%; margin-top: 18px; }

  .modelo { padding: 48px 0; }
  .modelo, .cta-final { height: auto; overflow: visible; }
  .modelo .container-fluid { padding-inline: 4vw; }
  .modelo-blob-e, .modelo-blob-blue { display: none; }
  .modelo-head { flex-direction: column; gap: 18px; margin-bottom: 30px; }
  .modelo-sub { margin-top: 0; }
  .modelo h2 { font-size: clamp(2rem, 5.5vw, 2.9rem); }

  .steps { grid-template-columns: repeat(3, 1fr); }
  .step::after { content: none; }
  .step { min-height: 200px; }

  .estrutura-cards {
    max-width: none;
    height: auto;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-rows: none;
  }

  .historia h2 { font-size: clamp(1.9rem, 5vw, 2.5rem); max-width: none; }

  .cta-grid { grid-template-columns: 1fr; gap: 40px; padding-inline: 4vw; }
  .cta-final { padding: 48px 0 64px; }
  .cta-copy h2 { font-size: clamp(2rem, 6vw, 2.9rem); }
  .cta-arrow { display: none; }
  .socials { margin-top: 32px; }
  .footer-logo { margin-top: 48px; }
  .lavo-badge {
    max-width: 360px;
    padding: 8px 14px 8px 10px;
    border-radius: 8px;
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .header-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    margin-left: 0;
    z-index: 60;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    padding: 12px 4vw 20px;
    border-bottom: 2px solid var(--ink);
    display: none;
  }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 14px 0; border-bottom: 1px solid rgba(10,9,8,0.08); }
  .header-cta { display: none; }
  .nav-toggle { display: block; }

  .hero-mobile { padding-top: 92px; }

  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .step { min-height: 0; padding-right: 110px; }
  .step p { max-width: none; }
  .estrutura-cards { grid-template-columns: 1fr; }
  .numeros ul { grid-template-columns: 1fr; }
  .hero-note { font-size: 1.2rem; }
}
