/* ===============================
   Capivara Off Road — Landing
   =============================== */

:root {
  /* Palette — warm earthy / archaeological */
  --sand-50:  #faf6ef;
  --sand-100: #f3ece0;
  --sand-200: #e7dcc8;
  --sand-300: #d4c2a3;
  --clay-400: #c08a5a;
  --clay-500: #a3623a;
  --clay-600: #8a4a28;
  --rock-800: #2b2320;
  --rock-900: #1a1412;
  --ink:      #15100e;
  --muted:    #6b5d52;
  --accent:   #c0673c;
  --accent-rgb: 192, 103, 60;
  --accent-2: #8f4523;
  --leaf:     #6b3f24;

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(20,15,10,.06);
  --shadow:    0 10px 30px rgba(20,15,10,.08);
  --shadow-lg: 0 30px 60px rgba(20,15,10,.14);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
*::selection { background: var(--accent); color: #fff; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

p {
  margin: 0;
  text-wrap: pretty;
  hyphens: auto;
  -webkit-hyphens: auto;
}
p + p { margin-top: 1em; }

strong { font-weight: 600; color: var(--ink); }

/* strong on dark surfaces stays legible */
.hero strong,
.section--pain strong,
.section--included strong,
.section--cta strong,
.footer strong { color: var(--sand-50); }

/* strong in lead paragraphs gets subtle accent underline */
.lead strong {
  font-weight: 600;
  background-image: linear-gradient(to top, rgba(var(--accent-rgb),.28) 0, rgba(var(--accent-rgb),.28) 6px, transparent 6px);
  background-repeat: no-repeat;
  padding-bottom: 1px;
}
.hero__sub strong {
  background-image: linear-gradient(to top, rgba(var(--accent-rgb),.4) 0, rgba(var(--accent-rgb),.4) 4px, transparent 4px);
  background-repeat: no-repeat;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nowrap { white-space: nowrap; }

/* ================= TYPOGRAPHY ================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--accent-2); }

.h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -.025em;
  font-variation-settings: "opsz" 72;
}
.h2--xl {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.02;
  font-variation-settings: "opsz" 96;
}

.lead {
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);
  color: var(--muted);
  line-height: 1.55;
  max-width: 56ch;
  text-wrap: pretty;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow--dark { color: var(--accent-2); }
.eyebrow--dark::before { background: var(--accent-2); }

/* ================= BUTTONS ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}
.btn--sm  { padding: 10px 18px; font-size: .85rem; }
.btn--lg  { padding: 16px 28px; font-size: 1rem; }
.btn--xl  { padding: 20px 36px; font-size: 1.05rem; }

.btn--primary {
  background: var(--ink);
  color: var(--sand-50);
  box-shadow: var(--shadow);
}
.btn--primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--sand-50);
  border-color: rgba(255,255,255,.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

/* ================= NAV ================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(250,246,239,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20,15,10,.06);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: opacity .3s var(--ease);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--sand-50);
  font-variation-settings: "opsz" 48;
}
.nav__logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.nav__logo-mark {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--rock-900);
  font-size: .9rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.nav__logo:hover .nav__logo-mark { transform: rotate(8deg) scale(1.05); }
.nav.is-scrolled .nav__logo { color: var(--ink); }
.nav.is-scrolled .nav__logo em { color: var(--accent-2); }

.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--sand-100);
  position: relative;
  transition: color .3s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav.is-scrolled .nav__links a { color: var(--ink); }
.nav.is-scrolled .nav__links a:hover { color: var(--accent-2); }

.nav__cta { opacity: 0; transform: translateY(-6px); pointer-events: none; transition: all .3s var(--ease); }
.nav.is-scrolled .nav__cta { opacity: 1; transform: translateY(0); pointer-events: auto; }

@media (max-width: 860px) {
  .nav__links { display: none; }
}

/* ================= HERO ================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  color: var(--sand-50);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(180deg, rgba(26,20,18,.55) 0%, rgba(26,20,18,.85) 100%),
    url('assemts/imagens/hero.webp');
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(var(--accent-rgb),.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(59,92,58,.18) 0%, transparent 50%);
  z-index: -1;
}
@keyframes slowZoom {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.12) translateY(-10px); }
}

.hero__content {
  max-width: 860px;
  position: relative;
}
.hero .eyebrow { color: var(--sand-300); }
.hero .eyebrow::before { background: var(--sand-300); }

.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.03em;
  margin: 14px 0 28px;
  color: var(--sand-50);
  text-wrap: balance;
  font-variation-settings: "opsz" 144;
  max-width: 16ch;
}
.hero__title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
  text-shadow:
    -1px -1px 0 rgba(0, 0, 0, .7),
     1px -1px 0 rgba(0, 0, 0, .7),
    -1px  1px 0 rgba(0, 0, 0, .7),
     1px  1px 0 rgba(0, 0, 0, .7),
     0 0 24px rgba(0, 0, 0, .25);
  paint-order: stroke fill;
}

.hero__sub {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  color: var(--sand-200);
  max-width: 54ch;
  line-height: 1.5;
  margin: 0 0 40px;
  font-weight: 400;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero__proof {
  list-style: none;
  padding: 28px 0 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  font-size: .95rem;
  color: var(--sand-200);
  border-top: 1px solid rgba(255,255,255,.14);
  max-width: 640px;
  letter-spacing: -.005em;
}
.hero__proof li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.check {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--rock-900);
  font-size: .75rem;
  font-weight: 700;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 12px;
  display: grid; place-items: start center;
  padding-top: 6px;
}
.hero__scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--sand-50);
  border-radius: 2px;
  animation: scrollBob 1.8s var(--ease) infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: .2; }
}

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

.section {
  padding: clamp(70px, 10vw, 140px) 0;
  position: relative;
}

.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section__head--center .eyebrow::before { display: none; }
.section__head--center .eyebrow { justify-content: center; }

.grid { display: grid; gap: 56px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
.grid--align { align-items: center; }
.grid--faq { grid-template-columns: 1fr 1.4fr; gap: 80px; }

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

.stack { display: flex; flex-direction: column; gap: 22px; }
.stack--lg { gap: 26px; }
.stack--center { text-align: center; align-items: center; max-width: 820px; margin: 0 auto; }
.stack p { max-width: 54ch; }
.stack--center p { max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ================= IMMERSION ================= */

.section--immersion {
  background: var(--sand-100);
}

.tagline {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  color: var(--accent-2);
  margin: 8px 0 -4px;
}

.ticks {
  list-style: none;
  padding: 0; margin: 4px 0 0;
  display: grid;
  gap: 2px;
  border-top: 1px solid rgba(20,15,10,.1);
}
.ticks li {
  position: relative;
  padding: 16px 0 16px 42px;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink);
  border-bottom: 1px solid rgba(20,15,10,.1);
  font-weight: 500;
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 1px;
  background: var(--accent);
}
.ticks li::after {
  content: '';
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ================= PAIN ================= */

.section--pain {
  background-color: var(--rock-900);
  background-image:
    linear-gradient(180deg, rgba(26,20,18,.82) 0%, rgba(26,20,18,.92) 100%),
    url('assemts/imagens/Canions%20do%20viana/WhatsApp%20Image%202026-04-23%20at%2020.37.24.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--sand-100);
}
@media (max-width: 860px) {
  .section--pain { background-attachment: scroll; }
}
.section--pain .h2 { color: var(--sand-50); }
.section--pain .h2 em { color: var(--accent); }
.section--pain .eyebrow { color: var(--accent); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pain-card {
  background: rgba(15, 10, 8, .78);
  backdrop-filter: blur(6px);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 220px;
  transition: background .4s var(--ease);
}
.pain-card:hover { background: rgba(43, 35, 32, .85); }
.pain-card__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--accent);
  opacity: .85;
  font-style: italic;
  letter-spacing: -.02em;
  line-height: 1;
  font-variation-settings: "opsz" 72;
}
.pain-card p {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.4;
  color: var(--sand-100);
  font-weight: 400;
  letter-spacing: -.005em;
  max-width: 22ch;
}

.pain__result {
  text-align: center;
  margin-top: 64px;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-style: italic;
  color: var(--sand-200);
  line-height: 1.35;
  letter-spacing: -.01em;
  font-weight: 400;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}
.pain__result span {
  color: var(--accent);
  margin-right: 10px;
  font-style: normal;
  font-weight: 500;
}

/* ================= SOLUTION ================= */

.section--solution {
  background: var(--sand-50);
}

.feature-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 4px;
}
.feature-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid rgba(20,15,10,.1);
  align-items: start;
  transition: padding-left .35s var(--ease);
}
.feature-list li:hover { padding-left: 8px; }
.feature-list li:last-child { border-bottom: 1px solid rgba(20,15,10,.1); }
.feature-list h3 {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: -.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.5;
  max-width: 42ch;
}
.feature-list__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sand-100);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  border: 1px solid var(--sand-200);
  transition: background .35s var(--ease), color .35s var(--ease);
}
.feature-list li:hover .feature-list__icon {
  background: var(--accent);
  color: var(--rock-900);
  border-color: var(--accent);
}

