/* =========================================================
   RAM 3500 Limited Longhorn — Landing Page
   Mobile-first · Premium · Focused on WhatsApp conversion
   ========================================================= */

:root {
  /* Agro premium MT — terra, couro, cobre queimado */
  --bg:         #0E0C0A;   /* preto terra, quente */
  --bg-2:       #15120F;   /* couro escuro */
  --bg-3:       #1E1A15;   /* tabaco fosco */
  --line:       rgba(216,180,122,0.10);
  --text:       #F1E9DA;   /* off-white quente (areia clara) */
  --text-mute:  #BEB29C;
  --text-dim:   #857A6A;
  --copper:     #B8743A;   /* cobre queimado — acento principal */
  --copper-2:   #8E5628;
  --ocre:       #D9B47A;   /* areia/ocre — acento claro */
  --olive:      #4A5240;   /* verde MT — detalhe sutil */
  --gold:       #B8743A;   /* alias (mantém compatibilidade) */
  --gold-2:     #8E5628;
  --ram-blue:   #1B3660;
  --wa:         #25D366;
  --wa-2:       #128C7E;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 10px 40px rgba(0,0,0,.45);
  --shadow-lg:  0 24px 60px rgba(0,0,0,.55);

  --ff-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-display: 'Oswald', 'Inter', sans-serif;

  --container:  1120px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* textura de grão sutil (ruído) — sensação de couro fosco */
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.72  0 0 0 0 0.46  0 0 0 0 0.23  0 0 0 0.055 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  background-repeat: repeat;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3 { margin: 0; font-family: var(--ff-display); letter-spacing: .5px; line-height: 1.1; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.narrow { max-width: 780px; }
.center { text-align: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11,11,13,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: linear-gradient(160deg, var(--ocre) 0%, var(--copper) 60%, var(--copper-2) 100%);
  color: var(--bg);
  font-family: var(--ff-display);
  font-weight: 700;
  border-radius: 8px;
  font-size: 20px;
  box-shadow: 0 2px 10px rgba(184,116,58,.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--ff-display); font-size: 15px; letter-spacing: 1px; }
.brand-text em { font-style: normal; font-size: 11px; color: var(--text-mute); letter-spacing: 1.5px; text-transform: uppercase; }
.header-tag {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ocre);
  border: 1px solid rgba(217,180,122,.3);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(184,116,58,.06);
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .2px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .ico { flex-shrink: 0; }

.btn-wa { background: var(--wa); color: #06241A; box-shadow: 0 8px 24px rgba(37,211,102,.25); }
.btn-wa:hover { background: #1ebe5a; box-shadow: 0 10px 30px rgba(37,211,102,.4); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-xl { padding: 20px 32px; font-size: 18px; border-radius: 999px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: -2;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,12,10,.35) 0%, rgba(14,12,10,.5) 40%, rgba(14,12,10,.98) 100%),
    linear-gradient(90deg, rgba(14,12,10,.65) 0%, rgba(14,12,10,0) 60%);
  z-index: -1;
}
/* linha de horizonte cobre — separa hero das seções seguintes */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--copper) 20%, var(--ocre) 50%, var(--copper) 80%, transparent 100%);
  opacity: .55;
  z-index: 1;
}
.hero-inner {
  padding-top: 80px;
  padding-bottom: 48px;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ocre);
  border: 1px solid rgba(217,180,122,.35);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(184,116,58,.08);
}
.hero-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(38px, 9vw, 76px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 4px 20px rgba(0,0,0,.6);
}
.hero-title .accent {
  background: linear-gradient(180deg, var(--ocre) 0%, var(--copper) 70%, var(--copper-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-title .thin { font-weight: 500; color: var(--text-mute); font-size: .72em; letter-spacing: 3px; }
.hero-sub {
  max-width: 600px;
  margin: 18px 0 20px;
  font-size: 17px;
  color: var(--text-mute);
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 18px 0 28px;
}
.hero-badges li span {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.hero-city { font-size: 12px; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; }

/* Bloco de localização GRANDE no hero — substitui o botão removido */
.hero-location {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 8px;
  padding: 20px 22px;
  border-left: 3px solid var(--copper);
  background: linear-gradient(90deg, rgba(184,116,58,.10) 0%, rgba(184,116,58,0) 100%);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  max-width: 100%;
}
.hero-location .loc-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ocre);
}
.hero-location .loc-city {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(22px, 5vw, 32px);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
  display: inline-block;
}
.hero-location .loc-sep {
  color: var(--copper);
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  margin: 2px 0;
  display: none;
}
.hero-location .loc-state {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ocre);
  margin-top: 4px;
}
@media (min-width: 720px) {
  .hero-location { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 14px; padding: 22px 26px; }
  .hero-location .loc-sep { display: inline-block; }
  .hero-location .loc-label { width: 100%; margin-bottom: 2px; }
  .hero-location .loc-state { width: 100%; margin-top: 2px; letter-spacing: 6px; }
}

@media (min-width: 720px) {
  .hero { min-height: 88vh; }
  .hero-image { background-position: center center; }
  .hero-inner { padding-bottom: 72px; }
}

/* ---------- Highlights ---------- */
.highlights {
  padding: 28px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-bottom: 1px solid var(--line);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hl-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  transition: border-color .2s ease, transform .2s ease;
}
.hl-card:hover { border-color: rgba(217,180,122,.5); transform: translateY(-2px); }
.hl-ico { width: 32px; height: 32px; color: var(--ocre); margin-bottom: 6px; stroke-width: 1.6; }
.hl-card strong { font-family: var(--ff-display); font-size: 17px; letter-spacing: .5px; }
.hl-card span { font-size: 12px; color: var(--text-mute); }

@media (min-width: 720px) {
  .highlights-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .hl-card { padding: 22px; }
  .hl-card strong { font-size: 19px; }
  .hl-card span { font-size: 13px; }
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-dark { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ocre);
  margin-bottom: 12px;
  position: relative;
  padding-left: 32px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--copper);
  transform: translateY(-50%);
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(28px, 5.5vw, 44px);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.section-sub { color: var(--text-mute); margin-bottom: 24px; }
.lead { font-size: 17px; color: var(--text-mute); }
.lead strong { color: var(--text); font-weight: 600; }

@media (min-width: 720px) {
  .section { padding: 96px 0; }
}

/* ---------- Checks / Procedência ---------- */
.checks { display: grid; gap: 14px; margin-top: 24px; }
.check { display: flex; gap: 14px; align-items: flex-start; }
.dot {
  flex-shrink: 0;
  width: 10px; height: 10px; margin-top: 8px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(184,116,58,.18);
}
.check p { margin: 0; color: var(--text-mute); }
.check p strong { color: var(--text); }

/* ---------- Owner ---------- */
.owner-inner { text-align: left; }
.owner-logo {
  margin-top: 28px;
  display: inline-block;
  background: var(--bg-3);
  padding: 16px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.owner-logo img { height: 48px; width: auto; opacity: .95; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 24px;
}
.g-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 4/3;
  cursor: zoom-in;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease, filter .25s ease;
}
.g-item:hover img { transform: scale(1.05); filter: brightness(1.08); }

@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .g-lg { grid-column: span 2; grid-row: span 2; aspect-ratio: 4/3; }
}
@media (min-width: 1024px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .g-lg { grid-column: span 2; grid-row: span 2; }
}

