/* ============================================================
   BRACONARO GARAGE POWER LAB — landing styles
   ============================================================ */

:root {
  --bg:        #09090b;
  --bg-2:      #101013;
  --bg-3:      #17171b;
  --card:      #141417;
  --card-2:    #1b1b20;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.14);
  --txt:       #f5f5f6;
  --muted:     #a1a1aa;
  --muted-2:   #71717a;
  --accent:    #f5c518;
  --accent-2:  #ffd84d;
  --accent-ink:#0a0a0b;
  --glow:      rgba(245,197,24,0.55);

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 128px);

  --font-display: 'Anton', 'Barlow Condensed', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.82rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before, .eyebrow.center::after {
  content: "";
  width: 28px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.eyebrow.center::before { background: linear-gradient(90deg, var(--accent), transparent); }

.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  line-height: 1.0;
  margin: 0.3em 0 0;
  letter-spacing: 0.01em;
}
.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 60ch; margin: 14px 0 0; }

.accent { color: var(--accent); }
.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  text-stroke: 2px var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  padding: 0.95em 1.7em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 rgba(245,197,24,0);
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 8px 30px -6px var(--glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--txt);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-wa { background: #1faa52; color: #fff; }
.btn-wa:hover { background: #25c062; transform: translateY(-2px); box-shadow: 0 8px 30px -6px rgba(37,192,98,.5); }
.btn-sm { padding: 0.7em 1.2em; font-size: 0.85rem; }
.btn svg { width: 1.15em; height: 1.15em; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  background: rgba(9,9,11,0);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, padding .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(9,9,11,0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
  padding-block: 10px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.92rem;
  color: var(--muted);
  position: relative;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--accent); transition: width .25s ease;
}
.nav-links a:hover { color: var(--txt); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-portal { color: var(--accent); }
.nav-links a.nav-portal:hover { color: var(--accent); opacity: .82; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--txt); transition: .25s; }

@media (max-width: 960px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 26px; padding: 0 36px;
    background: var(--bg-2); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .3s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.25rem; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta-desktop { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: clamp(40px, 7vw, 90px);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(245,197,24,0.20), transparent 46%),
    radial-gradient(90% 70% at 90% 0%, rgba(245,197,24,0.30), transparent 40%),
    radial-gradient(140% 120% at 50% 120%, rgba(245,197,24,0.07), transparent 55%),
    linear-gradient(180deg, #060607, #0c0c0e 60%, #060607);
}
/* lightning energy streaks (intensity controlled by data-hero) */
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(74deg, transparent 48.8%, var(--glow) 49.4%, #fff 49.9%, var(--glow) 50.4%, transparent 51%),
    linear-gradient(82deg, transparent 67.8%, rgba(245,197,24,.4) 68.3%, transparent 69%),
    linear-gradient(66deg, transparent 31.6%, rgba(245,197,24,.35) 32.1%, transparent 33%);
  mix-blend-mode: screen;
  opacity: var(--hero-bolts, .5);
  -webkit-mask-image: radial-gradient(80% 80% at 75% 25%, #000, transparent 70%);
  mask-image: radial-gradient(80% 80% at 75% 25%, #000, transparent 70%);
  filter: blur(0.4px);
  pointer-events: none;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 100%, rgba(0,0,0,.7), transparent),
              linear-gradient(180deg, transparent 60%, var(--bg));
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: 100%;
}
.hero-logo { width: clamp(200px, 26vw, 320px); margin-bottom: 22px; filter: drop-shadow(0 6px 26px rgba(0,0,0,.6)); }
.hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  line-height: 1.05;
  margin: 0 0 22px;
  letter-spacing: 0.005em;
}
.hero h1 .l2 { color: var(--accent); display: block; }
.hero-sub {
  font-family: var(--font-cond);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-modes { display: flex; flex-wrap: wrap; gap: 10px; }
.mode-chip {
  font-family: var(--font-cond);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.8rem; color: var(--muted);
  padding: 7px 14px; border: 1px solid var(--line); border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.mode-chip::before { content: ""; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-2);
  background: var(--bg-3);
  clip-path: polygon(26px 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%, 0 26px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 90px -20px var(--glow);
}
.hero-media image-slot { width: 100%; height: 100%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(9,9,11,.55));
}
.hero-media .badge {
  position: absolute; left: 0; bottom: 18px; z-index: 3;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.85rem; padding: 10px 18px 10px 22px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 16/11; max-height: 46vh; order: 2; }
  .hero { min-height: auto; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  border-block: 1px solid var(--line);
  background: linear-gradient(180deg, #0b0b0d, #0e0e11);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat {
  padding: clamp(22px,3vw,38px) 14px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
}
.stat:first-child { border-left: 0; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--accent); line-height: 1;
}
.stat .lbl {
  font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.82rem; color: var(--muted);
}
@media (max-width: 640px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(odd) { border-left: 0; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: 0; }
}

/* ============================================================
   SECTION base
   ============================================================ */
section.block { padding-block: var(--section-y); position: relative; }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px,5vw,64px); align-items: center;
}
.about-media {
  aspect-ratio: 5/4; border: 1px solid var(--line-2); background: var(--bg-3);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  box-shadow: 0 30px 70px -34px rgba(0,0,0,.8);
}
.about-media image-slot { width: 100%; height: 100%; }
.about p { color: var(--muted); margin: 1em 0; }
.about p strong { color: var(--txt); }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
@media (max-width: 820px){ .about-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MODALIDADES
   ============================================================ */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .modes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .modes-grid { grid-template-columns: 1fr; } }
.mode-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.mode-card:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 26px 50px -28px rgba(0,0,0,.9), 0 0 50px -28px var(--glow); }
.mode-photo { position: relative; aspect-ratio: 4/3; background: var(--bg-3); }
.mode-photo image-slot { width: 100%; height: 100%; }
.mode-photo .idx {
  position: absolute; top: 10px; left: 12px; z-index: 3;
  font-family: var(--font-display); font-size: 1.6rem; color: var(--accent);
  text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
.mode-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,20,23,.95));
}
.mode-body { padding: 18px 20px 24px; }
.mode-body h3 {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 400;
  font-size: 1.5rem; margin: 0 0 8px; letter-spacing: 0.02em;
}
.mode-body p { color: var(--muted); font-size: 0.96rem; margin: 0; line-height: 1.5; }

