/* ============================================================
   FISIOCORPUS — dark editorial · Duartina/SP
   Paleta oficial: preto + turquesa + azul-royal + verde vibrante
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-2: #0f0f10;
  --surface: #141416;
  --surface-2: #1a1a1d;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.16);

  --fg: #f5f5f0;
  --fg-2: #a8a8a2;
  --fg-3: #6f6f6a;

  --brand-green: #00E070;
  --brand-green-h: #1dff88;
  --brand-teal: #2CC9A8;
  --brand-blue: #2864C4;

  --accent: var(--brand-green);
  --accent-soft: rgba(0,224,112,.14);

  --radius: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(.2,.7,.2,1);
  --dur: .5s;

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

/* --------------------------- reset --------------------------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
ul,ol { list-style: none; }
h1,h2,h3,h4 { font-family: 'Anton', 'Manrope', sans-serif; font-weight: 400; letter-spacing: -.01em; line-height: 1; text-transform: uppercase; }
em { font-style: normal; }
::selection { background: var(--brand-green); color: #000; }

/* --------------------------- typography helpers --------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand-teal);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(0,224,112,.15);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,224,112,.3); }
  50%     { box-shadow: 0 0 0 8px rgba(0,224,112,0); }
}
.tx-accent { color: var(--brand-green); }
.tx-line   { color: var(--brand-teal); font-family: 'Anton'; }

/* --------------------------- container --------------------------- */
.hero__wrap, .pillars, .tour, .modalities, .plans, .store, .faq, .contact__wrap, .footer__wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* --------------------------- nav --------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 14px var(--gutter);
  background: rgba(10,10,10,.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.brand__mark {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  background: #000;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
}
.brand__text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand__over {
  font-size: 9px; letter-spacing: .28em; color: var(--fg-2); font-weight: 700;
  text-transform: uppercase;
}
.brand__main {
  font-family: 'Anton'; font-size: 20px; letter-spacing: .01em;
  text-transform: uppercase;
}
.brand__main em { color: var(--brand-teal); }

.nav__menu { display: flex; align-items: center; gap: 26px; }
.nav__menu a {
  font-size: 13.5px; font-weight: 600; color: var(--fg-2);
  transition: color .2s var(--ease);
}
.nav__menu a:hover { color: var(--fg); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px 11px 20px;
  background: var(--brand-green); color: #000;
  border-radius: 999px;
  font-weight: 800; font-size: 13.5px;
  letter-spacing: .01em;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.nav__cta:hover { transform: translateY(-1px); background: var(--brand-green-h); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border: 1px solid var(--border-strong); border-radius: 10px;
}
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--fg); transition: .3s var(--ease); }

/* --------------------------- hero --------------------------- */
.hero {
  position: relative;
  padding: clamp(60px, 9vh, 120px) 0 clamp(60px, 8vh, 100px);
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 50%, transparent 100%);
}
.hero__glow {
  position: absolute; inset: -20% -10% auto auto; z-index: -1;
  width: 60%; height: 80%;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0,224,112,.16), transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(40,100,196,.14), transparent 55%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__wrap {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__content { max-width: 720px; }
.hero__title {
  font-size: clamp(48px, 8vw, 108px);
  letter-spacing: -.015em;
  margin: 24px 0 28px;
}
.hero__title span { display: block; }
.hero__title .tx-line {
  font-size: .55em;
  color: var(--brand-teal);
  font-family: 'Anton';
  margin-top: 12px;
  letter-spacing: .04em;
}
.hero__sub {
  font-size: clamp(15.5px, 1.4vw, 18px);
  color: var(--fg-2); max-width: 560px;
  line-height: 1.65;
}
.hero__sub strong { color: var(--fg); font-weight: 700; }
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 32px 0 26px;
}
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero__badges li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg-2);
}
.hero__badges span {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-green); color: #000;
  font-size: 11px; font-weight: 900;
}

/* hero aside — panel */
.hero__panel {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
  align-content: center;
}
.panel__card {
  padding: 20px 22px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.panel__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
}
.panel__label {
  display: block;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 700; margin-bottom: 8px;
}

.panel__price .panel__value {
  display: flex; align-items: baseline; gap: 4px;
  color: var(--brand-green);
  font-family: 'Anton'; line-height: .9;
}
.panel__price .curr { font-size: 22px; }
.panel__price .int { font-size: 68px; letter-spacing: -.02em; }
.panel__price .dec { font-size: 26px; }
.panel__price .unit { color: var(--fg-2); font-family: 'Manrope'; font-size: 14px; font-weight: 600; margin-left: 6px; }
.panel__meta {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 14px; font-size: 12.5px; color: var(--fg-3);
}

/* ------ hours card (schedule dashboard) ------ */
.panel__hours { padding: 22px 22px 20px; }
.hours__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; margin-bottom: 16px;
}
.hours__now {
  font-size: 12.5px; color: var(--fg-2); margin-top: 6px; line-height: 1.35;
  font-variant-numeric: tabular-nums;
}
.hours__now b { color: var(--fg); font-weight: 700; }
.hours__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px 5px 9px;
  background: rgba(0,224,112,.12);
  border: 1px solid rgba(0,224,112,.32);
  border-radius: 999px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand-green);
  white-space: nowrap;
}
.hours__badge[data-open="0"] {
  background: rgba(255,255,255,.04);
  border-color: var(--border);
  color: var(--fg-3);
}
.hours__pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 0 rgba(0,224,112,.6);
  animation: hpulse 1.6s var(--ease) infinite;
}
.hours__badge[data-open="0"] .hours__pulse {
  background: var(--fg-3); animation: none;
}
@keyframes hpulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,224,112,.55); }
  70%     { box-shadow: 0 0 0 6px rgba(0,224,112,0); }
}

