/* ============================================================
   OLSEN — LP Otimizada para Conversão
   Pronto para portar para Elementor: cada .o-section é
   independente, com vars CSS no :root.
   ============================================================ */

:root {
  --ink: #000000;
  --ink-2: #1a1a1a;
  --ink-3: #202020;
  --line: rgba(255, 255, 255, .14);
  --line-dark: rgba(0, 0, 0, .12);
  --muted: #8a8a8a;
  --muted-2: #b8b8b8;
  --paper: #f5f5f5;
  --paper-2: #ebebeb;
  --white: #ffffff;

  /* Brand accent (do logo Olsen — sutil) */
  --accent: #d9242c;
  --accent-hover: #b91d24;

  /* CTA primary (configurável via tweaks) */
  --cta-bg: #d9242c;
  --cta-fg: #ffffff;
  --cta-border: #d9242c;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --t-eyebrow: clamp(11px, .78vw, 12px);
  --t-body: clamp(15px, 1.05vw, 17px);
  --t-h3: clamp(20px, 1.6vw, 24px);
  --t-h2: clamp(28px, 3vw, 44px);
  --t-h1: clamp(36px, 4.6vw, 68px);
  --t-display: clamp(44px, 6.4vw, 96px);
}

/* ===== Reset / base ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--white);
  background: var(--ink-3);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ===== Layout helpers ========================================== */
.o-section { position: relative; padding: clamp(64px, 8vw, 112px) 0; }
.o-section.is-dark { background: var(--ink); color: var(--white); }
.o-section.is-paper { background: var(--paper); color: var(--ink-2); }
.o-section.is-tight { padding: clamp(40px, 5vw, 64px) 0; }

.o-container {
  width: min(var(--container), 100% - calc(var(--gutter) * 2));
  margin-inline: auto;
}

