/* ============================================================
   LabLAAE — Dossiê da Franquia
   Identidade: azul corporativo + ciano, técnico, limpo (base da LP)
   CSS standalone do dossiê — não depende do build da LP.
   ============================================================ */

:root {
  --lab-blue-950: #061B3E;
  --lab-blue-900: #0A2A5E;
  --lab-blue-800: #0E3A7E;
  --lab-blue-700: #134B9C;
  --lab-blue-500: #1E6BD6;
  --lab-blue-300: #4F8FE0;
  --lab-blue-100: #E6F0FB;
  --lab-blue-50:  #F4F8FD;
  --lab-cyan-500: #00B4D8;
  --lab-cyan-300: #6BD4EA;
  --lab-cyan-100: #DFF6FB;

  --lab-ink-900: #0F172A;
  --lab-gray-700: #334155;
  --lab-gray-500: #64748B;
  --lab-gray-400: #94A3B8;
  --lab-gray-300: #CBD5E1;
  --lab-gray-200: #E2E8F0;
  --lab-gray-100: #F1F5F9;
  --lab-gray-50:  #F8FAFC;
  --lab-white: #FFFFFF;

  --bg: var(--lab-gray-50);
  --bg-tint: var(--lab-blue-50);
  --bg-dark: var(--lab-blue-900);
  --bg-darker: var(--lab-blue-950);
  --surface: var(--lab-white);
  --text: var(--lab-gray-700);
  --text-strong: var(--lab-blue-900);
  --text-soft: var(--lab-gray-500);
  --text-on-dark: var(--lab-white);
  --text-on-dark-soft: rgba(255, 255, 255, 0.80);
  --text-on-dark-muted: rgba(255, 255, 255, 0.56);
  --line: var(--lab-gray-200);
  --line-strong: var(--lab-gray-300);
  --line-dark: rgba(255, 255, 255, 0.14);

  --shadow-sm: 0 1px 3px rgba(10, 42, 94, 0.08), 0 1px 2px rgba(10, 42, 94, 0.05);
  --shadow-md: 0 4px 14px rgba(10, 42, 94, 0.10), 0 2px 4px rgba(10, 42, 94, 0.06);
  --shadow-lg: 0 14px 32px rgba(10, 42, 94, 0.13), 0 4px 10px rgba(10, 42, 94, 0.06);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --container: 1160px;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text-strong);
}

em { font-style: normal; color: var(--lab-blue-500); }
strong { font-weight: 700; color: var(--text-strong); }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* ============================================================
   HEADER FIXO
   ============================================================ */
.dossie-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.dossie-header.is-visible,
.no-hero .dossie-header { transform: translateY(0); }

.dossie-header-inner {
  width: min(calc(100% - 32px), 1280px);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dossie-header-logo img { height: 40px; width: auto; }

.dossie-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dossie-nav-item { position: relative; }

.dossie-nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-strong);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.dossie-nav-item > a:hover {
  background: var(--lab-blue-100);
  color: var(--lab-blue-700);
}

.dossie-nav-item--current > a {
  background: var(--lab-blue-100);
  color: var(--lab-blue-700);
}

/* Dropdown de seções do capítulo */
.dossie-nav-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.dossie-nav-item--has-menu:hover .dossie-nav-menu,
.dossie-nav-item--has-menu:focus-within .dossie-nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dossie-nav-menu a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.dossie-nav-menu a:hover {
  background: var(--lab-blue-50);
  color: var(--lab-blue-700);
}

/* CTA do header */
.dossie-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  background: var(--lab-blue-700);
  color: var(--lab-white);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s ease, transform 0.15s ease;
}

.dossie-header-cta:hover { background: var(--lab-blue-900); transform: translateY(-1px); }

.dossie-nav-item--cta-mobile { display: none; }

/* Hamburger */
.dossie-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 8px;
}

.dossie-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============================================================
   BARRA DE PROGRESSO DE LEITURA
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 110;
  background: linear-gradient(90deg, var(--lab-blue-500), var(--lab-cyan-500));
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--lab-blue-700); color: var(--lab-white); }
.btn-primary:hover { background: var(--lab-blue-900); box-shadow: var(--shadow-md); }

.btn-light { background: var(--lab-white); color: var(--lab-blue-900); }
.btn-light:hover { background: var(--lab-cyan-100); box-shadow: var(--shadow-md); }