.hours__week {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 12px 0 6px;
  border-top: 1px dashed var(--border);
}
.hours__day {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.hours__day-l {
  font-size: 10px; font-weight: 700; color: var(--fg-3);
  letter-spacing: .1em;
}
.hours__bar {
  position: relative;
  width: 100%; height: 6px;
  background: rgba(255,255,255,.05);
  border-radius: 3px;
  overflow: hidden;
}
.hours__bar i {
  position: absolute; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-green));
  border-radius: 3px;
  transition: opacity .3s var(--ease);
}
.hours__day[data-today="1"] .hours__day-l { color: var(--brand-green); }
.hours__day[data-today="1"] .hours__bar { box-shadow: 0 0 0 1px rgba(0,224,112,.4); }
.hours__day[data-today="1"] .hours__bar i {
  box-shadow: 0 0 12px rgba(0,224,112,.4);
}
.hours__day[data-current="1"] .hours__bar::after {
  content: ''; position: absolute; top: -2px; bottom: -2px;
  left: var(--now, 50%);
  width: 2px; background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255,255,255,.8);
}

.hours__scale {
  display: flex; justify-content: space-between;
  padding: 4px 0 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px; color: var(--fg-3); letter-spacing: .1em;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 12px;
}

.hours__rows { display: grid; gap: 8px; }
.hours__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .2s var(--ease);
}
.hours__row[data-today="1"] {
  background: rgba(0,224,112,.06);
  outline: 1px solid rgba(0,224,112,.16);
}
.hours__row--muted { opacity: .5; }
.hours__row-l {
  font-size: 13px; color: var(--fg-2); font-weight: 600;
}
.hours__row-v {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px; color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.hours__row-v em { color: var(--fg-3); font-style: normal; font-size: 11px; }
.hours__row-v b { color: var(--brand-teal); font-weight: 600; }
.hours__row[data-today="1"] .hours__row-v b { color: var(--brand-green); }
.hours__row-v small { font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: .1em; font-family: 'Manrope'; }

.panel__coffee {
  display: flex; gap: 14px; align-items: center;
}
.panel__coffee .coffee__icon {
  font-size: 30px;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(0,224,112,.1); border: 1px solid rgba(0,224,112,.28);
  border-radius: 14px;
}
.panel__coffee b { display: block; font-size: 15px; font-weight: 800; }
.panel__coffee p { font-size: 12.5px; color: var(--fg-2); line-height: 1.4; margin-top: 2px; }

/* stats bar */
.stats-bar {
  margin-top: clamp(60px, 8vh, 96px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 4px 0;
}
.stat + .stat {
  border-left: 1px solid var(--border);
  padding-left: 24px;
}
.stat__num {
  font-family: 'Anton'; font-size: clamp(24px, 2.4vw, 32px);
  color: var(--fg); letter-spacing: -.01em; line-height: 1;
}
.stat__label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 700;
}
.stat--accent .stat__num { color: var(--brand-green); }

@media (max-width: 720px) {
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 18px 16px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat + .stat { padding-left: 16px; }
}

/* --------------------------- buttons --------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 800; font-size: 14.5px;
  letter-spacing: .01em;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand-green); color: #000; }
.btn--primary:hover { background: var(--brand-green-h); }
.btn--ghost {
  background: transparent; color: var(--fg);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover { border-color: var(--brand-teal); color: var(--brand-teal); }
.btn--outline {
  background: transparent; color: var(--fg);
  border: 1px solid var(--border-strong);
}
.btn--outline:hover { background: var(--fg); color: #000; border-color: var(--fg); }
.btn--mini {
  padding: 8px 14px; font-size: 12px; border-radius: 999px;
  background: var(--fg); color: #000;
}
.btn--mini:hover { background: var(--brand-green); }

/* --------------------------- section head --------------------------- */
.section-head {
  padding: clamp(60px, 9vh, 110px) 0 clamp(30px, 5vh, 52px);
  max-width: 780px;
}
.section-head--center {
  margin: 0 auto; text-align: center;
}
.section-head--split {
  max-width: none;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: end;
}
.section-title {
  font-size: clamp(36px, 5.6vw, 72px);
  margin: 16px 0 14px;
  letter-spacing: -.015em;
}
.section-title em { color: var(--brand-green); font-style: italic; font-family: 'Anton'; }
.section-lead {
  color: var(--fg-2); font-size: clamp(15px, 1.35vw, 17px);
  max-width: 620px;
  line-height: 1.6;
}

/* --------------------------- pillars --------------------------- */
.pillars { padding-bottom: clamp(40px, 6vh, 80px); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.pillar {
  grid-column: span 2;
  padding: 28px 26px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.pillar--wide { grid-column: span 3; }
.pillar:hover {
  border-color: var(--brand-teal);
  transform: translateY(-3px);
}
.pillar__num {
  display: inline-block;
  font-family: 'Anton'; font-size: 44px; color: var(--brand-green);
  line-height: 1; margin-bottom: 14px;
}
.pillar h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 12px; letter-spacing: -.005em;
}
.pillar p { color: var(--fg-2); font-size: 14.5px; line-height: 1.6; }
.pillar p b { color: var(--fg); }
.pillar__link {
  display: inline-block; margin-top: 16px;
  font-size: 13px; font-weight: 700; color: var(--brand-green);
  border-bottom: 1px dashed rgba(0,224,112,.4); padding-bottom: 2px;
}
.pillar__link:hover { color: var(--brand-green-h); }

/* --------------------------- tour --------------------------- */
.tour { padding-bottom: clamp(40px, 6vh, 80px); }
.tour__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
}
.tour__cell {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
}
.tour__cell--tall { grid-row: span 2; }
.tour__cell--wide { grid-column: span 2; }
.cell__img {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(44,201,168,.14) 0%, rgba(40,100,196,.10) 100%),
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(255,255,255,.02) 8px 16px);
  display: grid; place-items: center;
  color: var(--fg-3);
  font-family: 'Anton'; font-size: 22px; letter-spacing: .1em;
}
.cell__img::after {
  content: attr(data-label);
  padding: 8px 14px;
  border: 1px dashed var(--border-strong);
  border-radius: 999px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg-2);
}
.tour__cell figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 12.5px; color: var(--fg); font-weight: 600;
  padding: 6px 12px;
  background: rgba(0,0,0,.5); backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid var(--border);
}