.o-eyebrow {
  font-size: var(--t-eyebrow);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.o-eyebrow::before {
  content: "";
  width: 28px; height: 1px; background: currentColor; opacity: .5;
}
.is-dark .o-eyebrow { color: var(--muted-2); }

.o-h1, .o-h2, .o-h3 {
  font-weight: 300;
  letter-spacing: .01em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}
.o-h1 { font-size: var(--t-h1); }
.o-h2 { font-size: var(--t-h2); }
.o-h3 { font-size: var(--t-h3); letter-spacing: .04em; line-height: 1.2; font-weight: 500; }
.o-h1 strong, .o-h2 strong { font-weight: 600; }

.o-lead {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: var(--muted-2);
  margin: 18px 0 0;
  max-width: 56ch;
  font-weight: 400;
}
.is-paper .o-lead { color: #444; }

/* ===== Buttons ================================================= */
.o-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1.5px solid var(--white);
  background: transparent;
  color: var(--white);
  border-radius: 2px;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .15s ease;
  font-family: inherit;
}
.o-btn:hover { transform: translateY(-1px); }
.o-btn .o-btn-arrow { transition: transform .22s ease; }
.o-btn:hover .o-btn-arrow { transform: translateX(4px); }

.o-btn.is-primary {
  background: var(--cta-bg);
  color: var(--cta-fg);
  border-color: var(--cta-border);
}
.o-btn.is-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.o-btn.is-inverse { background: var(--ink); color: var(--white); border-color: var(--ink); }
.o-btn.is-inverse:hover { background: #1a1a1a; }
.o-btn.is-ghost { border-color: rgba(0, 0, 0, .8); color: var(--ink); }

.o-btn.is-full { width: 100%; }
.o-btn.is-sm { padding: 12px 18px; font-size: 12px; }

/* ===== Logo ==================================================== */
.o-logo {
  display: inline-flex;
  align-items: center;
  color: inherit;
  line-height: 1;
}
.o-logo__img { display: block; height: 28px; width: auto; }
.o-logo__img--lg { height: 36px; }
@media (max-width: 600px) {
  .o-logo__img { height: 24px; }
  .o-logo__img--lg { height: 30px; }
}

/* ===== Header ================================================== */
.o-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  color: var(--white);
}
.o-header .o-container {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
  gap: 24px;
}
.o-header__nav {
  display: flex; gap: 32px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500;
}
.o-header__nav a { color: var(--muted-2); transition: color .2s ease; }
.o-header__nav a:hover { color: var(--white); }
.o-header__cta { font-size: 12px; padding: 12px 20px; }

/* ===== Hero ==================================================== */
.o-hero {
  background: var(--paper);
  color: var(--ink-2);
  padding: clamp(64px, 8vw, 120px) 0 clamp(72px, 9vw, 140px);
  overflow: hidden;
}
.o-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
.o-hero__title {
  font-size: var(--t-h1);
  font-weight: 300;
  line-height: 1.04;
  text-transform: uppercase;
  margin: 16px 0 24px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.o-hero__title strong { font-weight: 700; }
.o-hero__lead {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: #3a3a3a;
  max-width: 50ch;
  margin: 0 0 22px;
}
.o-hero__authority {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 32px;
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
}
.o-hero__authority b { color: var(--ink); font-weight: 700; }

.o-hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.o-hero__checks {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  font-size: 13px; color: #555;
}
.o-hero__checks span { display: flex; align-items: center; gap: 8px; }
.o-hero__checks span::before {
  content: ""; width: 7px; height: 7px; background: var(--ink); border-radius: 50%;
}

.o-hero__media { position: relative; aspect-ratio: 4/5; max-height: 640px; }
.o-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 2px;
}
.o-hero__media::after {
  content: "";
  position: absolute;
  bottom: -18px; right: -18px;
  width: 64%; height: 50%;
  border: 1px solid var(--ink);
  z-index: -1;
  pointer-events: none;
}

/* ===== Áreas =================================================== */
.o-areas { background: var(--ink); }
.o-areas__head { text-align: center; margin-bottom: 48px; }
.o-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.o-area {
  position: relative;
  display: flex; flex-direction: column;
  padding: 36px 32px;
  background: #0d0d0d;
  border: 1px solid var(--line);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background .25s ease, border-color .25s ease, transform .2s ease;
  min-height: 240px;
}
.o-area:hover { background: #161616; border-color: rgba(255, 255, 255, .35); transform: translateY(-2px); }
.o-area__icon {
  width: 44px; height: 44px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
}
.o-area__icon svg { width: 100%; height: 100%; }
.o-area__title {
  font-size: 22px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; margin: 0 0 8px;
}
.o-area__desc { font-size: 14px; color: var(--muted-2); line-height: 1.5; flex: 1; }
.o-area__arrow {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2);
  transition: color .2s ease, gap .2s ease;
}
.o-area:hover .o-area__arrow { color: var(--white); gap: 14px; }

/* ===== Trust (numbers) ========================================= */
.o-trust {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 5vw, 80px);
}
.o-trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.o-trust__cell { text-align: center; }
.o-trust__num {
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--white);
}
.o-trust__num sub {
  font-size: .4em; vertical-align: super; bottom: 0;
  font-weight: 400; opacity: .7; margin-right: 2px;
}
.o-trust__lbl {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2); margin-top: 12px;
  font-weight: 500;
}

/* ===== Consequência ============================================ */
.o-consequence {
  position: relative;
  background-color: var(--ink);
  background-image: linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .75)), var(--bg-img, none);
  background-size: cover;
  background-position: center;
  padding: clamp(96px, 12vw, 180px) 0;
  text-align: center;
}
.o-consequence__title {
  max-width: 22ch;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: var(--t-h1);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: .005em;
}
.o-consequence__title em { font-style: normal; font-weight: 700; }
.o-consequence__lead {
  max-width: 56ch; margin: 28px auto 36px;
  color: var(--muted-2);
}