.btn-outline-dark {
  background: transparent;
  color: var(--text-strong);
  box-shadow: inset 0 0 0 2px var(--line-strong);
}
.btn-outline-dark:hover { box-shadow: inset 0 0 0 2px var(--lab-blue-700); color: var(--lab-blue-700); }

.btn-xl { padding: 17px 36px; font-size: 1.05rem; }

/* CTA de destaque da capa */
.btn-hero {
  padding: 20px 48px;
  font-size: 1.12rem;
  background: linear-gradient(115deg, var(--lab-cyan-500), var(--lab-blue-500));
  color: var(--lab-white);
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.35);
  animation: hero-cta-glow 2.6s ease-in-out infinite;
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 44px rgba(0, 180, 216, 0.55);
  animation-play-state: paused;
}

@keyframes hero-cta-glow {
  0%, 100% { box-shadow: 0 10px 30px rgba(0, 180, 216, 0.35); }
  50% { box-shadow: 0 12px 46px rgba(0, 180, 216, 0.62); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-hero { animation: none; }
}

/* ============================================================
   CAPA (HERO)
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 96px 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(0, 180, 216, 0.22), transparent),
    radial-gradient(ellipse 60% 50% at 85% 110%, rgba(30, 107, 214, 0.28), transparent),
    linear-gradient(175deg, var(--lab-blue-900) 0%, var(--lab-blue-950) 100%);
}

.hero-logo {
  height: 104px;
  width: auto;
  margin: 0 auto 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 26px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.06);
  color: var(--lab-cyan-300);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 880px;
  margin: 0 auto 24px;
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  color: var(--text-on-dark);
}

.hero-title em { color: var(--lab-cyan-300); }

.hero-sub {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  color: var(--text-on-dark-soft);
}

.hero-sub strong { color: var(--text-on-dark); }

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 44px;
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lab-cyan-500);
}

/* ============================================================
   ESTRUTURA DE PÁGINA INTERNA (capítulos)
   ============================================================ */
.page-shell { padding-top: 72px; }

.page-hero {
  padding: 110px 0 80px;
  background:
    radial-gradient(ellipse 60% 55% at 85% 0%, rgba(0, 180, 216, 0.16), transparent),
    linear-gradient(175deg, var(--lab-blue-900) 0%, var(--lab-blue-950) 100%);
}

.page-hero-indicator {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.page-hero-page {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--lab-cyan-300);
}

.page-hero-section {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  padding-left: 14px;
  border-left: 2px solid var(--line-dark);
}

.page-hero-title { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--text-on-dark); }

.page-hero-title em { color: var(--lab-cyan-300); }

.page-hero-lead {
  max-width: 700px;
  margin-top: 22px;
  font-size: 1.1rem;
  color: var(--text-on-dark-soft);
}

/* Blocos de seção */
.section { padding: 88px 0; }
.section-tint { background: var(--bg-tint); }
.section-dark { background: var(--bg-dark); }

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lab-cyan-500);
}

.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  margin-bottom: 18px;
}

.lead {
  max-width: 720px;
  font-size: 1.06rem;
  color: var(--text-soft);
}

/* ============================================================
   BANNER "PRÓXIMO CAPÍTULO"
   ============================================================ */
.next-chapter {
  background:
    radial-gradient(ellipse 60% 70% at 85% 50%, rgba(0, 180, 216, 0.12), transparent),
    var(--bg-darker);
}

.next-chapter-link { display: block; padding: 150px 0; transition: background 0.2s ease; }
.next-chapter-link:hover { background: rgba(255, 255, 255, 0.04); }

.next-chapter-grid {
  display: flex;
  align-items: center;
  gap: 52px;
}

.next-chapter-num {
  font-size: clamp(5rem, 13vw, 9.5rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(0, 180, 216, 0.08);
  -webkit-text-stroke: 2.5px rgba(107, 212, 234, 0.75);
}

.next-chapter-text { display: flex; flex-direction: column; gap: 10px; }

.next-chapter-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lab-cyan-300);
}

.next-chapter-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-on-dark);
}

.next-chapter-desc { color: var(--text-on-dark-soft); max-width: 600px; font-size: 1.04rem; }