/* --------------------------- modalities --------------------------- */
.modalities { padding-bottom: clamp(40px, 6vh, 80px); }
.mod__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.mod {
  padding: 26px 22px 28px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.mod:hover { border-color: var(--brand-teal); transform: translateY(-3px); }
.mod--active {
  background:
    linear-gradient(180deg, rgba(0,224,112,.06), transparent 60%),
    var(--surface);
  border-color: rgba(0,224,112,.35);
}
.mod__tag {
  display: inline-block; margin-bottom: 12px;
  padding: 4px 10px;
  font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: #000; background: var(--brand-green);
  border-radius: 999px;
}
.mod h3 { font-size: 26px; margin-bottom: 8px; }
.mod p { color: var(--fg-2); font-size: 14px; line-height: 1.55; }

/* --------------------------- plans --------------------------- */
.plans { padding-bottom: clamp(40px, 6vh, 80px); }
.plans__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  align-items: stretch;
}
.plan {
  display: flex; flex-direction: column;
  padding: 32px 28px 32px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.plan:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.plan header h3 {
  font-size: 30px; letter-spacing: 0;
}
.plan__hint {
  font-size: 12.5px; color: var(--fg-2); margin-top: 4px; text-transform: none; letter-spacing: 0;
  font-family: 'Manrope'; font-weight: 500;
}
.plan__price {
  display: flex; align-items: baseline; gap: 4px;
  margin: 24px 0 8px;
  color: var(--fg); font-family: 'Anton'; line-height: .9;
}
.plan__price .curr { font-size: 20px; color: var(--fg-2); }
.plan__price .int { font-size: 62px; letter-spacing: -.02em; }
.plan__price .dec { font-size: 22px; color: var(--fg-2); }
.plan__price .per { font-family: 'Manrope'; font-size: 13px; font-weight: 600; color: var(--fg-3); margin-left: 6px; }
.plan__save {
  font-size: 12px; font-weight: 700; color: var(--brand-green);
  padding: 6px 10px;
  background: rgba(0,224,112,.09);
  border: 1px solid rgba(0,224,112,.24);
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 20px;
}
.plan__perks {
  display: grid; gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
  flex-grow: 1;
}
.plan__perks li {
  position: relative; padding-left: 24px;
  font-size: 14px; color: var(--fg-2); line-height: 1.5;
}
.plan__perks li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--brand-green); border-bottom: 2px solid var(--brand-green);
  transform: rotate(-45deg);
}
.plan__cta { justify-content: center; width: 100%; }
.plan__badge {
  position: absolute; top: -12px; left: 24px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  background: var(--fg); color: #000;
}
.plan__badge--gold { background: var(--brand-green); }
.plan--featured {
  border-color: var(--border-strong);
  background:
    linear-gradient(180deg, rgba(44,201,168,.06), transparent 30%),
    var(--surface);
}
.plan--best {
  border-color: rgba(0,224,112,.36);
  background:
    linear-gradient(180deg, rgba(0,224,112,.10), transparent 40%),
    var(--surface);
  box-shadow: 0 20px 60px -20px rgba(0,224,112,.14);
}
.plans__note {
  margin-top: 20px;
  font-size: 12px; color: var(--fg-3);
  text-align: center;
}

/* --------------------------- store --------------------------- */
.store { padding-bottom: clamp(40px, 6vh, 80px); }
.store__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.prod {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.prod:hover { transform: translateY(-3px); border-color: var(--brand-teal); }
.prod__img {
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  font-size: 60px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(44,201,168,.14), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border-bottom: 1px solid var(--border);
}
.prod__body { padding: 18px 20px 20px; }
.prod__tag {
  font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fg-3);
}
.prod h3 { font-size: 18px; margin: 6px 0 4px; letter-spacing: 0; text-transform: none; font-family: 'Manrope'; font-weight: 800; }
.prod p { font-size: 13px; color: var(--fg-2); margin-bottom: 16px; }
.prod__foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.prod__price { font-family: 'Anton'; font-size: 22px; color: var(--brand-green); }

/* --------------------------- faq --------------------------- */
.faq { padding-bottom: clamp(40px, 6vh, 80px); }
.faq__list {
  display: grid; gap: 8px;
  max-width: 820px;
}
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq details[open] { border-color: var(--brand-teal); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 18px 22px;
  font-weight: 700; font-size: 15.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq__plus {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong); border-radius: 50%;
  font-size: 16px; color: var(--brand-green); font-weight: 400;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  flex-shrink: 0;
}
.faq details[open] .faq__plus {
  transform: rotate(45deg);
  background: var(--brand-green); color: #000; border-color: var(--brand-green);
}
.faq details p {
  padding: 0 22px 22px;
  color: var(--fg-2); font-size: 14.5px; line-height: 1.65;
}

/* --------------------------- contact --------------------------- */
.contact { padding: clamp(60px, 9vh, 110px) 0 clamp(80px, 12vh, 140px); }
.contact__wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px);
  align-items: stretch;
}
.contact__info h2 { margin: 16px 0 32px; font-size: clamp(32px, 4.4vw, 56px); }
.contact__list { display: grid; gap: 22px; margin-bottom: 32px; }
.contact__list li { display: grid; gap: 4px; }
.contact__k {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 700;
}
.contact__v { font-size: 16px; color: var(--fg); }
.contact__v a { color: var(--fg); border-bottom: 1px solid rgba(0,224,112,.3); }
.contact__v a:hover { color: var(--brand-green); }
.contact__v b { color: var(--brand-teal); font-weight: 700; }