/* ===== Catálogo ================================================ */
.o-catalog { background: var(--ink); }
.o-catalog__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}
.o-catalog__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.o-product {
  display: flex; flex-direction: column;
  background: #0a0a0a;
  border: 1px solid var(--line);
  padding: 20px 18px 22px;
  transition: background .25s ease, border-color .25s ease, transform .2s ease;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--white);
}
.o-product:hover { background: #161616; border-color: rgba(255, 255, 255, .3); transform: translateY(-3px); }
.o-product__media {
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  margin-bottom: 18px;
  overflow: hidden;
}
.o-product__media img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 8px;
  mix-blend-mode: multiply;
}
.o-product__name {
  font-size: 20px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; margin: 0 0 8px;
}
.o-product__tag {
  font-size: 13px; line-height: 1.45; color: var(--muted-2);
  font-style: italic;
}

/* Premium collections row */
.o-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
}
.o-premium__card {
  position: relative;
  padding: 44px 36px;
  border: 1px solid var(--line);
  background: #050505;
  display: flex; flex-direction: column;
  min-height: 220px;
  overflow: hidden;
}
.o-premium__card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .06), transparent 60%);
  pointer-events: none;
}
.o-premium__badge {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.o-premium__badge::before {
  content: ""; width: 8px; height: 8px;
  background: var(--accent);
}
.o-premium__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 14px;
}
.o-premium__desc { color: var(--muted-2); margin-bottom: 24px; max-width: 36ch; }
.o-premium__card .o-btn { align-self: flex-start; }

.o-catalog__footer { text-align: center; margin-top: 56px; }

/* ===== Diferenciais ============================================ */
.o-diff { background: var(--ink); border-top: 1px solid var(--line); }
.o-diff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.o-diff__cell {
  background: var(--ink);
  padding: 44px 40px;
  display: flex; gap: 24px;
  align-items: flex-start;
}
.o-diff__icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.o-diff__icon svg { width: 100%; height: 100%; stroke-width: 1; }
.o-diff__title {
  font-size: 19px; font-weight: 600; letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.o-diff__desc { color: var(--muted-2); font-size: 15px; line-height: 1.55; margin: 0; }

/* ===== Depoimentos ============================================= */
.o-testi { background: var(--ink); }
.o-testi__head { margin-bottom: 56px; max-width: 60ch; }
.o-testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.o-testi__card {
  background: #0a0a0a;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.o-testi__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #1a1a1a;
}
.o-testi__media img { width: 100%; height: 100%; object-fit: cover; }
.o-testi__body { padding: 28px 26px; }
.o-testi__name { font-size: 18px; font-weight: 600; margin: 0 0 4px; letter-spacing: .02em; }
.o-testi__meta { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 18px; }
.o-testi__quote {
  font-size: 15px; line-height: 1.6; color: #e0e0e0;
  font-style: italic; margin: 0 0 20px;
}
.o-testi__model {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); border-top: 1px solid var(--line); padding-top: 16px;
  display: flex; align-items: center; gap: 10px;
}
.o-testi__model b { color: var(--white); font-weight: 700; letter-spacing: .04em; }

.o-ugc {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.o-ugc__title {
  font-size: 13px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted-2); margin: 0 0 28px;
  display: flex; align-items: center; gap: 14px;
}
.o-ugc__title::before, .o-ugc__title::after {
  content: ""; height: 1px; background: var(--line); flex: 1;
}
.o-ugc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.o-ugc__item {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 460px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  display: flex; align-items: flex-end;
  text-decoration: none; color: var(--white);
  transition: border-color .25s ease;
}
.o-ugc__item:hover { border-color: rgba(255, 255, 255, .35); }
.o-ugc__item iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0;
}

.o-testi__cta-row { text-align: center; margin-top: 56px; }

/* ===== Legado ================================================== */
.o-legacy {
  position: relative;
  background-color: var(--ink);
  background-image: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.85)), var(--bg-img, none);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.o-legacy__title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .005em;
  max-width: 18ch;
  margin: 0 auto;
}
.o-legacy__lead { max-width: 60ch; margin: 28px auto 36px; color: var(--muted-2); }