/* ================= DIFFERENCE ================= */

.section--diff {
  background: var(--sand-100);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.diff-card {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.diff-card__num {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--accent-2);
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 96;
}
.diff-card h3 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -.015em;
  line-height: 1.25;
}
.diff-card p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
  text-wrap: pretty;
}

/* ================= PLACES ================= */

.section--places {
  background: var(--sand-50);
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}
@media (max-width: 900px) {
  .places-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
}
@media (max-width: 560px) {
  .places-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
}

.place {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--rock-900);
  cursor: pointer;
}
.place--tall { grid-row: span 2; }
@media (max-width: 560px) {
  .place--tall { grid-row: span 1; }
}

.place__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--rock-900);
}
.place__slides::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,20,18,0) 40%, rgba(26,20,18,.88) 100%);
  z-index: 3;
  pointer-events: none;
}

.place__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s var(--ease), transform 8s linear;
  transform: scale(1.04);
  z-index: 1;
}
.place__slide.is-active {
  opacity: 1;
  z-index: 2;
  transform: scale(1.08);
}
.place:hover .place__slide.is-active {
  transform: scale(1.12);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
}

/* durante o arrasto manual — resposta instantânea, sem transição */
.place.is-dragging .place__slide.is-active {
  transition: none;
}
.place.is-dragging .place__slides { cursor: grabbing; }
.place.is-dragging,
.place.is-dragging * { user-select: none; }

/* dica visual de swipe no primeiro hover (desktop) */
.place__slides { user-select: none; -webkit-user-drag: none; }
.place__slide { -webkit-user-drag: none; pointer-events: none; }

/* Imagem estática (cards sem slideshow) */
.place__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease);
}
.place:hover .place__img { transform: scale(1.1); }
.place__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--rock-900);
}
.place__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,20,18,0) 40%, rgba(26,20,18,.88) 100%);
  z-index: 3;
  pointer-events: none;
}

/* dots indicator */
.place__dots {
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 6px;
  pointer-events: none;
}
.place__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background .3s var(--ease), width .3s var(--ease);
}
.place__dot.is-active {
  background: var(--accent);
  width: 16px;
  border-radius: 3px;
}

.place__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  color: #ffffff;
  z-index: 5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}
.place__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--accent);
  padding: 6px 11px;
  border-radius: 999px;
  margin-bottom: 10px;
  line-height: 1;
  text-shadow: none;
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), .45);
}
.place__body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -.02em;
  line-height: 1.15;
  font-variation-settings: "opsz" 72;
  color: #ffffff;
}
.place__body p {
  margin: 0;
  font-size: .95rem;
  color: #f4f1ea;
  opacity: 1;
  letter-spacing: .005em;
  line-height: 1.5;
  font-weight: 400;
}
.place__body p strong { color: #ffffff; font-weight: 600; }
.place__body p em {
  color: #f0a373;
  font-style: italic;
  font-weight: 500;
}

/* Places note — logística/resumo abaixo do grid */
.places-note {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand-200);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 860px) {
  .places-note { grid-template-columns: 1fr; margin-top: 28px; }
}
.places-note__item {
  background: var(--sand-50);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.45;
}
.places-note__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

/* Museus */
.museums {
  margin: 56px 0 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.museums__title {
  text-align: center;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}
.museums__title span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: .02em;
  color: var(--muted);
  opacity: .8;
  font-style: italic;
  font-family: var(--font-display);
  font-size: .9rem;
}
.museums__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 700px) { .museums__grid { grid-template-columns: 1fr; } }
.museum {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.museum:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.museum__price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
  flex-shrink: 0;
  min-width: 72px;
  font-variation-settings: "opsz" 96;
}
.museum__price span {
  font-size: .5em;
  color: var(--accent-2);
  margin-right: 4px;
  vertical-align: super;
  font-variation-settings: "opsz" 14;
}
.museum h4 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 4px;
  color: var(--ink);
}
.museum p {
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.45;
}
.museum p strong { color: var(--accent-2); font-weight: 600; }

/* Nota de meia-entrada */
.museums__note {
  margin: 20px 0 0;
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  background: rgba(var(--accent-rgb), .08);
  border: 1px dashed rgba(var(--accent-rgb), .35);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.museums__note strong {
  color: var(--accent-2);
  font-style: normal;
  font-weight: 700;
}

/* ================= TRANSFER AEROPORTOS ================= */
.transfers {
  margin: 56px auto 0;
  max-width: 900px;
}
.transfers__title {
  text-align: center;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
}
.transfers__title span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: .02em;
  color: var(--muted);
  opacity: .8;
  font-style: italic;
  font-family: var(--font-display);
  font-size: .9rem;
}
.transfers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 700px) { .transfers__grid { grid-template-columns: 1fr; } }
.transfer {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.transfer:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.transfer__icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(var(--accent-rgb), .12);
  color: var(--accent-2);
  border-radius: 50%;
}
.transfer h4 {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 4px;
  color: var(--ink);
}
.transfer p {
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.45;
}

/* separador no diff card "4×4 / 4×2" */
.diff-card__num-sep {
  margin: 0 .05em;
  opacity: .55;
  font-weight: 300;
}

/* ================= INCLUDED ================= */