.contact__map {
  min-height: 380px;
  background:
    linear-gradient(135deg, rgba(40,100,196,.14) 0%, rgba(44,201,168,.10) 100%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.map__frame {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map__pin { text-align: center; }
.map__pin .pin {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand-green);
  margin: 0 auto 10px;
  box-shadow:
    0 0 0 8px rgba(0,224,112,.15),
    0 0 0 20px rgba(0,224,112,.06);
  animation: pulse-pin 2.5s var(--ease) infinite;
}
@keyframes pulse-pin {
  0%,100% { box-shadow: 0 0 0 6px rgba(0,224,112,.2), 0 0 0 18px rgba(0,224,112,.06); }
  50%     { box-shadow: 0 0 0 12px rgba(0,224,112,.08), 0 0 0 32px rgba(0,224,112,0); }
}
.map__pin span {
  font-family: 'Anton'; font-size: 20px; letter-spacing: .04em;
  color: var(--fg);
}
.map__hint {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  text-align: center; font-size: 12px; color: var(--fg-3);
  letter-spacing: .12em; text-transform: uppercase;
}

/* --------------------------- footer --------------------------- */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 56px;
  background: var(--bg-2);
}
.footer__wrap {
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px;
  padding-bottom: 40px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand > div { display: flex; flex-direction: column; }
.footer__brand b { font-family: 'Anton'; font-size: 22px; letter-spacing: .01em; }
.footer__brand span { font-size: 12px; color: var(--fg-3); letter-spacing: .12em; text-transform: uppercase; }

.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.footer__cols h4 {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 700; font-family: 'Manrope';
  margin-bottom: 14px;
}
.footer__cols a, .footer__cols span {
  display: block; font-size: 14px; color: var(--fg-2); margin-bottom: 8px;
  transition: color .2s var(--ease);
}
.footer__cols a:hover { color: var(--brand-green); }

.footer__base {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px var(--gutter);
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--fg-3);
  max-width: var(--container); margin: 0 auto;
}

/* --------------------------- whatsapp float --------------------------- */
.wpp-float {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 90;
  display: grid; place-items: center;
  width: 58px; height: 58px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,.5), 0 0 0 8px rgba(37,211,102,.12);
  transition: transform .25s var(--ease);
  animation: float-in .5s var(--ease) .6s both;
}
.wpp-float:hover { transform: scale(1.08); }
@keyframes float-in {
  from { transform: translateY(20px) scale(.6); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* --------------------------- reveal-on-load animations --------------------------- */
.hero__content > * { opacity: 0; transform: translateY(24px); animation: rise .8s var(--ease) forwards; }
.hero__content > *:nth-child(1) { animation-delay: .05s; }
.hero__content > *:nth-child(2) { animation-delay: .18s; }
.hero__content > *:nth-child(3) { animation-delay: .30s; }
.hero__content > *:nth-child(4) { animation-delay: .42s; }
.hero__content > *:nth-child(5) { animation-delay: .54s; }
.hero__panel .panel__card { opacity: 0; transform: translateY(16px); animation: rise .7s var(--ease) forwards; }
.hero__panel .panel__card:nth-child(1) { animation-delay: .35s; }
.hero__panel .panel__card:nth-child(2) { animation-delay: .48s; }
.hero__panel .panel__card:nth-child(3) { animation-delay: .60s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* --------------------------- responsive --------------------------- */
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .nav__cta span { display: none; }
  .nav__cta { padding: 11px; }

  .hero__wrap { grid-template-columns: 1fr; }
  .hero__panel { grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .panel__coffee { grid-column: span 2; }

  .section-head--split { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .pillar, .pillar--wide { grid-column: span 1; }
  .tour__grid { grid-template-columns: repeat(2, 1fr); }
  .tour__cell--wide { grid-column: span 2; }
  .mod__grid { grid-template-columns: repeat(2, 1fr); }
  .plans__grid { grid-template-columns: 1fr; }
  .store__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__wrap { grid-template-columns: 1fr; }
  .footer__wrap { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .hero { padding-top: 40px; }
  .hero__panel { grid-template-columns: 1fr; }
  .panel__coffee { grid-column: span 1; }
  .pillars__grid { grid-template-columns: 1fr; }
  .tour__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .tour__cell--wide, .tour__cell--tall { grid-column: span 1; grid-row: span 1; }
  .mod__grid { grid-template-columns: 1fr; }
  .store__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; gap: 8px; text-align: center; }
  .section-head { padding-top: 60px; }
  .hero__title { margin-top: 20px; }
  .btn { padding: 13px 22px; }
}

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

/* --------------------------- mobile nav open --------------------------- */
.nav.is-open .nav__menu {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(10,10,10,.96); backdrop-filter: blur(20px);
  padding: 22px var(--gutter);
  gap: 18px;
  border-bottom: 1px solid var(--border);
}
.nav.is-open .nav__menu a { font-size: 16px; color: var(--fg); }

/* ============================================================
   INTRO — frase que vale ser lida
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0,224,112,.10), transparent 55%),
    radial-gradient(ellipse at 15% 90%, rgba(44,201,168,.08), transparent 60%),
    #000;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 40px clamp(24px, 4vw, 60px);
  cursor: pointer;
  animation: introOut .8s cubic-bezier(.7,0,.3,1) 3.2s forwards;
  overflow: hidden;
}
.intro::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 90%);
  pointer-events: none;
}

.intro__top {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  position: relative; z-index: 2;
  animation: introFadeIn .6s var(--ease) both;
}
.intro__meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-3);
}
.intro__meta--r { color: var(--fg-2); }
.intro__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(0,224,112,.16);
  animation: introPulse 1.6s var(--ease) infinite;
}
@keyframes introPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,224,112,.45); }
  70%     { box-shadow: 0 0 0 10px rgba(0,224,112,0); }
}

.intro__poster {
  align-self: center;
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(24px, 4vw, 60px);
  row-gap: 0;
}
.intro__poster-l1,
.intro__poster-l2 {
  font-family: 'Anton';
  text-transform: uppercase;
  line-height: .82;
  letter-spacing: -.02em;
  font-size: clamp(80px, 22vw, 320px);
  display: block;
  overflow: hidden;
}
.intro__poster-l1 {
  grid-column: 1; grid-row: 1;
  color: var(--fg);
  transform-origin: left bottom;
}
.intro__poster-l2 {
  grid-column: 1; grid-row: 2;
  color: var(--brand-green);
  padding-left: clamp(20px, 5vw, 80px);
  transform-origin: left top;
}
.intro__poster-l1,
.intro__poster-l2 {
  opacity: 0;
  transform: translateY(40px) skewY(2deg);
  animation: introRise 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.intro__poster-l1 { animation-delay: .15s; }
.intro__poster-l2 { animation-delay: .35s; }
@keyframes introRise { to { opacity: 1; transform: translateY(0) skewY(0); } }

.intro__poster-mark {
  grid-column: 2; grid-row: 1 / span 2;
  display: grid; place-items: center;
  opacity: 0;
  animation: introFadeIn .8s var(--ease) .8s forwards;
}
.intro__poster-mark svg .intro__stroke {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: introDraw 1.4s cubic-bezier(.6,.05,.3,1) .5s forwards;
}
@keyframes introDraw { to { stroke-dashoffset: 0; } }

.intro__foot {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  position: relative; z-index: 2;
  animation: introFadeIn .6s var(--ease) 1.0s both;
}
.intro__tag {
  display: flex; align-items: center; gap: 14px;
  min-width: 0;
}
.intro__tag-line {
  width: 44px; height: 1px; background: var(--brand-teal);
  animation: introLine 1.4s var(--ease) 1.1s both;
}
@keyframes introLine {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); }
}
.intro__tag-tx {
  font-family: 'Manrope'; font-weight: 400;
  font-size: clamp(13px, 1.3vw, 16px);
  color: var(--fg-2); letter-spacing: .01em;
}
.intro__bar {
  width: clamp(120px, 20vw, 220px); height: 2px;
  background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden;
}
.intro__bar i {
  display: block; width: 0; height: 100%;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-green));
  animation: introBar 3.0s cubic-bezier(.4,.05,.3,1) .2s forwards;
}
.intro__sig {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-3);
}
@keyframes introFadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes introBar    { to { width: 100%; } }
@keyframes introOut {
  0%   { opacity: 1; clip-path: inset(0 0 0 0); }
  100% { opacity: 1; clip-path: inset(100% 0 0 0); }
}
.intro-done .intro { display: none; }

@media (max-width: 720px) {
  .intro__poster { grid-template-columns: 1fr; }
  .intro__poster-mark { grid-column: 1; grid-row: 3; justify-self: end; padding-top: 12px; }
  .intro__poster-mark svg { width: 64px; height: 64px; }
  .intro__foot { grid-template-columns: 1fr; gap: 12px; }
  .intro__meta--r { display: none; }
  .intro__bar { width: 100%; }
}

/* ============================================================
   CURSOR customizado (desktop apenas)
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9998;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.cursor.is-on { opacity: 1; }
.cursor__dot {
  position: absolute; top: -3px; left: -3px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-green);
}
.cursor__ring {
  position: absolute; top: -18px; left: -18px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  transition: transform .3s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.cursor.is-hover .cursor__ring {
  transform: scale(1.6);
  background: rgba(0,224,112,.2);
  border-color: transparent;
}
@media (hover: none), (max-width: 900px) { .cursor { display: none; } }

/* ============================================================
   GRAIN — textura sutil sobre tudo
   ============================================================ */
.grain {
  position: fixed; inset: -50%; z-index: 9997;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grainShift 6s steps(4) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-6%, 4%); }
  50%  { transform: translate(4%, -6%); }
  75%  { transform: translate(-4%, -3%); }
  100% { transform: translate(3%, 5%); }
}

/* ============================================================
   DECO — número gigante de watermark atrás das seções
   ============================================================ */
.deco { position: relative; }
.deco::before {
  content: attr(data-deco);
  position: absolute;
  top: 40px; right: max(-2vw, -40px);
  font-family: 'Anton';
  font-size: clamp(200px, 32vw, 480px);
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.055);
  text-stroke: 1px rgba(255,255,255,.055);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.deco > * { position: relative; z-index: 1; }

/* ============================================================
   Reveal preload guard — evita FOUC
   ============================================================ */
html:not(.intro-done) main,
html:not(.intro-done) .footer,
html:not(.intro-done) .wpp-float { opacity: 0; }
html.intro-done main,
html.intro-done .footer,
html.intro-done .wpp-float {
  opacity: 1; transition: opacity .6s var(--ease) .1s;
}

/* --------------------------- scroll reveal (variados) --------------------------- */
.rv {
  opacity: 0;
  transition:
    opacity .9s var(--ease) var(--reveal-delay, 0ms),
    transform .9s var(--ease) var(--reveal-delay, 0ms),
    filter .9s var(--ease) var(--reveal-delay, 0ms),
    clip-path .9s var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter, clip-path;
}
.rv-up      { transform: translateY(32px); }
.rv-down    { transform: translateY(-24px); }
.rv-left    { transform: translateX(-48px); }
.rv-right   { transform: translateX(48px); }
.rv-zoom    { transform: scale(.9); }
.rv-blur    { filter: blur(14px); transform: translateY(12px); }
.rv-clip    { clip-path: inset(0 0 100% 0); transform: translateY(20px); }
.rv-clip-r  { clip-path: inset(0 100% 0 0); }
.rv-flip    { transform: perspective(1200px) rotateX(-18deg) translateY(20px); transform-origin: 50% 100%; }
.rv-slide-l { transform: translateX(-36px) skewX(-2deg); }
.rv-slide-r { transform: translateX(36px) skewX(2deg); }

.rv.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0);
}