/* ===== Form (step-form) ======================================== */
.o-form-section { background: var(--paper); color: var(--ink-2); padding: clamp(72px, 9vw, 128px) 0; }
.o-form-section .o-eyebrow { color: #555; }
.o-form-section .o-h2 { color: var(--ink); }

.o-form-wrap {
  max-width: 680px; margin: 0 auto;
  background: var(--white);
  padding: clamp(36px, 5vw, 56px);
  border: 1px solid var(--line-dark);
  margin-top: 48px;
  position: relative;
}

.o-form-progress {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 32px;
}
.o-form-progress__bar {
  flex: 1;
  height: 4px;
  background: #e0e0e0;
  position: relative;
  overflow: hidden;
}
.o-form-progress__bar::before {
  content: "";
  position: absolute; inset: 0 auto 0 0;
  width: var(--progress, 33%);
  background: var(--ink);
  transition: width .35s ease;
}
.o-form-progress__lbl {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: #666; font-weight: 600; white-space: nowrap;
}

.o-step { display: none; }
.o-step.is-active { display: block; animation: stepIn .35s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.o-field { margin-bottom: 24px; }
.o-field__label {
  display: block;
  font-size: 13px; font-weight: 600;
  margin-bottom: 12px;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.o-field__hint { font-size: 12px; color: #777; margin-top: 6px; }

.o-radios { display: flex; flex-wrap: wrap; gap: 10px; }
.o-radio {
  position: relative;
  padding: 14px 22px;
  border: 1.5px solid #d4d4d4;
  background: var(--white);
  font-size: 14px; font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all .18s ease;
  font-family: inherit;
  letter-spacing: .01em;
}
.o-radio:hover { border-color: var(--ink); }
.o-radio input { position: absolute; opacity: 0; pointer-events: none; }
.o-radio.is-checked,
.o-radio:has(input:checked) {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.o-input, .o-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #d4d4d4;
  background: var(--white);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink-2);
  border-radius: 2px;
  transition: border-color .18s ease;
}
.o-input:focus, .o-select:focus { outline: none; border-color: var(--ink); }
.o-input::placeholder { color: #999; }

.o-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.o-form-nav {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; margin-top: 16px;
}
.o-btn--back {
  background: none; border: none; padding: 8px 4px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: #666; cursor: pointer; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit;
}
.o-btn--back:hover { color: var(--ink); }
.o-btn--back[hidden] { visibility: hidden; }

.o-form-meta {
  font-size: 12px; color: #777; text-align: center;
  margin-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px;
}
.o-form-meta::before {
  content: "🔒"; opacity: .6;
}

.o-form-success {
  display: none;
  text-align: center;
  padding: 36px 12px;
}
.o-form-success.is-shown { display: block; animation: stepIn .4s ease; }
.o-form-success__icon {
  width: 64px; height: 64px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.o-form-success h3 { font-size: 24px; margin: 0 0 12px; letter-spacing: .01em; text-transform: uppercase; font-weight: 600; }
.o-form-success p { color: #555; margin: 0 0 18px; }

/* ===== Cobertura / urgência ==================================== */
.o-coverage { background: var(--ink); border-top: 1px solid var(--line); }
.o-coverage__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.o-coverage__title { margin-bottom: 18px; }
.o-coverage__list {
  list-style: none;
  padding: 0; margin: 28px 0 0;
  display: grid; gap: 12px;
}
.o-coverage__list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px;
  border: 1px solid var(--line);
  font-size: 14px;
}
.o-coverage__list li::before {
  content: ""; width: 6px; height: 6px; background: var(--accent);
  margin-top: 8px; flex-shrink: 0;
}
.o-coverage__list li b { font-weight: 700; }

.o-coverage__map {
  aspect-ratio: 4/5;
  background: #0a0a0a;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex; align-items: stretch; justify-content: stretch;
}
.o-coverage__map-inner {
  flex: 1;
  padding: clamp(28px, 3.5vw, 44px);
  display: flex; flex-direction: column;
  position: relative;
}
.o-coverage__map-inner::before {
  content: "";
  position: absolute;
  top: 18%; right: -10%;
  width: 70%; height: 60%;
  border: 1px solid var(--line);
  pointer-events: none;
}
.o-coverage__map-inner::after {
  content: "";
  position: absolute;
  bottom: 18%; left: -8%;
  width: 50%; height: 32%;
  border: 1px solid rgba(217,37,45,.18);
  pointer-events: none;
}
.o-coverage__map-headline {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: clamp(20px, 3vw, 36px);
  position: relative;
}
.o-coverage__map-eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.o-coverage__map-big {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: .92;
  color: var(--white);
  text-transform: uppercase;
  font-style: italic;
}
.o-coverage__map-sub {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--muted-2);
  font-weight: 400;
  letter-spacing: .04em;
  margin-top: 4px;
}
.o-coverage__regions {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
  position: relative;
  flex: 1;
}
.o-coverage__regions li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.o-coverage__regions li:last-child { border-bottom: 1px solid var(--line); }
.o-coverage__regions li b {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--white);
}
.o-coverage__regions li span {
  font-size: 13px; line-height: 1.5; color: var(--muted-2);
}
.o-coverage__map-foot {
  margin-top: clamp(16px, 2vw, 24px);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.o-coverage__map-foot::before {
  content: ""; width: 8px; height: 8px; background: var(--accent);
}

/* ===== Footer ================================================== */
.o-footer { background: var(--ink-3); border-top: 1px solid var(--line); padding-block: 64px; }
.o-footer__main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.o-footer__col h4 {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 18px; font-weight: 600;
}
.o-footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14px; }
.o-footer__col ul a { color: var(--muted-2); transition: color .2s ease; }
.o-footer__col ul a:hover { color: var(--white); }
.o-footer__brand p { color: var(--muted-2); font-size: 13px; line-height: 1.6; margin: 20px 0; max-width: 36ch; }

.o-socials { display: flex; gap: 10px; }
.o-socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2);
  transition: all .2s ease;
}
.o-socials a:hover { color: var(--white); border-color: var(--white); }
.o-socials svg { width: 16px; height: 16px; }

.o-footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 12px; color: var(--muted);
  letter-spacing: .04em;
}
.o-footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.o-footer__legal a:hover { color: var(--white); }