.section--included {
  background: var(--rock-900);
  color: var(--sand-100);
}
.section--included .h2 { color: var(--sand-50); }
.section--included .h2 em { color: var(--accent); }
.section--included .lead { color: var(--sand-200); }
.section--included .eyebrow { color: var(--accent); }
.section--included .eyebrow::before { background: var(--accent); }

.included-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 640px) { .included-list { grid-template-columns: 1fr; } }

.included-list li {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 1.08rem;
  color: var(--sand-100);
  letter-spacing: -.005em;
  font-weight: 400;
  transition: color .3s var(--ease);
}
.included-list li:hover { color: var(--sand-50); }
.included-list li span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 1rem;
  min-width: 28px;
  letter-spacing: 0;
  font-variation-settings: "opsz" 14;
}

/* ================= INVESTMENT ================= */

.section--invest {
  background: var(--sand-100);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.price-card--featured {
  background: var(--rock-900);
  color: var(--sand-50);
  border-color: var(--rock-900);
  transform: translateY(-12px);
}
.price-card--featured:hover { transform: translateY(-18px); }

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: var(--rock-900);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-card h3 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  margin: 0 0 20px;
}
.price-card--featured h3 { color: var(--sand-300); }

.price-card__from {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  font-style: italic;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 14;
}
.price-card--featured .price-card__from { color: var(--sand-300); }

.price-card__value {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.2vw, 4.2rem);
  font-weight: 500;
  line-height: .95;
  margin: 10px 0 22px;
  letter-spacing: -.035em;
  font-variation-settings: "opsz" 144;
}
.price-card__value .currency {
  font-size: .38em;
  font-weight: 500;
  vertical-align: super;
  margin-right: 8px;
  color: var(--accent-2);
  letter-spacing: 0;
  font-variation-settings: "opsz" 14;
}
.price-card--featured .price-card__value .currency { color: var(--accent); }

.price-card__desc {
  color: var(--muted);
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  text-wrap: pretty;
  max-width: 32ch;
}
.price-card--featured .price-card__desc { color: var(--sand-200); }

.payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
}
.payment__tags { display: flex; gap: 10px; }
.payment__tags span {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  font-weight: 500;
  color: var(--ink);
  font-size: .88rem;
  letter-spacing: 0;
  text-transform: none;
}

/* ================= URGENCY ================= */

.section--urgency { background: var(--sand-50); }

.urgency__box {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  background: linear-gradient(135deg, var(--sand-100) 0%, var(--sand-200) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sand-200);
}
.urgency__box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: .15;
}
@media (max-width: 700px) {
  .urgency__box { grid-template-columns: 1fr; padding: 40px 28px; gap: 20px; }
}
.urgency__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--rock-900);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 600;
}
.urgency__box .lead { max-width: 52ch; margin: 14px 0 0; }
.urgency__box p { max-width: 52ch; margin-top: 14px; color: var(--muted); }
.urgency__box .h2 { max-width: 20ch; }
.urgency__box .btn { margin-top: 28px; }

/* centered variant */
.urgency__box--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding: 64px 48px;
}
.urgency__box--center .urgency__icon { margin-bottom: 8px; }
.urgency__box--center .urgency__text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.urgency__box--center .eyebrow { justify-content: center; }
.urgency__box--center .h2 { max-width: 22ch; }
.urgency__box--center .lead,
.urgency__box--center p { margin-left: auto; margin-right: auto; }

/* ================= TRANSFORM ================= */

.section--transform {
  background: var(--sand-100);
  position: relative;
  overflow: hidden;
}
.section--transform::before,
.section--transform::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .2;
  z-index: 0;
}
.section--transform::before { background: var(--accent); top: -100px; left: -100px; }
.section--transform::after  { background: var(--leaf);   bottom: -100px; right: -100px; }
.section--transform .container { position: relative; z-index: 1; }

/* ================= CTA FINAL ================= */

.section--cta {
  background: var(--rock-900);
  color: var(--sand-50);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb),.2) 0%, transparent 60%);
  z-index: -1;
}

.cta-final {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-final .eyebrow { color: var(--accent); justify-content: center; }
.cta-final .eyebrow::before { background: var(--accent); }
.cta-final .h2 { color: var(--sand-50); }
.cta-final .h2 em { color: var(--accent); }
.cta-final .lead { color: var(--sand-200); margin: 20px auto 40px; }
.cta-final .btn { margin-top: 8px; }
.cta-final .btn--primary {
  background: var(--accent);
  color: var(--rock-900);
}
.cta-final .btn--primary:hover { background: var(--accent-2); color: var(--sand-50); }

.cta-final__note {
  margin-top: 20px;
  font-size: .88rem;
  color: var(--sand-300);
  letter-spacing: .05em;
}

/* ================= FAQ ================= */

.section--faq { background: var(--sand-50); }

.faq {
  display: grid;
  gap: 0;
}
.faq__item {
  border-top: 1px solid rgba(20,15,10,.12);
  padding: 6px 0;
}
.faq__item:last-child { border-bottom: 1px solid rgba(20,15,10,.12); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.3;
  list-style: none;
  transition: color .3s var(--ease);
  font-variation-settings: "opsz" 48;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent-2); }

.faq__toggle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--sand-100);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 400;
  font-family: var(--font-body);
  flex-shrink: 0;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faq__item[open] .faq__toggle {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--rock-900);
}

.faq__item p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 60ch;
  animation: faqIn .4s var(--ease);
  padding-right: 54px;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================= FOOTER ================= */

.footer {
  background: var(--rock-900);
  color: var(--sand-200);
  padding: 80px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

.footer__brand p {
  margin: 16px 0 0;
  max-width: 40ch;
  color: var(--sand-300);
  font-size: .95rem;
  line-height: 1.6;
}
.nav__logo--footer { color: var(--sand-50); }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--sand-300);
  margin: 0 0 18px;
}
.footer__col a,
.footer__col span {
  display: block;
  font-size: .95rem;
  color: var(--sand-200);
  margin-bottom: 10px;
  transition: color .3s var(--ease);
}
.footer__col a:hover { color: var(--accent); }

.footer__legal {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--sand-300);
  flex-wrap: wrap;
  gap: 12px;
}

/* ================= FLOATING CTA ================= */

/* stack dos dois botões flutuantes */
.float-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}

.float-cta {
  width: 58px; height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(214,41,118,.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: pulse 2.6s var(--ease) infinite;
}
.float-cta--ig:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 20px 40px rgba(214,41,118,.55);
}
.float-cta--wa {
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(37,211,102,.35);
}
.float-cta--wa:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(37,211,102,.5);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.5); }
  50%      { box-shadow: 0 14px 30px rgba(37,211,102,.35), 0 0 0 14px rgba(37,211,102,0); }
}

/* ================= REVEAL ANIMATIONS ================= */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; }
  .float-cta { animation: none; }
  .hero__scroll span { animation: none; }
}

/* ================================================================
   MOBILE BURGER + MENU
   ================================================================ */

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav__burger span {
  display: block;
  position: absolute;
  left: 50%;
  width: 20px;
  height: 1.6px;
  background: var(--sand-50);
  transform: translateX(-50%);
  transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease), background .3s var(--ease);
  border-radius: 2px;
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 27px; }