.no-js .rv,
html.intro-done .rv:not(.is-visible) {
  animation: revealFallback 0s linear 8s forwards;
}
@keyframes revealFallback {
  to { opacity: 1; transform: none; filter: none; clip-path: inset(0 0 0 0); }
}

/* section head reveals a bit softer */
.section-head.rv-up { transform: translateY(20px); }

/* --------------------------- word reveal on hero title --------------------------- */
.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1em) rotate(2deg);
  transition:
    opacity .7s var(--ease) var(--word-delay, 0ms),
    transform .8s var(--ease) var(--word-delay, 0ms);
  will-change: opacity, transform;
}
.hero__title.is-revealed .word {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

/* --------------------------- plan tilt smoothing --------------------------- */
.plan {
  transform-style: preserve-3d;
  transition: transform .4s var(--ease), border-color .3s var(--ease), box-shadow .4s var(--ease);
}
.plan:hover {
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6), 0 0 0 1px var(--border-strong);
}
.plan > * { transform: translateZ(0); }

/* --------------------------- magnetic buttons smoothing --------------------------- */
.btn--primary, .nav__cta {
  transition:
    transform .35s var(--ease),
    background .2s var(--ease),
    box-shadow .35s var(--ease);
}
.btn--primary { box-shadow: 0 8px 24px -8px rgba(0,224,112,.4); }
.btn--primary:hover { box-shadow: 0 14px 30px -8px rgba(0,224,112,.55); }

/* --------------------------- glow/grid parallax smoothing --------------------------- */
.hero__glow, .hero__grid {
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

/* --------------------------- nav on scroll --------------------------- */
.nav.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(10,10,10,.88);
  box-shadow: 0 1px 0 0 var(--border), 0 20px 40px -20px rgba(0,0,0,.6);
}
.nav { transition: padding .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease); }