.next-chapter-btn {
  margin-top: 22px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  background: linear-gradient(115deg, var(--lab-cyan-500), var(--lab-blue-500));
  color: var(--lab-white);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0, 180, 216, 0.32);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.next-chapter-link:hover .next-chapter-btn {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 36px rgba(0, 180, 216, 0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.dossie-footer {
  background: var(--bg-darker);
  color: var(--text-on-dark-soft);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-logo { height: 56px; width: auto; margin-bottom: 18px; }

.footer-tagline {
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 10px;
}

.footer-desc { font-size: 0.92rem; max-width: 380px; }

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a { font-size: 0.94rem; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--lab-cyan-300); }

.footer-address {
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.7;
}

.footer-bottom { padding-top: 32px; }

.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  max-width: 880px;
  margin-bottom: 18px;
}

.footer-disclaimer strong { color: var(--text-on-dark-soft); }

.footer-copy, .footer-credit {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
}

.footer-credit a { color: var(--text-on-dark-soft); }
.footer-credit a:hover { color: var(--lab-cyan-300); }

/* ============================================================
   CAP. 01 — MANIFESTO (linha do tempo da marca)
   ============================================================ */
.manifest-section {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 55% 45% at 90% 0%, rgba(0, 180, 216, 0.14), transparent),
    linear-gradient(180deg, var(--lab-blue-900), var(--lab-blue-950));
}

.manifest-track {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  padding-left: 36px;
}

.manifest-track::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--lab-cyan-500), rgba(255, 255, 255, 0.08));
}

.manifest-stop { position: relative; max-width: 780px; }

.manifest-stop::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--lab-blue-950);
  border: 3px solid var(--lab-cyan-500);
}

.manifest-stop-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(0, 180, 216, 0.14);
  color: var(--lab-cyan-300);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manifest-stop-text {
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-on-dark);
  letter-spacing: -0.015em;
}

.manifest-stop-text em { color: var(--lab-cyan-300); }

.manifest-slogan {
  margin-top: 64px;
  padding-left: 36px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--lab-cyan-300);
  letter-spacing: -0.015em;
}

/* ============================================================
   CAP. 01 — A MARCA (texto + imagem)
   ============================================================ */
.brand-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.brand-split-title { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 24px; }

.brand-split-text p { margin-bottom: 18px; font-size: 1.05rem; }

.brand-split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-marks {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.brand-mark {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brand-mark strong { display: block; font-size: 1.15rem; margin-bottom: 4px; }
.brand-mark span { font-size: 0.9rem; color: var(--text-soft); }

/* ============================================================
   CAP. 01 — PARA QUEM É (perfil × não é + encaixe por setor)
   ============================================================ */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.fit-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.fit-card--yes { border-top: 4px solid var(--lab-cyan-500); }
.fit-card--no  { border-top: 4px solid var(--lab-gray-300); }

.fit-card h3 { font-size: 1.25rem; margin-bottom: 20px; }

.fit-card ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.fit-card li {
  position: relative;
  padding-left: 30px;
  font-size: 0.98rem;
}

.fit-card--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--lab-cyan-500);
}

.fit-card--no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--lab-gray-400);
}

.scenario-intro { margin-top: 72px; }

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.scenario-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scenario-tag {
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--lab-blue-100);
  color: var(--lab-blue-700);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scenario-card h3 { font-size: 1.15rem; line-height: 1.35; }

.scenario-rows { display: flex; flex-direction: column; gap: 12px; }

.scenario-row {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--lab-gray-100);
  font-size: 0.94rem;
}

.scenario-row--after {
  background: var(--lab-blue-50);
  border: 1px solid var(--lab-blue-100);
}

.scenario-row-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.scenario-row--after .scenario-row-label { color: var(--lab-blue-500); }

/* ============================================================
   CAP. 01 — A LIDERANÇA
   ============================================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.founder-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}

.founder-photo-caption {
  display: block;
  margin-top: 14px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-strong);
}

.founder-photo-caption span {
  font-weight: 500;
  color: var(--text-soft);
}

.founder-text h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin-bottom: 24px; }

.founder-text p { margin-bottom: 16px; font-size: 1.03rem; }

.founder-name {
  display: block;
  margin-top: 24px;
  font-weight: 700;
  color: var(--text-strong);
}

/* ============================================================
   CAP. 01 — DEPOIMENTOS
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-stars { color: #F5B301; letter-spacing: 2px; font-size: 0.95rem; }

.testimonial-quote { font-size: 0.98rem; flex: 1; }

.testimonial-author { font-weight: 700; color: var(--text-strong); }

.testimonial-role { font-size: 0.85rem; color: var(--text-soft); }

/* ============================================================
   CAP. 01 — TOUR PELA UNIDADE
   ============================================================ */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 44px;
}