.nav.is-scrolled .nav__burger {
  border-color: rgba(20,15,10,.15);
}
.nav.is-scrolled .nav__burger span { background: var(--ink); }

body.menu-open .nav__burger span:nth-child(1) { top: 21px; transform: translateX(-50%) rotate(45deg); background: var(--ink); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { top: 21px; transform: translateX(-50%) rotate(-45deg); background: var(--ink); }
body.menu-open .nav__burger { border-color: rgba(20,15,10,.15); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--sand-50);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility 0s linear .45s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  overflow-y: auto;
}
body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity .45s var(--ease), visibility 0s linear 0s;
}
body.menu-open { overflow: hidden; }

.mobile-menu__inner {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(20,15,10,.1);
}
.mobile-menu__links a {
  padding: 22px 0;
  border-bottom: 1px solid rgba(20,15,10,.1);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.mobile-menu__links a::after {
  content: '→';
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.mobile-menu__links a:hover,
.mobile-menu__links a:active {
  color: var(--accent-2);
  padding-left: 8px;
}
.mobile-menu__links a:hover::after,
.mobile-menu__links a:active::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu__cta {
  width: 100%;
  padding: 18px;
  font-size: 1rem;
}
.mobile-menu__wa {
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.mobile-menu__wa:hover { color: var(--accent-2); }

/* ================================================================
   MOBILE RESPONSIVE (<=860px)
   ================================================================ */

@media (max-width: 860px) {
  html { scroll-padding-top: 70px; }

  :root {
    --gutter: 20px;
  }

  body { font-size: 16px; line-height: 1.6; }

  /* nav */
  .nav { padding: 14px 0; }
  .nav.is-scrolled { padding: 10px 0; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__logo { font-size: 1.15rem; }
  .nav__logo-mark { width: 32px; height: 32px; font-size: .8rem; }

  /* section paddings */
  .section { padding: 72px 0; }
  .section__head { margin-bottom: 40px; }

  /* typography */
  .h2 { font-size: clamp(1.75rem, 8vw, 2.4rem); line-height: 1.1; }
  .h2--xl { font-size: clamp(2rem, 9vw, 2.8rem); line-height: 1.05; }
  .lead { font-size: 1.05rem; line-height: 1.55; }
  .eyebrow { font-size: .7rem; margin-bottom: 16px; }
  .eyebrow::before { width: 22px; }

  /* hero */
  .hero {
    min-height: 100svh;
    padding: 120px 0 90px;
  }
  .hero__bg {
    background-attachment: scroll;
  }
  .hero__title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    line-height: 1;
    margin: 8px 0 20px;
    max-width: none;
  }
  .hero__sub {
    font-size: 1.02rem;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: none;
  }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 32px; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; padding: 16px 20px; }
  .hero__proof {
    flex-direction: column;
    gap: 12px;
    padding-top: 22px;
    font-size: .9rem;
  }
  .hero__proof li { font-size: .92rem; }
  .hero__scroll { display: none; }

  /* grids collapse */
  .grid--2, .grid--faq { grid-template-columns: 1fr; gap: 36px; }

  /* ticks */
  .ticks li { padding: 14px 0 14px 40px; font-size: .98rem; }

  /* pain */
  .section--pain { background-attachment: scroll; }
  .pain-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .pain-card {
    padding: 28px 24px;
    min-height: 0;
    gap: 14px;
    flex-direction: row;
    align-items: flex-start;
  }
  .pain-card__num { font-size: 1.3rem; flex-shrink: 0; min-width: 36px; }
  .pain-card p { font-size: 1rem; line-height: 1.4; max-width: none; }
  .pain__result {
    margin-top: 40px;
    font-size: 1.2rem;
    line-height: 1.4;
    padding: 0 8px;
  }

  /* solution / feature list */
  .feature-list li {
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 20px 0;
  }
  .feature-list li:hover { padding-left: 0; }
  .feature-list__icon { width: 36px; height: 36px; font-size: 1rem; }
  .feature-list h3 { font-size: 1.08rem; margin-bottom: 4px; }
  .feature-list p { font-size: .94rem; }

  /* diff grid */
  .diff-grid { grid-template-columns: 1fr; gap: 14px; }
  .diff-card { padding: 28px 24px; }
  .diff-card__num { font-size: 2rem; margin-bottom: 14px; }
  .diff-card h3 { font-size: 1.15rem; }
  .diff-card p { font-size: .94rem; }

  /* places */
  .places-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
    gap: 14px;
  }
  .place--tall { grid-row: span 1; }
  .place__body { padding: 22px; }
  .place__body h3 { font-size: 1.2rem; }
  .place__body p { font-size: .88rem; }

  /* included */
  .included-list { grid-template-columns: 1fr; }
  .included-list li {
    padding: 18px 0;
    font-size: 1rem;
    gap: 16px;
  }

  /* invest */
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card { padding: 32px 26px; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
  .price-card__value { font-size: 3rem; margin: 6px 0 16px; }
  .price-card__badge { left: 50%; transform: translateX(-50%); white-space: nowrap; }
  .payment {
    flex-direction: column;
    gap: 14px;
    font-size: .78rem;
  }

  /* urgency */
  .urgency__box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
    gap: 18px;
    border-radius: 16px;
  }
  .urgency__icon { width: 56px; height: 56px; font-size: 1.7rem; }
  .urgency__box .btn { width: 100%; justify-content: center; }
  .urgency__box .h2 { max-width: none; }

  /* transform */
  .section--transform::before,
  .section--transform::after { width: 260px; height: 260px; filter: blur(60px); }

  /* cta final */
  .cta-final .lead { margin: 18px auto 32px; }
  .cta-final .btn {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1rem;
  }

  /* faq */
  .faq__item summary {
    padding: 22px 0;
    font-size: 1.1rem;
    gap: 16px;
  }
  .faq__toggle { width: 30px; height: 30px; font-size: 1.15rem; }
  .faq__item p {
    font-size: .96rem;
    padding-right: 0;
    margin-bottom: 22px;
  }

  /* footer */
  .footer { padding: 60px 0 24px; }
  .footer__inner { padding-bottom: 40px; gap: 28px; }
  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: .78rem;
  }

  /* floating stack — menor no mobile */
  .float-stack {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }
  .float-cta {
    width: 52px;
    height: 52px;
  }
  .float-cta svg { width: 22px; height: 22px; }

  /* buttons global — min 44px touch target */
  .btn { min-height: 44px; }

  /* disable heavy hover animations on touch */
  .diff-card:hover,
  .price-card:hover,
  .place:hover .place__img,
  .feature-list li:hover {
    transform: none;
  }
}

/* ================================================================
   SMALL PHONES (<=480px)
   ================================================================ */