/* --------------------------- pillar shine on hover --------------------------- */
.pillar { position: relative; }
.pillar::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(0,224,112,.08), transparent 40%);
  opacity: 0; transition: opacity .3s var(--ease);
  pointer-events: none;
}
.pillar:hover::after { opacity: 1; }

/* --------------------------- product image subtle animation --------------------------- */
.prod__img { transition: transform .5s var(--ease); }
.prod:hover .prod__img { transform: scale(1.06); }

/* --------------------------- faq smooth open --------------------------- */
.faq details p {
  animation: faqDown .35s var(--ease);
}
@keyframes faqDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------- section fade divider --------------------------- */
.pillars, .tour, .modalities, .plans, .store, .faq, .contact {
  position: relative;
}
.tour::before, .plans::before, .contact::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40%; max-width: 480px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

/* ============================================================
   SECTION META (01 / 07 · LABEL) — dev-sr aesthetic
   ============================================================ */
.section-meta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
}
.section-meta--center { display: inline-flex; }
.meta__num { color: var(--brand-green); font-weight: 600; }
.meta__sep {
  width: 24px; height: 1px; background: var(--border-strong);
}
.meta__lab { color: var(--fg-2); font-weight: 500; }

/* ============================================================
   HERO PRICE CARD upgrade — comparativo com barras
   ============================================================ */
.price__head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
  margin-bottom: 6px;
}
.price__save {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 9px;
  background: rgba(0,224,112,.12);
  border: 1px solid rgba(0,224,112,.3);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--brand-green);
  white-space: nowrap;
}
.price__compare {
  margin: 16px 0 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  display: grid; gap: 8px;
}
.price__row {
  display: grid; grid-template-columns: 100px 1fr auto;
  align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
}
.price__row-l { color: var(--fg-2); }
.price__bar {
  height: 4px; background: rgba(255,255,255,.06); border-radius: 999px; overflow: hidden;
}
.price__bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--brand-teal), var(--brand-green));
  border-radius: 999px;
  animation: bar-in 1.1s var(--ease) .6s backwards;
}
@keyframes bar-in { from { transform: scaleX(0); transform-origin: left; } }
.price__row-v { color: var(--fg); font-weight: 600; }
.price__row--muted .price__row-v { color: var(--fg-3); }
.price__row-v s { color: var(--fg-3); text-decoration-color: var(--brand-green); }

/* ============================================================
   PILLARS — cards com métrica
   ============================================================ */
.pillar {
  display: flex; flex-direction: column;
  padding: 26px 24px 26px;
}
.pillar__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.pillar__id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--fg-3); font-weight: 600; letter-spacing: .06em;
}
.pillar__cat {
  padding: 3px 9px;
  border: 1px solid var(--border-strong); border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-2);
}
.pillar__metric {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0 18px;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin-bottom: 18px;
}
.pillar__big {
  font-family: 'Anton'; font-size: clamp(30px, 3.4vw, 44px);
  color: var(--fg); line-height: 1; letter-spacing: -.01em;
}
.pillar--price .pillar__big { color: var(--brand-green); }
.pillar__unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-3);
}
.pillar h3 {
  font-size: clamp(20px, 2.1vw, 26px);
  margin-bottom: 10px;
}
.pillar p { flex: 1; }
.pillar__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
/* remove old __num */
.pillar > .pillar__num { display: none; }

/* ============================================================
   CHIP (filter buttons, badges de "chip")
   ============================================================ */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--surface); color: var(--fg-2);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .01em;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  font-family: 'Manrope';
  cursor: pointer;
}
.chip:hover { color: var(--fg); border-color: var(--fg-2); }
.chip.is-active,
.chip[data-active="true"] {
  background: rgba(0,224,112,.12);
  border-color: rgba(0,224,112,.5);
  color: var(--brand-green);
}
.chip__c {
  padding: 2px 7px;
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  color: inherit;
}
.chip.is-active .chip__c { background: rgba(0,224,112,.18); }
.chip--green {
  background: rgba(0,224,112,.1); color: var(--brand-green);
  border-color: rgba(0,224,112,.3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
}

.filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.filters--stack {
  align-content: flex-start;
  padding-top: 8px;
}

/* ============================================================
   TOUR — labels mono
   ============================================================ */
.tour__cell { position: relative; }
.cell__idx {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 600; letter-spacing: .1em;
  padding: 4px 8px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg-2);
}
.tour__cell figcaption {
  left: 14px; right: 14px; bottom: 14px;
  padding: 10px 14px;
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(0,0,0,.62); backdrop-filter: blur(14px);
  border-radius: 10px;
}
.tour__cell figcaption b {
  font-size: 13.5px; color: var(--fg); font-weight: 700;
}
.tour__cell figcaption span {
  font-size: 11px; color: var(--fg-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .04em;
}

/* ============================================================
   MODALITIES upgrade
   ============================================================ */
.mod__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.mod__id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--fg-3); font-weight: 600; letter-spacing: .06em;
}
.mod__tag--muted {
  background: rgba(255,255,255,.06); color: var(--fg-3);
}
.mod__specs {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  display: grid; gap: 8px;
}
.mod__specs li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
}
.mod__specs li span {
  color: var(--fg-3); text-transform: uppercase; letter-spacing: .08em; font-size: 10px;
}
.mod__specs li b {
  color: var(--fg); font-weight: 600;
}
.mod--tba { opacity: .7; }
.mod--tba:hover { opacity: 1; }

/* ============================================================
   PLANS upgrade — head with code + breakdown + matrix
   ============================================================ */
.plan__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
}
.plan__code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; color: var(--fg-3); font-weight: 600;
  padding: 3px 9px;
  border: 1px solid var(--border-strong); border-radius: 6px;
  letter-spacing: .06em;
}
.plan__breakdown {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin: 6px 0 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--fg-2);
}
.plan__breakdown em {
  color: var(--fg-3); font-style: normal;
}

/* ============================================================
   MATRIX comparativa — sem checkmark redondo, sem cara de IA
   ============================================================ */