/* ---------- Video ---------- */
.video-section { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  margin-top: 24px;
  background: #000;
}
.video-wrap video {
  width: 100%; height: auto;
  display: block;
}

/* ---------- Specs ---------- */
.specs-section { background: var(--bg-2); border-top: 1px solid var(--line); }
.specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}
.specs > div {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.specs dt {
  color: var(--text-mute);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.specs dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
}

@media (min-width: 720px) {
  .specs { grid-template-columns: 1fr 1fr; column-gap: 40px; }
}

/* ---------- Pills ---------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pills li {
  padding: 10px 16px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-mute);
}

/* ---------- Price ---------- */
.price-section {
  background:
    radial-gradient(ellipse at center top, rgba(184,116,58,.12) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.price-section .section-title {
  font-size: clamp(44px, 10vw, 76px);
  margin-top: 10px;
  background: linear-gradient(180deg, var(--ocre) 0%, var(--copper) 70%, var(--copper-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}
.price-note {
  margin-top: 28px;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.7;
}
.price-note span {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg-2); }
.faq { margin-top: 24px; display: grid; gap: 10px; }
.faq details {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: rgba(184,116,58,.45); }
.faq summary {
  list-style: none;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--ocre);
  font-size: 22px;
  transition: transform .25s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0 0 18px; color: var(--text-mute); }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(ellipse at top, rgba(27,54,96,.35) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #000 100%);
  text-align: center;
  padding: 96px 0;
}
.final-title {
  font-family: var(--ff-display);
  font-size: clamp(30px, 6vw, 52px);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.final-title .accent {
  background: linear-gradient(180deg, var(--ocre) 0%, var(--copper) 70%, var(--copper-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-eyebrow { margin-bottom: 18px; }
.final-cta .btn { margin-top: 24px; }
.final-cta .lead { max-width: 620px; margin-left: auto; margin-right: auto; }

.final-price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: 32px;
  padding: 16px 28px;
  border: 1px solid rgba(217,180,122,.3);
  border-radius: 14px;
  background: rgba(184,116,58,.06);
}
.final-price .fp-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ocre);
}
.final-price .fp-value {
  font-family: var(--ff-display);
  font-size: clamp(28px, 6vw, 40px);
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1;
}
.city-note {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #050506;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.footer-inner { text-align: center; color: var(--text-dim); }
.disclaimer { font-size: 13px; margin: 0 0 8px; }
.copyright { font-size: 12px; margin: 0; }
.copyright a { color: var(--text-mute); text-decoration: underline; }

/* ---------- WhatsApp Float (removido nesta versão — contato só no CTA final) ---------- */

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 20px;
}
.lightbox.is-open { display: flex; }
.lb-img { max-width: 94vw; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.08);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.15);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 24px;
  transition: background .2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.18); }
.lb-close { top: 16px; right: 16px; }
.lb-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 16px; top: 50%; transform: translateY(-50%); }