@media (max-width: 480px) {
  :root { --gutter: 18px; }

  .section { padding: 60px 0; }

  .hero { padding: 110px 0 80px; }
  .hero__title { font-size: clamp(2rem, 10.5vw, 2.8rem); }
  .hero__sub { font-size: .98rem; }

  .h2 { font-size: clamp(1.6rem, 7.5vw, 2rem); }
  .h2--xl { font-size: clamp(1.85rem, 9vw, 2.4rem); }
  .lead { font-size: 1rem; }

  .pain-card { padding: 24px 20px; }
  .pain-card p { font-size: .96rem; }

  .mobile-menu__links a { font-size: 1.5rem; padding: 18px 0; }
  .mobile-menu__inner { gap: 28px; }

  .urgency__box { padding: 28px 20px; }

  .price-card__value { font-size: 2.7rem; }

  .float-cta {
    width: 48px;
    height: 48px;
  }
  .float-cta svg { width: 20px; height: 20px; }

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

/* ================================================================
   TOUCH DEVICES (no hover)
   ================================================================ */

@media (hover: none) and (pointer: coarse) {
  .diff-card:hover,
  .price-card:hover,
  .feature-list li:hover,
  .pain-card:hover,
  .place:hover .place__img { transform: none; }
  .btn--primary:hover { transform: none; }
}

/* ================================================================
   OSMAR ROCHA — IDENTIDADE VISUAL PRÓPRIA (v2)
   Design: editorial / scholarly — distinto do Theo
   ================================================================ */

/* ── GLOBAL RESETS para o tema ── */
.osmar-theme .btn { border-radius: 6px; letter-spacing: .06em; text-transform: uppercase; font-size: .85rem; }
.osmar-theme .btn--sm  { padding: 9px 16px; font-size: .78rem; }
.osmar-theme .btn--lg  { padding: 15px 26px; font-size: .88rem; }
.osmar-theme .btn--xl  { padding: 18px 32px; font-size: .92rem; }
.osmar-theme .btn--primary { background: var(--accent); color: #fff; }
.osmar-theme .btn--primary:hover { background: var(--accent-2); }
.osmar-theme .btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.osmar-theme .btn--outline:hover { background: var(--ink); color: var(--sand-50); }
.osmar-theme .btn--outline-light {
  background: transparent;
  color: var(--sand-50);
  border: 1.5px solid rgba(255,255,255,.55);
}
.osmar-theme .btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--sand-50);
}

/* ── TOP BAR ── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 30px;
  background: var(--accent-2);
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.top-bar span { padding: 0 20px; }
.top-bar span + span {
  border-left: 1px solid rgba(255,255,255,.2);
}
@media (max-width: 600px) {
  .top-bar span:not(:first-child) { display: none; }
  .top-bar span { border: none; }
}

/* ── NAV CENTRADA ── */
.nav--centered {
  top: 32px;
  background: var(--rock-900);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 14px 0;
}
.nav--centered.is-scrolled {
  background: var(--rock-900);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  padding: 10px 0;
}
.nav__inner--centered {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.nav__links--left  { display: flex; gap: 24px; justify-content: flex-start; align-items: center; }
.nav__links--right { display: flex; gap: 24px; justify-content: flex-end; align-items: center; }
.nav--centered .nav__links a {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .3s var(--ease);
  white-space: nowrap;
}
.nav--centered .nav__links a:hover { color: var(--sand-50); }

.nav__logo--text {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sand-50);
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 48;
  padding: 0 28px;
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.1);
}
.nav__logo--text em { color: var(--accent); font-style: italic; }

.nav__logo--img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.1);
}
.nav__logo--img .nav__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

/* CTA visível no desktop como link discreto */
.nav--centered .nav__cta {
  display: flex;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), .4);
  padding: 7px 14px;
  border-radius: 4px;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}
.nav--centered .nav__cta:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.nav--centered.is-scrolled .nav__cta { display: flex; }

@media (max-width: 860px) {
  .nav__inner--centered {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav__links--left, .nav__links--right { display: none; }
  .nav__logo--text { border: none; padding: 0; }
  .nav__logo--img { border: none; padding: 0; }
  .nav__logo--img .nav__logo-img { height: 44px; padding: 5px; }
  .nav__burger { position: absolute; right: 0; }
}

/* ── HERO TIPOGRÁFICO ── */
.hero--type {
  min-height: 100vh;
  background: var(--rock-900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 16vh, 180px) var(--gutter) clamp(80px, 10vh, 120px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* imagem de fundo */
.hero--type .hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  filter: brightness(.45) saturate(.8);
}
/* overlay escuro sobre a imagem */
.hero--type::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,20,18,.35) 0%,
    rgba(26,20,18,.55) 60%,
    rgba(26,20,18,.80) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero__type-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero__type-kicker {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 28px;
}
.hero__type-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.025em;
  color: var(--sand-50);
  margin: 0 0 36px;
  font-variation-settings: "opsz" 72;
  max-width: 22ch;
  text-wrap: balance;
}
.hero__type-title em {
  color: var(--accent);
  font-style: italic;
  display: inline;
  font-size: inherit;
}
.hero__type-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 48px;
  max-width: 640px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  overflow: hidden;
}
.hero__type-stat {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.hero__type-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 96;
}
.hero__type-stat-label {
  font-size: .72rem;
  font-weight: 500;
  color: var(--sand-300);
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.4;
  text-align: center;
}
.hero__type-stat-label strong { color: var(--sand-100); font-weight: 600; }
.hero__type-sep {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}
.hero__type-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-width: 52ch;
  margin: 0 auto 28px;
}
.hero__type-sub strong { color: #fff; font-weight: 600; }

.hero__type-proof {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.hero__type-proof li {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__type-check {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.hero__type-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .hero__type-meta { flex-direction: column; }
  .hero__type-sep { width: 100%; height: 1px; align-self: auto; }
  .hero__type-stat { padding: 16px 20px; }
  .hero__type-title { font-size: clamp(2.4rem, 10vw, 4rem); margin-bottom: 36px; }
}

/* ── LABEL OSMAR (substitui eyebrow) ── */
.label-o {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  display: block;
}
.label-o--light { color: rgba(255,255,255,.55); }

/* ── AUTORIDADE ── */
.section--authority-o {
  background: var(--sand-50);
  border-top: 3px solid var(--accent);
}
.authority-o__header { margin-bottom: 64px; text-align: center; }
.authority-o__title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.authority-o__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 800px) {
  .authority-o__grid { grid-template-columns: 1fr; gap: 40px; }
}
.check-list {
  list-style: none;
  padding: 0; margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  padding-left: 24px;
  position: relative;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.5;
}
.check-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.check-list li strong { color: var(--ink); }
.authority-o__quote {
  margin: 0;
  padding: 40px 40px 40px 36px;
  border-left: 4px solid var(--accent);
  background: var(--sand-100);
  border-radius: 0 12px 12px 0;
}
.authority-o__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 20px;
  font-variation-settings: "opsz" 72;
}
.authority-o__quote p em { color: var(--accent-2); font-style: italic; }
.authority-o__quote cite {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ── FUNDO BARRO COM IMAGEM ── */
.section--barro {
  background: var(--accent);
  color: var(--sand-50);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* imagem de fundo */
.section__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: brightness(.35) saturate(.7);
}
/* overlay barro sobre a imagem */
.section--barro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--accent-rgb), .55);
  z-index: 1;
  pointer-events: none;
}
/* conteúdo acima da imagem e overlay */
.section--barro > .container {
  position: relative;
  z-index: 2;
}
.section--barro .label-o--light { color: rgba(255,255,255,.7); }
.h2--light { color: #fff; }
.h2--light em { color: rgba(255,255,255,.75); }

.exp-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
@media (max-width: 700px) { .exp-panels { grid-template-columns: 1fr; } }
.exp-panel {
  background: rgba(0,0,0,.15);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s var(--ease);
}
.exp-panel:hover { background: rgba(0,0,0,.25); }
.exp-panel__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(255,255,255,.25);
  line-height: 1;
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 96;
}
.exp-panel h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  font-variation-settings: "opsz" 48;
}
.exp-panel p { font-size: .9rem; color: rgba(255,255,255,.75); margin: 0; line-height: 1.55; }