.mx {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.15fr;
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.mx__col {
  background: var(--bg);
  display: flex; flex-direction: column;
}
.mx__col--label { background: var(--surface); }
.mx__col--best {
  background:
    linear-gradient(180deg, rgba(0,224,112,.10) 0%, rgba(0,224,112,.04) 40%, transparent 100%),
    #0d1210;
  position: relative;
}
.mx__col--best::before {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0,224,112,.24);
  border-radius: inherit; pointer-events: none;
}

.mx__topcell {
  padding: 22px 22px 18px;
  border-bottom: 1px dashed var(--border);
  display: flex; flex-direction: column; gap: 4px; min-height: 118px;
  justify-content: flex-end; position: relative;
}
.mx__topcell--best { border-bottom-color: rgba(0,224,112,.24); }
.mx__topcell--label { justify-content: center; }
.mx__title {
  font-family: 'Anton'; font-size: 20px; letter-spacing: .01em; text-transform: uppercase;
  color: var(--fg); line-height: 1.05;
}
.mx__hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: .06em; color: var(--fg-3); margin-top: 6px;
}
.mx__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600;
}
.mx__col--best .mx__tag { color: var(--brand-green); }
.mx__price {
  font-family: 'Anton'; font-size: 32px; letter-spacing: -.01em;
  color: var(--fg); line-height: 1;
}
.mx__price em {
  font-family: 'Manrope'; font-style: normal;
  font-size: 12px; font-weight: 600; color: var(--fg-3); margin-left: 4px;
}
.mx__col--best .mx__price { color: var(--brand-green); }
.mx__ribbon {
  position: absolute; top: -1px; right: 16px;
  padding: 5px 10px 4px;
  background: var(--brand-green); color: #000;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 0 0 6px 6px;
}

.mx__col ul { flex: 1; display: flex; flex-direction: column; }
.mx__col ul li {
  padding: 18px 22px;
  border-top: 1px dashed transparent;
  border-bottom: 1px dashed var(--border);
  font-size: 14px; color: var(--fg-2);
  display: flex; align-items: center;
  min-height: 58px;
}
.mx__col ul li:last-child { border-bottom: 0; }
.mx__col--label ul li {
  color: var(--fg); font-weight: 600;
  font-family: 'Manrope';
}
.mx__col--label ul li em {
  color: var(--fg-3); font-style: normal; font-weight: 400;
  font-size: 12px; margin-left: 5px;
}

.mx__col:not(.mx__col--label) ul li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px; letter-spacing: .04em;
  justify-content: flex-start;
}
.mx__col ul li[data-v="1"] {
  color: var(--brand-green);
  position: relative; padding-left: 42px;
}
.mx__col ul li[data-v="1"]::before {
  content: ''; position: absolute; left: 22px; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 2px;
  background: var(--brand-green);
  box-shadow: 3px 3px 0 var(--brand-green);
}
.mx__col ul li[data-v="0"] {
  color: var(--fg-3); opacity: .5;
}

.mx__col:hover ul li { border-bottom-color: rgba(255,255,255,.14); }

/* ============================================================
   MAP overlay — filter dark + pin próprio + control bar
   ============================================================ */
.contact__map {
  min-height: 520px;
  background: #050505;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: block;
  isolation: isolate;
}
.contact__map iframe {
  width: 100%; height: 100%;
  min-height: 520px;
  border: 0;
  filter: invert(.94) hue-rotate(180deg) saturate(.35) contrast(.95) brightness(.95);
}

.mapo {
  position: absolute;
  padding: 10px 14px;
  background: rgba(10,10,10,.68);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 3;
  display: flex; flex-direction: column; gap: 2px;
  pointer-events: none;
}
.mapo--tl { top: 16px; left: 16px; }
.mapo--tr { top: 16px; right: 16px; }
.mapo__k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--fg-3);
}
.mapo__v {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--fg); font-weight: 600;
}

.mapo__pin {
  position: absolute; left: 50%; top: 48%;
  transform: translate(-50%, -100%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  pointer-events: none;
}
.mapo__pin-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 0 3px #000, 0 6px 20px rgba(0,224,112,.5);
  position: relative; z-index: 2;
}
.mapo__pin-ring {
  position: absolute; top: -6px; left: 50%;
  width: 26px; height: 26px; border-radius: 50%;
  transform: translateX(-50%);
  border: 2px solid var(--brand-green);
  animation: mapoPulse 2.2s var(--ease) infinite;
}
@keyframes mapoPulse {
  0%   { transform: translateX(-50%) scale(.6); opacity: .8; }
  100% { transform: translateX(-50%) scale(2.4); opacity: 0; }
}
.mapo__pin-lb {
  padding: 4px 9px;
  background: var(--brand-green); color: #000;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  border-radius: 4px;
}

.mapo__bar {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  padding: 14px 16px;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  z-index: 3;
}
.mapo__bar > div:first-child { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mapo__addr {
  font-size: 13.5px; color: var(--fg); font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mapo__ext { display: flex; gap: 6px; flex-shrink: 0; }
.mapo__ext a {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 11px;
  border: 1px solid var(--border-strong); border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--fg-2);
  transition: all .2s var(--ease);
}
.mapo__ext a:hover {
  color: var(--brand-green); border-color: rgba(0,224,112,.4);
  background: rgba(0,224,112,.06);
}

/* ============================================================
   Instagram section
   ============================================================ */
.ig {
  padding: clamp(60px, 8vh, 100px) var(--gutter) clamp(20px, 4vh, 60px);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.ig__grid {
  display: grid;
  grid-template-columns: .95fr 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.ig__title {
  font-family: 'Anton'; text-transform: uppercase;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1;
  margin: 16px 0 32px;
  letter-spacing: -.01em;
}
.ig__title em { color: var(--brand-green); font-style: italic; }

.ig__count {
  display: flex; align-items: baseline; gap: 14px;
  padding: 22px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin-bottom: 24px;
}
.ig__num {
  font-family: 'Anton';
  font-size: clamp(56px, 7vw, 96px);
  line-height: .9;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.ig__lb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-3);
  max-width: 220px; line-height: 1.4;
}
.ig__lead {
  color: var(--fg-2); font-size: 15px; line-height: 1.65;
  margin-bottom: 24px;
  max-width: 460px;
}
.ig__cta {
  display: inline-flex;
}

.ig__mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(4, 90px);
  gap: 12px;
}
.ig__cell {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform .35s var(--ease), border-color .3s var(--ease);
}
.ig__cell:hover { transform: translateY(-3px); border-color: var(--brand-teal); }
.ig__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease), filter .3s var(--ease);
  filter: brightness(.85) saturate(.95);
}
.ig__cell:hover img { transform: scale(1.05); filter: brightness(1) saturate(1); }
.ig__cell--lg { grid-column: 1; grid-row: 1 / span 3; }
.ig__cell:nth-child(2) { grid-column: 2; grid-row: 1 / span 2; }
.ig__cell--dec { grid-column: 1; grid-row: 4; }
.ig__cell--dec2 { grid-column: 2; grid-row: 3 / span 2; }
.ig__overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.9) 20%, transparent 100%);
  display: flex; flex-direction: column; gap: 3px;
}
.ig__overlay b { font-size: 13.5px; color: var(--fg); font-weight: 700; line-height: 1.3; }
.ig__overlay em {
  font-family: 'JetBrains Mono', monospace;
  font-style: normal; font-size: 10.5px; color: var(--fg-3); letter-spacing: .08em;
}
.ig__cell--dec, .ig__cell--dec2 {
  background:
    linear-gradient(135deg, rgba(0,224,112,.10), rgba(44,201,168,.06)),
    var(--surface);
  display: grid; place-items: center;
  border-color: rgba(0,224,112,.2);
}
.ig__dec {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center; color: var(--brand-green);
}
.ig__dec-num {
  font-family: 'Anton'; font-size: 44px; line-height: 1; letter-spacing: -.02em;
  color: var(--brand-green);
}
.ig__dec-lb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-2); max-width: 140px; line-height: 1.4;
}