/* ============================================================
   TECNOLOGIA / TREINO MONITORADO (uGym · Team Pulse)
   ============================================================ */
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; margin-top: 40px; }
.tech-benes { display: flex; flex-direction: column; gap: 18px; }
.tbene { display: flex; gap: 14px; align-items: flex-start; }
.tbene-ic { font-size: 1.7rem; line-height: 1; flex: 0 0 auto; }
.tbene b { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 1.12rem; }
.tbene p { color: var(--muted); margin: 3px 0 0; font-size: 0.95rem; line-height: 1.5; }

.tv-foto { display: flex; justify-content: center; }
.tv-foto img { width: 100%; max-width: 580px; height: auto; display: block; filter: drop-shadow(0 24px 50px rgba(0,0,0,0.55)); }
.tv-mock { background: linear-gradient(180deg, #111114, #0b0b0d); border: 1px solid var(--line-2); border-radius: 14px; padding: 18px 20px; box-shadow: 0 24px 60px rgba(0,0,0,0.55); }
.tv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.tv-title { font-family: var(--font-display); letter-spacing: 0.05em; font-size: 1.15rem; }
.tv-live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-cond); font-weight: 700; letter-spacing: 0.14em; font-size: 0.75rem; color: #ff5b50; }
.tv-live i { width: 9px; height: 9px; border-radius: 50%; background: #ff5b50; animation: tvpulse 1.2s ease-in-out infinite; }
@keyframes tvpulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.65); } }
.tv-rows { display: flex; flex-direction: column; gap: 10px; }
.tv-row { display: grid; grid-template-columns: 18px 64px 1fr max-content max-content; align-items: center; gap: 10px; }
.tv-pos { font-family: var(--font-cond); font-weight: 700; color: var(--muted-2); text-align: center; }
.tv-nome { font-weight: 600; font-size: 0.92rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tv-bar { height: 9px; background: rgba(255,255,255,0.06); border-radius: 5px; overflow: hidden; }
.tv-bar i { display: block; height: 100%; border-radius: 5px; }
.tv-bpm, .tv-kcal { font-family: var(--font-cond); font-weight: 700; font-size: 0.98rem; text-align: right; white-space: nowrap; }
.tv-bpm small, .tv-kcal small { color: var(--muted-2); font-weight: 500; font-size: 0.72rem; }
.tv-zonas { display: flex; flex-wrap: wrap; gap: 9px 16px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 0.72rem; color: var(--muted); }
.tv-zonas span { display: inline-flex; align-items: center; gap: 6px; }
.tv-zonas i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; }