/* ── DOR ── */
.section--dor-o { background: var(--sand-100); }
.dor-o__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 800px) { .dor-o__inner { grid-template-columns: 1fr; gap: 40px; } }
.dor-o__list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--sand-200);
}
.dor-o__list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--sand-200);
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: padding-left .3s var(--ease), color .3s var(--ease);
}
.dor-o__list li::before {
  content: '×';
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform .3s var(--ease);
}
.dor-o__list li:hover { padding-left: 8px; color: var(--accent-2); }
.dor-o__list li:hover::before { transform: rotate(90deg); }
.dor-o__list li em { font-style: italic; color: var(--accent-2); }

/* ── FUNDO BARRO CLARO COM IMAGEM ── */
.section--barro-light {
  background: var(--rock-900);
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.section--barro-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,20,18,.80) 0%,
    rgba(26,20,18,.68) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.section--barro-light > .container {
  position: relative;
  z-index: 2;
}
.section--barro-light > .container > .label-o { text-align: center; color: var(--accent); }
.section--barro-light > .container > .h2 { text-align: center; color: #fff; }
.section--barro-light > .container > .h2 em { color: #f0a373; }

/* ── DIFERENCIAL ── */
.diff-o {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.diff-o__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: center;
  transition: background .2s var(--ease);
}
.diff-o__item:hover { background: rgba(255,255,255,.04); }
.diff-o__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  opacity: .45;
  letter-spacing: -.04em;
  line-height: 1;
  font-variation-settings: "opsz" 72;
  transition: opacity .3s var(--ease);
}
.diff-o__item:hover .diff-o__num { opacity: 1; }
.diff-o__body { text-align: center; }
.diff-o__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 48;
}
.diff-o__body p { font-size: .9rem; color: rgba(255,255,255,.65); margin: 0; line-height: 1.55; max-width: 52ch; margin-left: auto; margin-right: auto; }
@media (max-width: 600px) {
  .diff-o__item { padding: 28px 0; gap: 8px; }
  .diff-o__num { font-size: 1.6rem; }
}

/* ── BOTÃO VER ROTEIROS ── */
.roteiros-cta {
  display: flex;
  justify-content: center;
  padding: 48px var(--gutter) 64px;
  background: var(--rock-900);
}
.roteiros-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .08em;
}

/* ── MODAL ROTEIROS ── */
.roteiros-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.roteiros-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}
.roteiros-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,7,6,.85);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.roteiros-modal__box {
  position: relative;
  background: var(--sand-50);
  border-radius: 16px;
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 48px;
  transform: translateY(24px) scale(.97);
  transition: transform .35s var(--ease);
}
.roteiros-modal.is-open .roteiros-modal__box {
  transform: translateY(0) scale(1);
}
.roteiros-modal__close {
  position: sticky;
  top: 0;
  float: right;
  margin: -16px -16px 0 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  z-index: 10;
}
.roteiros-modal__close:hover { background: var(--sand-200); }

/* Header do modal */
.roteiros-modal__header { text-align: center; margin-bottom: 40px; }
.roteiros-modal__sub { color: var(--muted); font-size: .95rem; margin: 8px 0 0; }

/* Grid de cards */
.roteiros-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .roteiros-cards { grid-template-columns: 1fr; }
  .roteiros-modal__box { padding: 28px 20px; }
}

.roteiro-card {
  text-align: left;
  background: #fff;
  border: 1.5px solid var(--sand-200);
  border-radius: 12px;
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .2s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.roteiro-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb),.15);
  transform: translateY(-3px);
}
.roteiro-card__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}
.roteiro-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 48;
}
.roteiro-card p { font-size: .88rem; color: var(--muted); line-height: 1.55; margin: 0; }
.roteiro-card__cta { font-size: .82rem; font-weight: 600; color: var(--accent); margin-top: 4px; }

/* Detalhe do roteiro */
.roteiros-modal__detail { display: none; }
.roteiros-modal__detail.is-active { display: block; }
.roteiros-modal__back {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 32px;
  transition: opacity .2s;
}
.roteiros-modal__back:hover { opacity: .7; }

/* Conteúdo do roteiro */
.roteiro-detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.025em;
  margin: 0 0 8px;
  font-variation-settings: "opsz" 72;
}
.roteiro-detail__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.roteiro-day {
  border-top: 1px solid var(--sand-200);
  padding: 24px 0;
}
.roteiro-day:last-of-type { border-bottom: 1px solid var(--sand-200); }
.roteiro-day__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.roteiro-day__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 10px;
  font-variation-settings: "opsz" 48;
}
.roteiro-period { margin-bottom: 16px; }
.roteiro-period__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
  display: block;
}
.roteiro-period__activities {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.roteiro-period__activities li {
  font-size: .88rem;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.roteiro-period__activities li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.roteiros-modal__detail-cta {
  display: flex;
  justify-content: center;
  padding: 40px 0 8px;
}

/* ── LUGARES — lista ── */
.section--places-o {
  background: var(--rock-900);
  padding-bottom: 0;
}
.section--places-o .container { padding-bottom: 48px; text-align: center; }
.section--places-o .label-o--light { color: rgba(255,255,255,.5); }

.place-list-o {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.place-o {
  display: grid;
  grid-template-columns: 280px 1fr;
  height: 200px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transition: height .4s var(--ease);
  position: relative;
}
.place-o:hover { height: 240px; }
.place-o__slides {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--rock-800);
}
/* Para cards com slideshow — o .place__slides ocupa 100% do container */
.place-o__slides .place__slides {
  position: absolute;
  inset: 0;
}
/* Para cards com imagem estática */
.place-o__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.place-o__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s linear;
  transform: scale(1.04);
}
.place-o:hover .place-o__img-wrap img { transform: scale(1.1); transition: transform 1.4s var(--ease); }

.place-o__body {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 40px;
  color: var(--sand-100);
  background: rgba(26,20,18,.6);
  transition: background .3s var(--ease);
  backdrop-filter: blur(0px);
}
.place-o:hover .place-o__body { background: rgba(26,20,18,.75); }
.place-o__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--accent);
  opacity: .3;
  flex-shrink: 0;
  line-height: 1;
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 96;
  transition: opacity .3s var(--ease);
}
.place-o:hover .place-o__num { opacity: .7; }
.place-o__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 48;
}
.place-o__body p {
  font-size: .88rem;
  color: var(--sand-300);
  margin: 0;
  line-height: 1.5;
}
.place-o__body p em { color: #f0a373; font-style: italic; }
.place-o__tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 4px 9px;
  border-radius: 2px;
  margin-bottom: 8px;
}
@media (max-width: 760px) {
  .place-o {
    grid-template-columns: 140px 1fr;
    height: 160px;
  }
  .place-o:hover { height: 190px; }
  .place-o__body { padding: 20px 24px; gap: 16px; }
  .place-o__num { font-size: 2.4rem; }
  .place-o__body h3 { font-size: 1.05rem; }
}
@media (max-width: 500px) {
  .place-o { grid-template-columns: 100px 1fr; height: 150px; }
  .place-o__body { padding: 16px 18px; gap: 12px; }
  .place-o__num { font-size: 1.8rem; }
}

