/* ===============================
   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:   #5a9d46;
  --accent-rgb: 90, 157, 70;
  --accent-2: #3d7a2e;
  --leaf:     #3b5c3a;

  --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: 10px;
  transition: opacity .3s var(--ease);
}
.nav__logo-img {
  height: 110px;
  width: auto;
  display: block;
  transition: height .3s var(--ease), filter .3s var(--ease);
}
.nav.is-scrolled .nav__logo-img { height: 80px; }

.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: #9fe084;
  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 ================= */

.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  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);
  z-index: 90;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: pulse 2.8s var(--ease) infinite;
}
.float-cta:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 20px 42px rgba(214, 41, 118, .55);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 30px rgba(214, 41, 118, .4), 0 0 0 0 rgba(214, 41, 118, .5); }
  50%      { box-shadow: 0 14px 30px rgba(214, 41, 118, .4), 0 0 0 14px rgba(214, 41, 118, 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-img { height: 80px; }
  .nav.is-scrolled .nav__logo-img { height: 64px; }

  /* 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 CTA — smaller + reposition above WhatsApp spacing */
  .float-cta {
    right: 16px;
    bottom: 16px;
    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; }
}