.tech-hardware { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 32px; margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--line); }
.tech-hw-imgs { display: flex; align-items: center; flex: 0 0 auto; }
.tech-hw-imgs img { width: 132px; height: auto; display: block; filter: drop-shadow(0 16px 28px rgba(0,0,0,0.55)); }
.tech-hw-imgs img:first-child { transform: rotate(-5deg); z-index: 1; }
.tech-hw-imgs img:last-child { transform: rotate(5deg); margin-left: -22px; }
.tech-hw-tx h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.3rem, 3vw, 1.85rem); text-transform: uppercase; letter-spacing: 0.01em; margin: 0 0 8px; }
.tech-hw-tx p { color: var(--muted); margin: 0; max-width: 54ch; line-height: 1.6; }
@media (max-width: 640px) { .tech-hardware { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 18px; } .tech-hw-imgs img { width: 116px; } }

.tech-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.tech-selo { font-family: var(--font-cond); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-size: 0.92rem; }
.tech-selo b { color: var(--accent); }
@media (max-width: 820px) { .tech-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PLANOS
   ============================================================ */
.plans-toggle {
  display: inline-flex; gap: 4px; padding: 5px;
  border: 1px solid var(--line-2); border-radius: 999px; background: var(--bg-2);
  margin: 32px auto 0;
}
.plans-toggle button {
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.92rem; color: var(--muted); background: transparent; border: 0; cursor: pointer;
  padding: 0.6em 1.4em; border-radius: 999px; transition: .2s; white-space: nowrap;
}
.plans-toggle button.active { background: var(--accent); color: var(--accent-ink); }
/* Com três prazos (Mensal / Trimestral / Semestral) a pílula não cabe mais em uma
   linha no celular: encolhe o texto e o respiro antes de deixar estourar a tela. */
@media (max-width: 520px){
  .plans-toggle { display: flex; width: 100%; }
  .plans-toggle button { flex: 1; padding: 0.6em 0.4em; font-size: 0.78rem; letter-spacing: 0.04em; }
}
.toggle-note {
  font-family: var(--font-cond); letter-spacing: .06em; text-transform: uppercase;
  font-size: .8rem; color: var(--accent); margin-top: 14px;
}
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 12px;
}
.plan {
  position: relative;
  background: var(--card); border: 1px solid var(--line);
  padding: 30px 26px 30px; display: flex; flex-direction: column; gap: 6px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-6px); border-color: var(--line-2); }