/* ── TRANSFORMAÇÃO ── */
.section--transform-o {
  background: var(--accent-2);
  padding: clamp(90px, 14vw, 180px) 0;
  text-align: center;
}
.transform-o { max-width: 700px; margin-left: auto; margin-right: auto; }
.transform-o__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
  color: #fff;
  margin: 20px 0 28px;
  font-variation-settings: "opsz" 144;
}
.transform-o__title em { color: #f5c9a0; font-style: italic; }
.transform-o__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  margin: 0 0 36px;
}
.transform-o__sub strong { color: #fff; }

/* ── INCLUSO ── */
.section--incluso-o {
  background: var(--sand-50);
  border-top: 3px solid var(--accent);
}
.incluso-o__header { margin-bottom: 48px; text-align: center; }
.incluso-o__header .h2 { max-width: 30ch; margin-left: auto; margin-right: auto; }
.incluso-o__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--sand-200);
}
.incluso-o__list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sand-200);
  font-size: 1rem;
  color: var(--ink);
}
.incluso-o__num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  opacity: .5;
  min-width: 28px;
  font-variation-settings: "opsz" 48;
}

/* ── INVESTIMENTO ── */
.section--invest-o {
  background: var(--rock-900);
  color: var(--sand-50);
}
.invest-o__header { margin-bottom: 48px; text-align: center; }
.invest-o__header .label-o { color: var(--accent); }
.invest-o__header .h2 { color: #fff; max-width: 30ch; margin-left: auto; margin-right: auto; }
.invest-o__header .h2 em { color: #f0a373; }

.invest-o__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .invest-o__grid { grid-template-columns: 1fr; }
}
.invest-o__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: border-color .3s var(--ease);
}
.invest-o__card:hover { border-color: rgba(var(--accent-rgb),.5); }
.invest-o__card--featured {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb),.1);
}
.invest-o__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.invest-o__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 8px;
}
.invest-o__from {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}
.invest-o__value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  margin: 4px 0 12px;
  font-variation-settings: "opsz" 72;
  line-height: 1;
}
.invest-o__value span { font-size: 1.2rem; opacity: .6; margin-right: 2px; }
.invest-o__desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.55; margin: 0; }

.invest-o__section-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}
.invest-o__section-title span {
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.4);
  letter-spacing: 0;
  text-transform: none;
  font-size: .8rem;
}

/* Transfer */
.invest-o__transfers { margin-bottom: 48px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 40px; }
.invest-o__transfer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .invest-o__transfer-grid { grid-template-columns: 1fr; } }
.invest-o__transfer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 20px;
}
.invest-o__transfer svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.invest-o__transfer h4 { font-size: .95rem; font-weight: 600; color: #fff; margin: 0 0 4px; }
.invest-o__transfer p { font-size: .83rem; color: rgba(255,255,255,.55); margin: 0; }

/* Museus */
.invest-o__museus { margin-bottom: 48px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 40px; }
.invest-o__museu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 600px) { .invest-o__museu-grid { grid-template-columns: 1fr; } }
.invest-o__museu {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 20px;
}
.invest-o__museu-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
  font-variation-settings: "opsz" 72;
}
.invest-o__museu-price span { font-size: .9rem; opacity: .7; }
.invest-o__museu h4 { font-size: .92rem; font-weight: 600; color: #fff; margin: 0 0 4px; }
.invest-o__museu p { font-size: .82rem; color: rgba(255,255,255,.55); margin: 0; line-height: 1.45; }
.invest-o__museu p em { color: #f0a373; font-style: italic; }
.invest-o__meia {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}
.invest-o__meia strong { color: #f0a373; }

/* Pagamento */
.invest-o__pagamento { border-top: 1px solid rgba(255,255,255,.08); padding-top: 40px; text-align: center; }
.invest-o__pagamento-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.invest-o__pagamento-tags span {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 40px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .05em;
}

/* ── URGÊNCIA ── */
.section--urgency-o { background: var(--sand-50); border-top: 3px solid var(--accent); }
.urgency-o__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 800px) {
  .urgency-o__inner { flex-direction: column; align-items: center; gap: 32px; text-align: center; }
}

/* ── CTA FINAL ── */
.section--cta-o {
  background: var(--rock-900);
  position: relative;
  overflow: hidden;
}
.section--cta-o::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,20,18,.72) 0%,
    rgba(26,20,18,.82) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.section--cta-o > .container {
  position: relative;
  z-index: 2;
}
.cta-o {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-o__title { margin-bottom: 16px; }
.cta-o__sub {
  font-size: 1.05rem;
  color: var(--sand-300);
  margin: 0 0 40px;
  line-height: 1.55;
}

/* ── FAQ OSMAR ── */
.section--faq-o { background: var(--sand-100); }
.faq-o__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.faq-o__inner .faq {
  width: 100%;
  text-align: left;
}
.faq-o__inner .faq__item { text-align: left; }

/* ── FOOTER OSMAR ── */
.footer--o {
  background: var(--ink);
  color: var(--sand-200);
  padding: 0;
}
.footer-o__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: start;
}
.footer-o__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--sand-50);
  margin: 0 0 10px;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 48;
}
.footer-o__name em { color: var(--accent); font-style: italic; }
.footer-o__desc {
  font-size: .86rem;
  color: var(--sand-300);
  margin: 0;
  max-width: 34ch;
  line-height: 1.6;
}

/* coluna navegação */
.footer-o__col h4 {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand-50);
  margin: 0 0 18px;
}
.footer-o__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-o__nav a {
  font-size: .88rem;
  color: var(--sand-300);
  transition: color .3s var(--ease);
}
.footer-o__nav a:hover { color: var(--accent); }

.footer-o__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
}
@media (max-width: 760px) {
  .footer-o__inner { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 0 36px; }
}
@media (max-width: 500px) {
  .footer-o__inner { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 28px; }
  .footer-o__legal { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ── SCRIPT: ajuste de galeria para .place-o ── */
/* Os cards .place-o com data-gallery precisam do slideshow
   no elemento .place__slides dentro de .place-o__slides */
.place-o .place__slides {
  position: absolute;
  inset: 0;
}
.place-o .place__slides::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,20,18,.5) 0%, transparent 60%);
  z-index: 3;
  pointer-events: none;
}
/* dots ficam invisíveis na lista (muito pequeno) */
.place-o .place__dots { display: none; }
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav--osmar .nav__links a { color: var(--sand-200); }
.nav--osmar.is-scrolled { background: var(--rock-900); box-shadow: 0 2px 24px rgba(0,0,0,.3); }
.nav--osmar.is-scrolled .nav__links a { color: var(--sand-200); }
.nav--osmar.is-scrolled .nav__links a:hover { color: var(--accent); }
.nav--osmar .nav__cta { opacity: 1 !important; transform: none !important; pointer-events: auto !important; }