.tour-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--lab-gray-100);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.tour-item--large { grid-column: span 2; grid-row: span 2; }

.tour-item img, .tour-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(6, 27, 62, 0.75);
  backdrop-filter: blur(6px);
  color: var(--text-on-dark);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   CAP. 02 — MERCADO (estatísticas)
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.stat {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--lab-cyan-500);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--lab-blue-900);
  margin-bottom: 10px;
}

.stat-label { font-size: 0.95rem; color: var(--text); }

.stat-source {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.stats-footnote {
  margin-top: 28px;
  max-width: 760px;
  font-size: 0.98rem;
  color: var(--text-soft);
}

/* ============================================================
   CAP. 02 — GRÁFICO DE MERCADO (barras)
   ============================================================ */
.market-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-top: 72px;
}

.market-chart {
  padding: 32px 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.market-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.market-chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.market-chart-value {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--lab-blue-900);
  white-space: nowrap;
}

.market-chart-col.is-highlight .market-chart-value { color: var(--lab-cyan-500); }

.market-chart-track {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: flex-end;
  background: var(--lab-gray-100);
  border-radius: 10px;
  overflow: hidden;
}

.market-chart-fill {
  width: 100%;
  height: calc(var(--h) * 1%);
  background: linear-gradient(180deg, var(--lab-blue-500), var(--lab-blue-700));
  border-radius: 10px 10px 0 0;
}

.market-chart-col.is-highlight .market-chart-fill {
  background: linear-gradient(180deg, var(--lab-cyan-500), var(--lab-blue-500));
}

.market-chart-year {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-soft);
}