.plan.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(245,197,24,0.08), var(--card) 40%);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.9), 0 0 60px -30px var(--glow);
}
.plan.featured { padding-top: 40px; }
.plan .pop {
  position: absolute; top: -1px; right: 22px; white-space: nowrap;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  font-size: .72rem; padding: 6px 14px; clip-path: polygon(0 0,100% 0,100% 100%,8px 100%);
}
.plan .freq {
  font-family: var(--font-display); text-transform: uppercase; font-size: 2rem; line-height: 1;
}
.plan .freq small { font-family: var(--font-cond); font-size: .9rem; color: var(--muted); letter-spacing: .1em; display:block; margin-top:4px; font-weight:600;}
.plan .price { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 2px; }
.plan .price .cur { color: var(--muted); font-family: var(--font-cond); font-weight: 600; font-size: 1.1rem; }
.plan .price .val { font-family: var(--font-display); font-size: 3.1rem; line-height: 1; color: var(--txt); }
.plan .price .per { color: var(--muted); font-family: var(--font-cond); letter-spacing:.08em; font-size: .9rem; }
.plan .obs { color: var(--muted-2); font-size: .85rem; font-family: var(--font-cond); letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.plan .btn { margin-top: auto; width: 100%; }
@media (max-width: 820px){ .plans-grid { grid-template-columns: 1fr; } }

.pay {
  margin-top: 34px; border: 1px solid var(--line); background: var(--bg-2);
  padding: clamp(22px,3vw,32px); display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: start;
}
.pay h4 { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: 1.4rem; margin: 0; letter-spacing:.02em; }
.pay ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.pay li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: .96rem; }
.pay li::before { content: ""; width: 8px; height: 8px; margin-top: 8px; flex: 0 0 auto; background: var(--accent); transform: rotate(45deg); }
.pay li.warn { color: var(--txt); font-weight: 600; }
.pay li.warn::before { background: #ff6b4a; }
@media (max-width: 640px){ .pay { grid-template-columns: 1fr; gap: 16px; } }

/* ============================================================
   HORÁRIOS
   ============================================================ */
.hours-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .hours-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .hours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .hours-grid { grid-template-columns: 1fr; } }
.day {
  border: 1px solid var(--line); background: var(--card); padding: 20px 20px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .25s ease, transform .25s ease;
}
.day:hover { border-color: var(--line-2); transform: translateY(-4px); }
.day.closed { opacity: .55; }
.day.today { border-color: var(--accent); box-shadow: 0 0 50px -30px var(--glow); }
.day .dname {
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  font-size: 1rem; display: flex; align-items: center; justify-content: space-between;
}
.day .dname .tag { font-size: .68rem; background: var(--accent); color: var(--accent-ink); padding: 3px 8px; letter-spacing: .08em; }
.day .slots { display: flex; flex-direction: column; gap: 8px; }
.slot {
  font-family: var(--font-cond); font-weight: 600; letter-spacing: .04em;
  font-size: 1.05rem; color: var(--txt); display: flex; align-items: center; gap: 9px;
}
.slot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex:0 0 auto; }
.slot.none { color: var(--muted-2); }
.slot.none::before { background: var(--muted-2); }

/* ============================================================
   LOCAL / MAPA
   ============================================================ */
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line-2); }
.local-info { padding: clamp(28px,4vw,48px); background: var(--bg-2); display: flex; flex-direction: column; }
.local-info h3 { font-family: var(--font-display); font-weight:400; text-transform: uppercase; font-size: clamp(1.8rem,3vw,2.6rem); margin: 14px 0 6px; letter-spacing:.02em; }
.local-line { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line); color: var(--muted); }
.local-line:first-of-type { border-top: 0; }
.local-line .ic { width: 34px; height: 34px; flex:0 0 auto; border: 1px solid var(--line-2); display:grid; place-items:center; color: var(--accent); }
.local-line .ic svg { width: 16px; height: 16px; }
.local-line b { color: var(--txt); font-weight: 600; display:block; font-family: var(--font-cond); letter-spacing:.06em; text-transform: uppercase; font-size:.8rem; margin-bottom:2px; }
.local-line a { color: var(--muted); transition: color .2s; }
.local-line a:hover { color: var(--accent); }
.local-actions { display:flex; gap: 12px; flex-wrap: wrap; margin-top: auto; padding-top: 24px; }
.local-map { min-height: 380px; position: relative; background: var(--bg-3); }
.local-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(0.4) contrast(1.05) brightness(0.85); }
@media (max-width: 820px){ .local-grid { grid-template-columns: 1fr; } .local-map { min-height: 320px; order: 2; } }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  position: relative; text-align: center; overflow: hidden;
  padding-block: clamp(70px, 10vw, 150px);
  background:
    radial-gradient(70% 130% at 50% 0%, rgba(245,197,24,0.18), transparent 55%),
    radial-gradient(60% 100% at 50% 120%, rgba(245,197,24,0.10), transparent 60%),
    #060607;
  border-top: 1px solid var(--line);
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(78deg, transparent 49%, rgba(245,197,24,.5) 49.6%, #fff 50%, rgba(245,197,24,.5) 50.4%, transparent 51%);
  mix-blend-mode: screen; opacity: .25;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 70%);
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 70%);
}
.cta .display { font-size: clamp(2.6rem, 9vw, 6.5rem); margin: 0; }
.cta .display .big { display:block; color: var(--accent); font-size: 1.25em; }
.cta-sub { color: var(--muted); max-width: 50ch; margin: 18px auto 30px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060607; border-top: 1px solid var(--line); padding-block: clamp(40px,6vw,70px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-logo img { height: 56px; margin-bottom: 16px; }
.footer p { color: var(--muted-2); font-size: .92rem; max-width: 34ch; }
.footer h5 { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .16em; font-size: .85rem; color: var(--txt); margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--muted); font-size: .94rem; transition: color .2s; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted-2); font-size: .82rem; font-family: var(--font-cond); letter-spacing: .06em; text-transform: uppercase; }
.footer-bottom a:hover { color: var(--accent); }
@media (max-width: 720px){ .footer-grid { grid-template-columns: 1fr 1fr; } .footer-logo { grid-column: 1 / -1; } }