@media (max-width: 900px) {
  .mx { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .mx__col ul li { padding: 14px 12px; font-size: 13px; min-height: 54px; }
  .mx__topcell { padding: 16px 12px; min-height: 100px; }
  .mx__price { font-size: 22px; }
  .mx__title { font-size: 16px; }
  .ig__grid { grid-template-columns: 1fr; }
  .ig__mosaic { grid-template-rows: repeat(4, 110px); }
}
@media (max-width: 560px) {
  .mx { grid-template-columns: 1fr; gap: 1px; }
  .mx__col:not(:first-child) .mx__topcell {
    flex-direction: row; align-items: center; justify-content: space-between; min-height: auto;
  }
  .mx__col ul li { padding: 12px 16px; }
  .mapo--tl, .mapo--tr { display: none; }
  .mapo__bar { flex-direction: column; align-items: stretch; gap: 12px; }
  .mapo__ext { justify-content: center; }
  .ig__mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(4, 220px); }
  .ig__cell--lg { grid-column: 1; grid-row: 1; }
  .ig__cell:nth-child(2) { grid-column: 1; grid-row: 2; }
  .ig__cell--dec { grid-column: 1; grid-row: 3; }
  .ig__cell--dec2 { grid-column: 1; grid-row: 4; }
}

/* ============================================================
   STORE upgrade — prod cards com SKU, stock, badge cat
   ============================================================ */
.prod__img { position: relative; }
.prod__badge-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fg-2);
}
.prod__icon { font-size: 60px; }
.prod__row {
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.prod__stock {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--brand-green); font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
}
.prod__stock i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-green);
  box-shadow: 0 0 6px rgba(0,224,112,.5);
}
.prod__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: .06em;
}
.prod[hidden] { display: none; }

/* ============================================================
   FAQ upgrade — categoria dentro do summary
   ============================================================ */
.faq summary { flex-direction: column; align-items: flex-start; gap: 8px; padding: 20px 22px; }
.faq summary > .faq__plus {
  position: absolute; right: 22px; top: 22px;
}
.faq details { position: relative; }
.faq__cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fg-3);
  padding: 3px 8px;
  border: 1px solid var(--border-strong); border-radius: 4px;
}
.faq__q {
  font-size: 15.5px; color: var(--fg); font-weight: 700;
  padding-right: 40px;
  line-height: 1.35;
}
.faq details[hidden] { display: none; }

/* ============================================================
   CONTACT upgrade — copy btn, map real, ghost btn
   ============================================================ */
.contact__list li { position: relative; }
.contact__copy {
  position: absolute; right: 0; top: 0;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--fg-2);
  transition: all .2s var(--ease);
}
.contact__copy:hover { color: var(--brand-green); border-color: rgba(0,224,112,.4); }
.contact__copy[data-copied="1"] {
  color: var(--brand-green); border-color: var(--brand-green);
}
.contact__v em {
  color: var(--fg-3); font-style: normal; font-size: 12px;
  font-family: 'JetBrains Mono', monospace; margin-left: 4px;
}
.contact__v small {
  color: var(--fg-3); font-size: 12.5px;
}

.contact__cta { display: flex; flex-wrap: wrap; gap: 10px; }

.contact__map {
  min-height: 480px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
}
.contact__map iframe {
  flex: 1; min-height: 440px;
  width: 100%; border: 0;
  filter: grayscale(.4) contrast(1.1) brightness(.85);
}
.map__topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.map__dots { display: flex; gap: 6px; }
.map__dots i {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.16);
}
.map__dots i:nth-child(1) { background: rgba(255,90,90,.55); }
.map__dots i:nth-child(2) { background: rgba(255,190,60,.55); }
.map__dots i:nth-child(3) { background: rgba(70,220,120,.55); }
.map__url {
  flex: 1; text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--fg-3); letter-spacing: .08em;
}
/* remove old map elements */
.map__frame, .map__pin, .pin, .map__hint { display: none; }

/* ============================================================
   Responsive tweaks
   ============================================================ */
@media (max-width: 960px) {
  .matrix__head, .matrix__row { grid-template-columns: 1.6fr 1fr 1fr 1fr; padding: 12px 14px; font-size: 12px; }
  .matrix__head > div, .matrix__row > div { font-size: 11px; }
  .contact__map { min-height: 380px; }
  .contact__map iframe { min-height: 340px; }
}
@media (max-width: 560px) {
  .plans__matrix { overflow-x: auto; }
  .matrix__head, .matrix__row { grid-template-columns: 1.4fr 60px 60px 60px; min-width: 500px; }
  .contact__copy { position: static; margin-top: 8px; display: inline-flex; }
  .filters--stack { flex-direction: row; }
}