@media (min-width: 720px) {
  .lb-close, .lb-prev, .lb-next { width: 52px; height: 52px; font-size: 28px; }
  .lb-close { top: 24px; right: 24px; }
  .lb-prev { left: 24px; }
  .lb-next { right: 24px; }
}

/* ---------- MT Block ---------- */
.mt-section {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(184,116,58,.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}
.mt-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color .25s ease, transform .25s ease;
}
.mt-card:hover { border-color: rgba(184,116,58,.45); transform: translateY(-2px); }
.mt-card .mt-ico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  color: var(--ocre);
  background: rgba(184,116,58,.10);
  border: 1px solid rgba(184,116,58,.25);
  border-radius: 10px;
  padding: 8px;
}
.mt-card h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin: 0 0 4px;
}
.mt-card p { margin: 0; color: var(--text-mute); font-size: 14.5px; line-height: 1.55; }

@media (min-width: 720px) {
  .mt-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 1024px) {
  .mt-grid { grid-template-columns: repeat(4, 1fr); }
  .mt-card { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================
   MOBILE RESPONSIVENESS PATCH — v3.2
   Cole este bloco no FINAL do styles.css.
   Cobre iPhone SE (320) até Pixel/Samsung (420) e acima.
   ========================================================== */

/* ---------- 0. Base: box-sizing e tipografia fluida ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Impede overflow horizontal global */
html, body {
  overflow-x: hidden;
}

/* ---------- 1. Safe areas (iPhone notch / Dynamic Island) ---------- */
.site-header {
  padding-top: max(12px, env(safe-area-inset-top));
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
}

.site-footer {
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}

/* ---------- 2. Header: esconder tag em telas estreitas ---------- */
@media (max-width: 420px) {
  .header-inner {
    gap: 8px;
  }
  .header-tag {
    display: none;
  }
  .brand-text em {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 360px) {
  .brand-text strong { font-size: 15px; }
  .brand-text em     { display: none; }
}

/* ---------- 3. Hero: svh + ajustes finos ---------- */
.hero {
  min-height: 92svh; /* evita jump no Safari iOS */
}
@supports not (height: 100svh) {
  .hero { min-height: 92vh; }
}

.hero-title {
  font-size: clamp(32px, 8.4vw, 76px);
  line-height: 1.02;
  word-break: break-word;
  hyphens: auto;
}

.hero-sub {
  font-size: clamp(15px, 4.1vw, 18px);
  line-height: 1.55;
}

/* Badges: wrap limpo, espaçamento confortável em mobile */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 20px 0 24px;
  list-style: none;
}
.hero-badges li {
  flex: 0 0 auto;
}
.hero-badges li > span {
  display: inline-block;
  padding: 7px 12px;
  font-size: 12px;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

@media (max-width: 380px) {
  .hero-badges li > span {
    padding: 6px 10px;
    font-size: 11px;
  }
}

/* ---------- 4. Hero location: empilhar cedo ---------- */
@media (max-width: 520px) {
  .hero-location {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 12px 14px;
  }
  .hero-location .loc-sep { display: none; }
  .hero-location .loc-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }
  .hero-location .loc-city {
    font-size: 16px;
    line-height: 1.3;
  }
  .hero-location .loc-state {
    font-size: 12px;
    opacity: 0.8;
  }
}

/* ---------- 5. Highlights: 2 cols mobile, 1 col ultra-pequeno ---------- */
@media (max-width: 720px) {
  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hl-card {
    padding: 16px 12px;
    text-align: center;
  }
  .hl-card strong { font-size: 14px; }
  .hl-card span   { font-size: 12px; }
}

@media (max-width: 360px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- 6. Section titles: clamp universal ---------- */
.section-title,
.final-title {
  font-size: clamp(26px, 6.5vw, 44px);
  line-height: 1.12;
  word-break: break-word;
}

.section-eyebrow,
.eyebrow,
.final-eyebrow {
  font-size: clamp(11px, 2.8vw, 13px);
  letter-spacing: 1.8px;
}

.lead {
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.6;
}

/* ---------- 7. Galeria: mobile-first limpo ---------- */
@media (max-width: 720px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .g-item.g-lg {
    grid-column: 1 / -1; /* foto hero ocupa linha inteira */
  }
  .g-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .g-item.g-lg img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 380px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ---------- 8. Seção MT: cards empilhados ---------- */
@media (max-width: 720px) {
  .mt-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mt-card {
    display: flex;
    gap: 14px;
    padding: 16px;
    align-items: flex-start;
  }
  .mt-card h3 { font-size: 16px; margin: 0 0 4px; }
  .mt-card p  { font-size: 14px; line-height: 1.5; }
}

/* ---------- 9. Vídeo ---------- */
.video-wrap {
  width: 100%;
  max-width: 100%;
}
.video-wrap video {
  width: 100%;
  max-height: 75svh;
  background: #000;
  border-radius: 12px;
}

/* ---------- 10. Especificações: 1 col em mobile ---------- */
@media (max-width: 520px) {
  .specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .specs > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(217, 180, 122, 0.12);
  }
  .specs dt {
    font-size: 13px;
    opacity: 0.75;
    letter-spacing: 0.4px;
  }
  .specs dd {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    margin: 0;
  }
}

/* ---------- 11. Pills (pra quem faz sentido) ---------- */
@media (max-width: 520px) {
  .pills {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .pills li {
    font-size: 14px;
    line-height: 1.5;
    padding: 12px 14px;
    margin-bottom: 8px;
    border-radius: 10px;
  }
}

/* ---------- 12. Preço ---------- */
@media (max-width: 520px) {
  .price-section .section-title {
    font-size: clamp(34px, 11vw, 56px);
  }
  .price-note {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* ---------- 13. CTA final: botão que não quebra feio ---------- */
.btn.btn-wa.btn-xl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  max-width: 100%;
  padding: 16px 22px;
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.2;
  text-align: center;
  min-height: 56px;
  word-break: normal;
}

@media (max-width: 420px) {
  .btn.btn-wa.btn-xl {
    width: 100%;
    padding: 16px 14px;
    font-size: 15px;
  }
  .btn.btn-wa.btn-xl .ico {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  /* Texto curto em telas pequenas — mostra versão enxuta */
  .btn.btn-wa.btn-xl span {
    font-size: 15px;
  }
}

/* Final price card centralizado e contido */
.final-price {
  max-width: 320px;
  margin: 24px auto;
  padding: 14px 20px;
  text-align: center;
}
.final-price .fp-label {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.final-price .fp-value {
  font-size: clamp(24px, 7vw, 32px);
  display: block;
}

.city-note {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 1.5px;
  opacity: 0.7;
}

/* ---------- 14. Lightbox: touch targets + altura controlada ---------- */
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox .lb-close {
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
}

.lightbox .lb-img {
  max-width: 96vw;
  max-height: 85svh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- 15. FAQ ---------- */
@media (max-width: 520px) {
  .faq details {
    padding: 14px 16px;
  }
  .faq summary {
    font-size: 15px;
    line-height: 1.35;
  }
  .faq details p {
    font-size: 14px;
    line-height: 1.55;
  }
}

/* ---------- 16. Container: padding lateral seguro ---------- */
.container {
  padding-left: max(18px, env(safe-area-inset-left));
  padding-right: max(18px, env(safe-area-inset-right));
}

@media (max-width: 380px) {
  .container { padding-left: 16px; padding-right: 16px; }
}

/* ---------- 17. Reduce motion: respeita preferência do usuário ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- 18. Performance: content-visibility em seções pesadas ---------- */
@supports (content-visibility: auto) {
  .gallery-section,
  .video-section,
  .specs-section,
  .faq-section {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
  }
}

/* ---------- 19. Tap highlight (Android) ---------- */
a, button, summary, .g-item {
  -webkit-tap-highlight-color: rgba(217, 180, 122, 0.15);
}

/* ---------- 20. Landscape curto (altura < 520px) ---------- */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero-title { font-size: clamp(28px, 5vw, 48px); }
}