/* social */
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--muted); transition: .2s; }
.socials a:hover { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
/* instant (transition-less) reveal — used when motion is reduced, JS is off,
   or the page is rendered offscreen (screenshots / PDF / export) where
   time-based transitions freeze and would otherwise leave content invisible */
html.no-js .reveal,
html.reveal-instant .reveal,
.reveal-instant .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* sticky mobile WhatsApp */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25c062; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,192,98,.6);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* Tweaks trigger (opens the live personalization panel) */
.twk-fab {
  position: fixed; left: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.8rem; color: var(--accent-ink); background: var(--accent);
  border: 0; padding: 11px 16px; cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  box-shadow: 0 10px 24px -10px var(--glow);
  transition: transform .2s ease, background .2s ease;
}
.twk-fab:hover { background: var(--accent-2); transform: translateY(-2px); }
.twk-fab svg { width: 16px; height: 16px; }

/* ============================================================
   Aula experimental (captação de lead)
   ============================================================ */
.experimental .cta-sub { max-width: 620px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.exp-form { max-width: 680px; margin: 32px auto 0; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.exp-form input, .exp-form select {
  width: 100%; padding: .9em 1em; background: var(--card); border: 1px solid var(--line-2);
  color: var(--txt); font-family: var(--font-body); font-size: 1rem; outline: none;
  transition: border-color .2s ease;
}
.exp-form input::placeholder { color: var(--muted-2); }
.exp-form input:focus, .exp-form select:focus { border-color: var(--accent); }
.exp-form .btn-wa { width: 100%; justify-content: center; }
.exp-hint { text-align: center; color: var(--muted-2); font-size: .84rem; margin: 12px 0 0; }
@media (max-width: 560px) { .exp-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Depoimentos
   ============================================================ */
.dep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.dep-card {
  margin: 0; background: var(--card); border: 1px solid var(--line); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.dep-stars { color: var(--accent); letter-spacing: 3px; font-size: 1.05rem; }
.dep-card blockquote { margin: 0; color: var(--txt); font-size: 1.02rem; line-height: 1.55; flex: 1; }
.dep-card blockquote::before { content: "\201C"; color: var(--accent); font-size: 1.4em; line-height: 0; margin-right: 2px; }
.dep-card figcaption { display: flex; align-items: center; gap: 12px; }
.dep-ini {
  width: 46px; height: 46px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--line-2); color: var(--accent);
  font-family: var(--font-cond); font-weight: 700; font-size: .95rem;
}
.dep-quem { display: flex; flex-direction: column; line-height: 1.25; }
.dep-quem b { font-family: var(--font-cond); font-weight: 700; letter-spacing: .01em; }
.dep-quem small { color: var(--muted-2); font-size: .82rem; }
@media (max-width: 900px) { .dep-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; } }