.market-chart-source {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.market-split-text h3 {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  margin-bottom: 16px;
}

.market-split-text p {
  color: var(--text-soft);
  margin-bottom: 14px;
  font-size: 1.02rem;
}

/* ============================================================
   CAP. 02 — O MÉTODO (pilares numerados)
   ============================================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.method-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.method-card-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lab-blue-300);
  margin-bottom: 14px;
  line-height: 1;
}

.method-card h3 { font-size: 1.08rem; margin-bottom: 10px; }

.method-card p { font-size: 0.92rem; color: var(--text-soft); }

/* ============================================================
   CAP. 02 — SUPORTE DA FRANQUEADORA (10 frentes)
   ============================================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
  counter-reset: frente;
}

.support-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.support-item::before {
  counter-increment: frente;
  content: counter(frente, decimal-leading-zero);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lab-blue-100);
  color: var(--lab-blue-700);
  font-size: 0.95rem;
  font-weight: 800;
}

.support-item h3 { font-size: 1.02rem; margin-bottom: 5px; }

.support-item p { font-size: 0.92rem; color: var(--text-soft); }

/* ============================================================
   CAP. 03 — COMO O NEGÓCIO GIRA (ciclo de receita)
   ============================================================ */
.cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.cycle-step {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cycle-step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cycle-step-num {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lab-blue-300);
}

.cycle-tag {
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cycle-tag--rec { background: var(--lab-cyan-100); color: #067A96; }
.cycle-tag--pont { background: var(--lab-blue-100); color: var(--lab-blue-700); }

.cycle-step h3 { font-size: 1.08rem; }

.cycle-step p { font-size: 0.92rem; color: var(--text-soft); }

/* ============================================================
   CAP. 03 — QUANTO CUSTA (destaques + tabela de composição)
   ============================================================ */
.invest-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.invest-highlight {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.invest-highlight--primary {
  background: linear-gradient(160deg, var(--lab-blue-900), var(--lab-blue-950));
  color: var(--text-on-dark-soft);
}

.invest-highlight--secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.invest-highlight-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.invest-highlight--primary .invest-highlight-label { color: var(--lab-cyan-300); }
.invest-highlight--secondary .invest-highlight-label { color: var(--lab-blue-500); }

.invest-highlight-value {
  display: block;
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.invest-highlight--primary .invest-highlight-value { color: var(--lab-white); }
.invest-highlight--secondary .invest-highlight-value { color: var(--lab-blue-900); }

.invest-highlight-hint { display: block; margin-top: 10px; font-size: 0.92rem; }

.invest-table {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.invest-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.invest-row:last-child { border-bottom: none; }

.invest-row-label {
  display: block;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 5px;
}

.invest-row-desc { font-size: 0.92rem; color: var(--text-soft); max-width: 640px; }

.invest-row-value {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--lab-blue-900);
  white-space: nowrap;
}

.invest-row--total {
  background: var(--lab-blue-50);
  align-items: center;
}

.invest-row--total .invest-row-label { font-size: 1.1rem; margin-bottom: 0; }
.invest-row--total .invest-row-value { font-size: 1.5rem; }

/* ============================================================
   CAP. 03 — RETORNO (indicadores)
   ============================================================ */
.indicator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.indicator-grid--3 { grid-template-columns: repeat(3, 1fr); margin-top: 22px; }

.indicator-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--lab-blue-500);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.indicator-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lab-blue-500);
}

.indicator-value {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lab-blue-900);
  line-height: 1.15;
}

.indicator-note { font-size: 0.88rem; color: var(--text-soft); }

/* ============================================================
   CAP. 04 — ONDE ABRIR (setores de demanda + callout)
   ============================================================ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.callout {
  margin-top: 64px;
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--lab-blue-900), var(--lab-blue-950));
}

.callout-text {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text-on-dark);
  max-width: 820px;
}

.callout-text em { color: var(--lab-cyan-300); }

.callout-hint {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--text-on-dark-soft);
}

/* ============================================================
   CAP. 04 — MAPA DE TERRITÓRIOS
   ============================================================ */
.territory-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.territory-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.territory-legend-swatch {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: var(--lab-blue-50);
  border: 1px solid var(--lab-blue-100);
}

.territory-legend-swatch--franqueadora { background: var(--lab-blue-900); border-color: transparent; }

.territory-legend-swatch--vendido { background: var(--lab-gray-200); border-color: var(--lab-gray-300); }

.territory-legend-swatch--mapa-disponivel { background: rgba(79, 143, 224, 0.55); border-color: var(--lab-blue-300); }

/* Mapa interativo (Leaflet) */
.territory-mapa { margin-top: 44px; }

.territory-mapa-canvas {
  position: relative;
  z-index: 0;
  height: clamp(420px, 62vh, 640px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--lab-blue-50);
}

.territory-mapa-canvas.leaflet-container {
  background: var(--lab-blue-50);
  font-family: var(--font);
}

.territory-mapa .territory-legend { margin-top: 20px; }

.leaflet-tooltip.territory-tip {
  padding: 10px 14px;
  border: none;
  border-radius: 10px;
  background: var(--lab-blue-950);
  color: var(--lab-white);
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  line-height: 1.45;
  white-space: nowrap;
}

.leaflet-tooltip.territory-tip::before { display: none; }

.territory-tip strong { color: var(--lab-white); font-size: 0.92rem; }

.territory-tip .tip-status { display: block; margin-top: 2px; }

.territory-tip .tip-status--disponivel { color: var(--lab-cyan-300); font-weight: 700; }

.territory-tip .tip-status--vendido { color: rgba(255, 255, 255, 0.72); }

@media (max-width: 620px) {
  .territory-mapa-canvas { height: 400px; }
}

/* ============================================================
   CAP. 05 — PRÓXIMOS PASSOS (etapas detalhadas)
   ============================================================ */
.steps-list {
  list-style: none;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.step-item {
  display: flex;
  gap: 28px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.step-num {
  flex-shrink: 0;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--lab-blue-300);
}

.step-body { flex: 1; }

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.step-title { font-size: 1.25rem; }

.step-prazo {
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--lab-blue-100);
  color: var(--lab-blue-700);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.step-summary { color: var(--text-soft); max-width: 720px; }

.step-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.step-block {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--lab-gray-100);
}

.step-block--deliver { background: var(--lab-blue-50); }

.step-block-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.step-block--deliver .step-block-label { color: var(--lab-blue-500); }

.step-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.step-block li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
}

.step-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lab-gray-400);
}

.step-block--deliver li::before { background: var(--lab-cyan-500); }

/* ============================================================
   CAP. 06 — FAQ
   ============================================================ */
.faq-section { padding: 72px 0 96px; }

.faq-category { margin-top: 56px; }

.faq-category:first-child { margin-top: 0; }

.faq-category-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lab-blue-500);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lab-blue-100);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--text-strong);
  transition: background 0.15s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lab-blue-100);
  color: var(--lab-blue-700);
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { background: var(--lab-blue-50); }

.faq-answer { padding: 0 24px 22px; }

.faq-answer p { margin-bottom: 12px; font-size: 0.97rem; }

.faq-answer p:last-child { margin-bottom: 0; }