/* ===== Tweaks panel ============================================ */
.o-tweaks {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 100;
  width: 320px;
  background: #ffffff;
  color: var(--ink-2);
  border: 1px solid #c4c4c4;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  padding: 22px 22px 20px;
  font-size: 13px;
  display: none;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border-radius: 4px;
}
body.is-tweaks-open .o-tweaks { display: block; }
.o-tweaks__head {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 14px; margin-bottom: 16px;
}
.o-tweaks__head h4 { margin: 0; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; }
.o-tweaks__close {
  background: none; border: none; cursor: pointer;
  font-size: 22px; line-height: 1; padding: 0; color: #555;
}
.o-tweaks__close:hover { color: var(--ink); }
.o-tweaks__group { margin-bottom: 18px; }
.o-tweaks__group:last-child { margin-bottom: 0; }
.o-tweaks__label {
  display: block;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: #777; margin-bottom: 8px; font-weight: 600;
}
.o-tweaks__opts { display: flex; flex-wrap: wrap; gap: 6px; }
.o-tweaks__opt {
  padding: 7px 12px;
  border: 1px solid #d0d0d0;
  background: var(--white);
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  color: #333;
  transition: all .15s ease;
  border-radius: 2px;
  letter-spacing: .01em;
}
.o-tweaks__opt:hover { border-color: var(--ink); }
.o-tweaks__opt.is-on { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ===== Variants from tweaks ==================================== */
/* CTA branco (override do padrão vermelho) */
body.cta-white {
  --cta-bg: var(--white);
  --cta-fg: var(--ink);
  --cta-border: var(--white);
}
body.cta-white .o-btn.is-primary:hover { background: var(--paper-2); border-color: var(--paper-2); }

/* CTA accent (redundante com o padrão, mantido para o tweaks panel) */
body.cta-red {
  --cta-bg: var(--accent);
  --cta-fg: var(--white);
  --cta-border: var(--accent);
}
body.cta-red .o-btn.is-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
body.cta-outline {
  --cta-bg: transparent;
  --cta-fg: var(--white);
  --cta-border: var(--white);
}
body.cta-outline .o-hero .o-btn.is-primary { --cta-fg: var(--ink); --cta-border: var(--ink); }

/* Accent ON / OFF */
body.mono .o-premium__badge::before,
body.mono .o-coverage__list li::before { background: var(--white); }

/* Catálogo layout: grid (default) vs carousel */
body.cat-carousel .o-catalog__grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 8px;
  margin-inline: calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
}
body.cat-carousel .o-catalog__grid .o-product {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* Hero copy variants are toggled via JS — nothing CSS-side */

/* Hide UGC */
body.no-ugc .o-ugc { display: none; }

/* ===== Modal (UGC fullscreen) ================================== */
.o-modal {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 90;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.o-modal.is-shown { display: flex; }
.o-modal__inner {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 9/16;
  max-height: 90vh;
  background: #000;
}
.o-modal__inner iframe { width: 100%; height: 100%; border: 0; }
.o-modal__close {
  position: absolute;
  top: -42px; right: 0;
  background: none; border: 1px solid var(--white); color: var(--white);
  width: 32px; height: 32px;
  font-size: 18px; line-height: 1;
  cursor: pointer;
}

/* ===== Global: overflow, safe-area, tap feedback ============= */
html {
  overflow-x: clip;
  scroll-padding-top: 72px;
}
body {
  -webkit-tap-highlight-color: transparent;
}
button, a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* iOS safe-area insets */
.o-header {
  padding-top: env(safe-area-inset-top, 0px);
}
.o-footer {
  padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
}

/* ===== Hamburger button ====================================== */
.o-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 12px 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  flex-shrink: 0;
}
.o-menu-btn span {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform .25s ease, opacity .2s ease, width .2s ease;
  transform-origin: center;
}
.o-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.o-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.o-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile nav overlay =================================== */
.o-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 38;
  background: rgba(0, 0, 0, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  padding-top: calc(72px + env(safe-area-inset-top, 0px));
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  padding-inline: var(--gutter);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1),
              visibility .3s;
  visibility: hidden;
  pointer-events: none;
}
.o-mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.o-mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
}
.o-mobile-nav__list li a {
  display: block;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted-2);
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease;
}
.o-mobile-nav__list li a:hover,
.o-mobile-nav__list li a:focus {
  color: var(--white);
}
.o-mobile-nav__cta {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

/* ===== Touch target floor (socials, back btn) =============== */
.o-socials a {
  min-width: 44px;
  min-height: 44px;
}
.o-btn--back {
  min-height: 44px;
  padding-block: 12px;
}

/* ===== Carousel: fix negative-margin overflow =============== */
body.cat-carousel .o-catalog__grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  margin-inline: 0;
  padding-inline: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
body.cat-carousel .o-catalog__grid .o-product {
  flex: 0 0 clamp(240px, 72vw, 280px);
  scroll-snap-align: start;
}

/* ===== Responsive ============================================== */

/* --- 980px: tablet/mobile —— nav off, stacked layouts -------- */
@media (max-width: 980px) {
  .o-header__nav { display: none; }
  .o-header__cta { display: none; }
  .o-menu-btn { display: flex; }

  .o-hero__grid { grid-template-columns: 1fr; }
  .o-hero__media { aspect-ratio: auto; max-height: none; }
  .o-hero__media img { height: auto; object-fit: initial; }
  .o-hero__media::after { display: none; }

  .o-trust__grid { grid-template-columns: repeat(3, 1fr); gap: 24px 16px; }
  .o-trust__cell:last-child { grid-column: span 1; }

  .o-catalog__head { grid-template-columns: 1fr; }

  .o-diff__grid { grid-template-columns: 1fr; }

  .o-coverage__grid { grid-template-columns: 1fr; }
  .o-coverage__map { order: -1; max-width: 480px; margin: 0 auto; aspect-ratio: auto; min-height: 340px; }

  .o-footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .o-footer__brand { grid-column: span 2; }

  .o-fields-row { grid-template-columns: 1fr; }
}

/* --- 768px: tablet two-column for grids ---------------------- */
@media (max-width: 980px) and (min-width: 601px) {
  .o-areas__grid { grid-template-columns: repeat(2, 1fr); }
  .o-catalog__grid { grid-template-columns: repeat(3, 1fr); }
  .o-testi__grid { grid-template-columns: repeat(2, 1fr); }
  .o-ugc__grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
  .o-premium { grid-template-columns: 1fr 1fr; }
}

/* --- 600px: mobile ------------------------------------------- */
@media (max-width: 600px) {
  :root { --gutter: 16px; }

  .o-header__cta { display: none; }
  .o-logo__img { height: 24px; }
  .o-logo__img--lg { height: 30px; }

  /* hero: sem forçar proporção — imagem exibe completa */
  .o-hero__media { aspect-ratio: auto; max-height: none; }
  .o-hero__media img { height: auto; object-fit: initial; }

  .o-areas__grid { grid-template-columns: 1fr; }

  .o-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .o-trust__cell:last-child { grid-column: span 2; }

  .o-catalog__grid { grid-template-columns: repeat(2, 1fr); }

  .o-premium { grid-template-columns: 1fr; }
  .o-premium__card { padding: 32px 24px; min-height: 200px; }

  .o-testi__grid { grid-template-columns: 1fr; }

  .o-ugc__grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .o-ugc__item { max-height: 380px; }

  .o-coverage__regions li { grid-template-columns: 1fr; gap: 2px; }

  .o-footer__main { grid-template-columns: 1fr; }
  .o-footer__brand { grid-column: span 1; }

  .o-tweaks { width: calc(100% - 32px); right: 16px; bottom: 16px; }

  /* iOS: previne auto-zoom em inputs */
  .o-input, .o-select { font-size: 16px; }

  .o-form-wrap { padding: 24px 16px; margin-top: 32px; }

  /* form nav: empilha verticalmente para evitar overflow */
  .o-form-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .o-form-nav .o-btn {
    width: 100%;
    justify-content: center;
  }
  .o-form-nav .o-btn--back {
    align-self: center;
    order: 2; /* back button fica abaixo do next */
  }
  .o-form-nav .o-form-progress__lbl {
    text-align: center;
    order: 2;
  }
}

/* --- 480px: small phones (320–480px) ------------------------- */
@media (max-width: 480px) {
  .o-catalog__grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }

  .o-trust__num { font-size: clamp(32px, 8vw, 48px); }

  .o-diff__cell { padding: 28px 20px; gap: 16px; }

  .o-form-wrap { padding: 20px 14px; }
  .o-radio { padding: 11px 14px; font-size: 13px; }
  /* radios ocupam toda largura disponível em telas muito pequenas */
  .o-radios { flex-direction: column; }
  .o-radio { width: 100%; text-align: center; }

  .o-btn { padding: 14px 18px; font-size: 13px; gap: 8px; }
  .o-btn.is-sm { padding: 11px 16px; font-size: 11px; }

  .o-coverage__map-big { font-size: clamp(48px, 14vw, 80px); }

  .o-premium__card { padding: 24px 16px; }

  .o-footer__main { gap: 28px; }
  .o-footer__bottom { flex-direction: column; gap: 12px; }
  .o-footer__legal { flex-wrap: wrap; gap: 12px; }
}