/* --------- HERO SPLIT --------- */
.hero--split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  color: var(--sand-50);
  animation: none;
}
.hero--split .hero__bg,
.hero--split .hero__overlay { display: none; }

.hero__split-text {
  background: var(--rock-900);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(100px, 12vh, 160px) clamp(28px, 5vw, 64px) clamp(60px, 8vh, 100px);
  position: relative;
}
.hero__split-text::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.hero__split-text .eyebrow { color: var(--sand-300); }
.hero__split-text .eyebrow::before { background: var(--sand-300); }
.hero__split-text .hero__title { font-size: clamp(2.2rem, 4.5vw, 4rem); max-width: 20ch; }
.hero__split-text .hero__sub { font-size: clamp(1rem, 1.2vw, 1.15rem); }

.hero__split-img {
  position: relative;
  overflow: hidden;
}
.hero__split-img-inner {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(26,20,18,.5) 0%, transparent 30%),
    url('assemts/imagens/hero.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero--split .hero__scroll { left: 25%; }

@media (max-width: 860px) {
  .hero--split {
    grid-template-columns: 1fr;
    grid-template-rows: auto 45vw;
  }
  .hero__split-text {
    padding: 120px 24px 48px;
    justify-content: flex-end;
  }
  .hero--split .hero__scroll { left: 50%; }
}
@media (max-width: 560px) {
  .hero--split { grid-template-rows: auto 60vw; }
}

/* --------- AUTORIDADE --------- */
.section--authority {
  background: var(--sand-50);
  border-top: 1px solid var(--sand-200);
}

.authority__quote {
  max-width: 860px;
  margin: 0 auto 64px;
  text-align: center;
  position: relative;
  padding: 0 32px;
}
.authority__quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: .5;
  color: var(--accent);
  opacity: .18;
  margin-bottom: -24px;
  user-select: none;
}
.authority__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 96;
  color: var(--ink);
}
.authority__quote p em { color: var(--accent-2); font-style: italic; }

.authority__stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 64px;
}
.authority__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 36px 24px;
  text-align: center;
  background: var(--sand-50);
}
.authority__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.authority__stat-label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  max-width: 18ch;
  line-height: 1.35;
}
.authority__stat-divider {
  width: 1px;
  background: var(--sand-200);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .authority__stats { flex-direction: column; }
  .authority__stat-divider { width: 100%; height: 1px; }
}

.authority__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 760px) {
  .authority__body { grid-template-columns: 1fr; gap: 32px; }
}

.authority__callout {
  background: var(--rock-900);
  color: var(--sand-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border-left: 4px solid var(--accent);
}
.authority__callout p { color: var(--sand-200); font-size: .96rem; line-height: 1.6; }
.authority__callout p strong { color: var(--sand-50); }
.authority__callout .eyebrow { color: var(--accent); }
.authority__callout .eyebrow::before { background: var(--accent); }

/* --------- EXPERIÊNCIA --------- */
.section--experience {
  background: var(--rock-900);
  color: var(--sand-100);
}
.section--experience .h2 { color: var(--sand-50); }
.section--experience .h2 em { color: var(--accent); }
.section--experience .eyebrow { color: var(--accent); }
.section--experience .eyebrow::before { background: var(--accent); }
.section--experience .section__head--center .eyebrow::before { display: none; }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 700px) {
  .exp-grid { grid-template-columns: 1fr; }
}

.exp-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 32px;
  background: rgba(26,20,18,.6);
  transition: background .3s var(--ease);
}
.exp-item:hover { background: rgba(var(--accent-rgb), .1); }
.exp-item__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--accent);
  opacity: .5;
  font-variation-settings: "opsz" 96;
}
.exp-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sand-50);
  margin: 0;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 48;
}
.exp-item p {
  font-size: .9rem;
  color: var(--sand-300);
  margin: 0;
  line-height: 1.55;
}

/* --------- DOR — lista editorial --------- */
.section--pain-osmar {
  background-color: var(--rock-900);
  background-image: none;
  background-attachment: scroll;
}
.section--pain-osmar .h2 { color: var(--sand-50); }
.section--pain-osmar .h2 em { color: var(--accent); }
.section--pain-osmar .eyebrow { color: var(--accent); }
.section--pain-osmar .eyebrow::before { background: var(--accent); }

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pain-list__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s var(--ease), padding-left .3s var(--ease);
}
.pain-list__item:last-child { border-bottom: none; }
.pain-list__item:hover {
  background: rgba(var(--accent-rgb), .1);
  padding-left: 44px;
}
.pain-list__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  opacity: .45;
  flex-shrink: 0;
  width: 52px;
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 72;
}
.pain-list__item p {
  font-size: 1.08rem;
  color: var(--sand-200);
  margin: 0;
  font-weight: 400;
}
.pain-list__item p em { color: var(--accent); font-style: italic; }
@media (max-width: 600px) {
  .pain-list__item { padding: 22px 24px; gap: 20px; }
  .pain-list__item:hover { padding-left: 28px; }
  .pain-list__num { font-size: 1.5rem; width: 40px; }
}

/* --------- DIFERENCIAL — lista horizontal --------- */
.section--diff-osmar {
  background: var(--sand-50);
}

.diff-list-osmar {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.diff-item-osmar {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--sand-200);
  transition: gap .3s var(--ease);
}
.diff-item-osmar:first-child { border-top: 1px solid var(--sand-200); }
.diff-item-osmar:hover { gap: 44px; }
.diff-item-osmar__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -.04em;
  line-height: 1;
  font-variation-settings: "opsz" 96;
  text-align: center;
  opacity: .65;
  transition: opacity .3s var(--ease);
}
.diff-item-osmar:hover .diff-item-osmar__num { opacity: 1; }
.diff-item-osmar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 48;
}
.diff-item-osmar p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 600px) {
  .diff-item-osmar { grid-template-columns: 64px 1fr; gap: 20px; }
  .diff-item-osmar:hover { gap: 24px; }
  .diff-item-osmar__num { font-size: 2rem; }
}

/* --------- TRANSFORMAÇÃO --------- */
.section--transform-osmar {
  background: var(--accent-2);
  color: var(--sand-50);
  padding: clamp(80px, 12vw, 160px) 0;
}
.transform-osmar {
  max-width: 760px;
}
.section--transform-osmar .eyebrow { color: rgba(255,255,255,.6); }
.section--transform-osmar .eyebrow::before { background: rgba(255,255,255,.4); }
.section--transform-osmar .h2 { color: #fff; }
.section--transform-osmar .h2 em {
  color: #f5c9a0;
  font-style: italic;
}
.section--transform-osmar .lead { color: rgba(255,255,255,.82); }
.section--transform-osmar .lead strong { color: #fff; }