.faq-answer a { color: var(--lab-blue-700); font-weight: 600; text-decoration: underline; }

/* ============================================================
   CTA FINAL DE CAPÍTULO
   ============================================================ */
.action-cta {
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 180, 216, 0.16), transparent),
    linear-gradient(175deg, var(--lab-blue-900), var(--lab-blue-950));
}

.action-cta-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lab-cyan-300);
}

.action-cta-title {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  color: var(--text-on-dark);
  margin-bottom: 20px;
}

.action-cta-title em { color: var(--lab-cyan-300); }

.action-cta-lead {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.06rem;
  color: var(--text-on-dark-soft);
}

.action-cta-lead strong { color: var(--text-on-dark); }

.action-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.action-cta .btn-outline-dark {
  color: var(--text-on-dark);
  box-shadow: inset 0 0 0 2px var(--line-dark);
}

.action-cta .btn-outline-dark:hover {
  box-shadow: inset 0 0 0 2px var(--lab-cyan-300);
  color: var(--lab-cyan-300);
}

/* ============================================================
   PLACEHOLDER DE MÍDIA/CONTEÚDO PENDENTE ([SUBSTITUIR])
   ============================================================ */
.pending-media {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  width: 100%;
  height: 100%;
  min-height: 180px;
  border: 2px dashed rgba(148, 163, 184, 0.5);
  border-radius: var(--radius);
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(148, 163, 184, 0.06) 12px, rgba(148, 163, 184, 0.06) 24px);
}

.section-dark .pending-media { color: var(--text-on-dark-muted); }

.pending-note {
  margin-top: 28px;
  padding: 14px 18px;
  border-left: 4px solid #F5B301;
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #FFF8E1;
  color: #7A5C00;
  font-size: 0.9rem;
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA (reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   LIGHTBOX DE VÍDEO
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 27, 62, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.video-modal.is-open { opacity: 1; visibility: visible; }

.video-modal-content { width: min(960px, 100%); }

.video-modal-frame { position: relative; padding-top: 56.25%; }

.video-modal-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius);
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--lab-white);
  padding: 8px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {
  .dossie-header-cta { display: none; }
  .dossie-nav-toggle { display: flex; }

  /* absolute (não fixed): o backdrop-filter/transform do header captura
     descendentes fixed e clipava o menu na altura do próprio header */
  .dossie-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: 24px 16px;
    overflow-y: auto;
    display: none;
  }

  .dossie-nav.is-open { display: block; }

  .dossie-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .dossie-nav-item > a {
    display: flex;
    padding: 14px 16px;
    font-size: 1.05rem;
  }

  /* No mobile, o link do capítulo navega direto — submenu fica oculto */
  .dossie-nav-menu { display: none; }

  .dossie-nav-item--cta-mobile { display: block; margin-top: 18px; }

  .dossie-nav-item--cta-mobile a {
    justify-content: center;
    background: var(--lab-blue-700);
    color: var(--lab-white);
    border-radius: var(--radius-pill);
    font-weight: 700;
  }
}

@media (max-width: 960px) {
  .brand-split,
  .founder-grid { grid-template-columns: 1fr; gap: 36px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .market-split { grid-template-columns: 1fr; gap: 36px; }
  .cycle-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .indicator-grid { grid-template-columns: repeat(2, 1fr); }
  .indicator-grid--3 { grid-template-columns: repeat(2, 1fr); }

  .founder-photo { max-width: 420px; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .tour-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .page-hero { padding: 64px 0 48px; }

  .fit-grid,
  .scenario-grid,
  .brand-marks,
  .stats-grid,
  .method-grid,
  .support-grid,
  .cycle-grid,
  .invest-highlights,
  .indicator-grid,
  .indicator-grid--3,
  .sector-grid { grid-template-columns: 1fr; }

  .invest-row { flex-direction: column; gap: 8px; }

  .callout { padding: 32px 24px; }

  .step-item { flex-direction: column; gap: 14px; padding: 24px; }
  .step-blocks { grid-template-columns: 1fr; }

  .manifest-track { padding-left: 28px; gap: 36px; }
  .manifest-stop::before { left: -28px; }
  .manifest-slogan { padding-left: 28px; }

  .tour-grid { grid-template-columns: 1fr; }
  .tour-item--large { grid-column: span 1; grid-row: span 1; min-height: 240px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .next-chapter-grid { flex-direction: column; align-items: flex-start; gap: 16px; }
}
