/* ===== FONTES (self-hosted) ===== */
@font-face{font-family:'Poppins';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/poppins-500.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/poppins-600.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/poppins-700.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:800;font-display:swap;src:url('../fonts/poppins-800.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:400 600;font-display:swap;src:url('../fonts/inter-var.woff2') format('woff2');}

/* ===== VARIÁVEIS / PALETA (verde do logo + preto da loja) ===== */
:root {
  --green: #2ce02c;
  --green-dark: #22c422;
  --green-ink: #06210a;
  --wa: #25D366;
  --bg: #0b0c0c;
  --bg-2: #121314;
  --surface: #171819;
  --surface-2: #1e1f21;
  --border: #292a2d;
  --text: #f2f2f3;
  --text-dim: #a9aaaf;
  --text-mute: #77787e;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.6);
  --glow: 0 0 44px rgba(44,224,44,.18);
  --container: 1180px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Poppins', system-ui, sans-serif; line-height: 1.15; letter-spacing: -.02em; color: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon--fill { fill: currentColor; stroke: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-family: 'Poppins', system-ui, sans-serif;
  padding: 12px 22px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s;
  font-size: .95rem; white-space: nowrap; line-height: 1.2;
}
.btn .icon { font-size: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 15px 30px; font-size: 1.05rem; }
.btn--primary { background: var(--green); color: var(--green-ink); box-shadow: 0 8px 24px rgba(44,224,44,.28); }
.btn--primary:hover { background: var(--green-dark); box-shadow: 0 12px 32px rgba(44,224,44,.4); }
.btn--dark { background: #0e0f0f; color: var(--green); }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--white); border: 2px solid var(--border); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--whatsapp { background: var(--wa); color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.25); }
.btn--whatsapp:hover { background: #1ebe5a; }

/* ===== TOPO ===== */
.btn--ig { border: none; color: #fff; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); box-shadow: 0 8px 24px rgba(220,39,67,.25); }
.btn--ig:hover { color: #fff; filter: brightness(1.08); }
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,12,12,.72); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent; transition: background .35s, border-color .35s, box-shadow .35s;
}
.hdr::before { content: ""; position: absolute; inset: auto 0 -1px 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(44,224,44,.5), transparent); opacity: 0; transition: opacity .35s; }
.hdr.is-scrolled { background: rgba(11,12,12,.92); border-color: var(--border); box-shadow: 0 10px 30px -18px rgba(0,0,0,.9); }
.hdr.is-scrolled::before { opacity: 1; }
.hdr__inner { display: flex; align-items: center; gap: 14px; height: 80px; transition: height .35s var(--ease); }
.hdr.is-scrolled .hdr__inner { height: 66px; }
.hdr__logo img { height: 52px; width: auto; transition: height .35s var(--ease); }
.hdr.is-scrolled .hdr__logo img { height: 42px; }

/* nav com indicador deslizante */
.hnav { position: relative; display: flex; align-items: center; gap: 4px; margin-left: 18px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); }
.hnav__ind { position: absolute; top: 4px; left: 0; height: calc(100% - 8px); width: 0; border-radius: 999px; background: rgba(44,224,44,.14); border: 1px solid rgba(44,224,44,.35); opacity: 0; transition: transform .35s var(--ease), width .35s var(--ease), opacity .25s; pointer-events: none; }
.hnav__link { position: relative; z-index: 1; padding: 9px 14px; border-radius: 999px; font-weight: 500; font-size: .93rem; color: var(--text-dim); white-space: nowrap; transition: color .2s; }
.hnav__link:hover, .hnav__link.is-active { color: #fff; }

/* status ao vivo */
.hdr__status { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; color: var(--text-dim); padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); white-space: nowrap; }
.hdr__status i { width: 8px; height: 8px; border-radius: 50%; background: var(--text-mute); }
.hdr__status.is-open { color: var(--green); border-color: rgba(44,224,44,.35); background: rgba(44,224,44,.08); }
.hdr__status.is-open i { background: var(--green); box-shadow: 0 0 0 4px rgba(44,224,44,.18); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(44,224,44,.45); } 70% { box-shadow: 0 0 0 7px rgba(44,224,44,0); } 100% { box-shadow: 0 0 0 0 rgba(44,224,44,0); } }
.hdr__actions { display: flex; align-items: center; gap: 10px; }
.hdr__ig { width: 44px; height: 44px; padding: 0; border-radius: 50%; font-size: 1.25rem; }
.hdr__burger { display: none; width: 44px; height: 44px; border: 1px solid var(--border); background: var(--surface); border-radius: 50%; cursor: pointer; position: relative; }
.hdr__burger span { position: absolute; left: 13px; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease); }
.hdr__burger span:nth-child(1) { top: 15px; } .hdr__burger span:nth-child(2) { top: 21px; } .hdr__burger span:nth-child(3) { top: 27px; }
.hdr__burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hdr__burger.is-open span:nth-child(2) { opacity: 0; }
.hdr__burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* menu celular */
.mnav { position: fixed; inset: 0; z-index: 99; background: rgba(11,12,12,.97); padding: 96px 20px 28px; display: flex; flex-direction: column; gap: 6px; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .3s, transform .3s var(--ease), visibility 0s .3s; }
.mnav.is-open { opacity: 1; transform: none; visibility: visible; transition: opacity .3s, transform .3s var(--ease); }
.mnav__link { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; border-bottom: 1px solid var(--border); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.35rem; color: #fff; opacity: 0; transform: translateY(10px); transition: opacity .35s, transform .35s var(--ease); }
.mnav.is-open .mnav__link { opacity: 1; transform: none; }
.mnav.is-open .mnav__link:nth-child(2) { transition-delay: .05s; } .mnav.is-open .mnav__link:nth-child(3) { transition-delay: .1s; } .mnav.is-open .mnav__link:nth-child(4) { transition-delay: .15s; } .mnav.is-open .mnav__link:nth-child(5) { transition-delay: .2s; }
.mnav__link .icon { color: var(--green); font-size: 1.2rem; }
.mnav__foot { margin-top: auto; display: grid; gap: 10px; }
.mnav__hours { display: flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: .92rem; margin-bottom: 6px; }
.mnav__hours .icon { color: var(--green); }
.mnav__foot .btn { width: 100%; }

@media (max-width: 1080px) { .hdr__status { display: none; } }
@media (max-width: 900px) {
  .hnav, .hdr__wa-full { display: none; }
  .hdr__burger { display: block; }
  .hdr__actions { margin-left: auto; }
  .hdr__inner { height: 68px; } .hdr.is-scrolled .hdr__inner { height: 62px; }
  .hdr__logo img { height: 44px; } .hdr.is-scrolled .hdr__logo img { height: 40px; }
}
@media (min-width: 901px) { .hdr__wa-icon { display: none; } }
.hdr__wa-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; font-size: 1.3rem; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 520px at 100% -5%, rgba(44,224,44,.15), transparent 55%),
    radial-gradient(700px 500px at -10% 110%, rgba(44,224,44,.06), transparent 60%),
    var(--bg);
  padding: 56px 0 72px;
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(44,224,44,.1); color: var(--green); border: 1px solid rgba(44,224,44,.3);
  font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero__title { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; }
.hero__title .hl { color: var(--green); }
.hero__subtitle { margin-top: 20px; font-size: 1.08rem; color: var(--text-dim); max-width: 540px; }
.hero__subtitle strong { color: var(--white); font-weight: 600; }
.hero__tagline { margin-top: 14px; font-weight: 600; color: var(--green); font-style: italic; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 32px; }
.hero__trust-item { display: flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 500; color: var(--text-dim); }
.hero__trust-item .icon { color: var(--green); font-size: 1.1rem; }

/* ===== CARROSSEL ===== */
.carousel { position: relative; min-width: 0; width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg), var(--glow); background: #000; }
.carousel__track { display: flex; transition: transform .6s var(--ease); }
.slide { min-width: 100%; position: relative; }
.slide__link { display: block; }
.slide__img { width: 100%; aspect-ratio: 1/1; object-fit: cover; height: auto; }
.slide__overlay {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 22px 22px;
  display: flex; align-items: center; justify-content: flex-end; gap: 16px;
  background: linear-gradient(0deg, rgba(0,0,0,.8), rgba(0,0,0,.3) 60%, transparent);
  pointer-events: none;
}
.slide__overlay > * { pointer-events: auto; }
.slide__btn { padding: 10px 18px; font-size: .9rem; }
.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(0,0,0,.55); color: #fff; font-size: 1.1rem; backdrop-filter: blur(4px);
  display: grid; place-items: center; transition: background .2s, color .2s, transform .2s; z-index: 3;
}
.carousel__btn:hover { background: var(--green); color: var(--green-ink); transform: translateY(-50%) scale(1.08); }
.carousel__btn--prev { left: 14px; }
.carousel__btn--next { right: 14px; }
.carousel__dots { position: absolute; top: 16px; right: 16px; display: flex; gap: 8px; z-index: 3; }
.carousel__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.45); transition: all .25s;
}
.carousel__dots button.active { background: var(--green); width: 26px; border-radius: 999px; }

/* ===== SEÇÕES ===== */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-2); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section__eyebrow {
  display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.section__title { font-size: clamp(1.7rem, 3.3vw, 2.5rem); font-weight: 800; }
.section__subtitle { margin-top: 14px; color: var(--text-dim); font-size: 1.05rem; }
.section__cta { text-align: center; margin-top: 48px; }


/* ===== SERVIÇOS: seletor de aparelho + palco ===== */

  /* abas com miniatura */
  .picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 760px; margin: 0 auto 22px; }
  .picker__tab {
    position: relative; display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 10px; border-radius: 16px;
    background: var(--surface); border: 1px solid var(--border); color: var(--text-dim); cursor: pointer; text-align: left;
    font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .98rem; overflow: hidden;
    transition: color .25s, border-color .25s, transform .25s var(--ease), background .25s;
  }
  .picker__tab img { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; flex-shrink: 0; filter: saturate(.6); transition: filter .25s; }
  .picker__tab:hover { color: #fff; border-color: var(--border); transform: translateY(-2px); }
  .picker__tab.is-active { color: #fff; border-color: rgba(44,224,44,.5); background: var(--surface-2); }
  .picker__tab.is-active img { filter: none; }
  .picker__bar { position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: var(--green); transform: scaleX(0); transform-origin: left; }
  .picker__tab.is-active .picker__bar { transform: scaleX(1); }
  @keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

  /* palco */
  .stage { position: relative; border-radius: 26px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
  .stage__panel { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .stage__panel[hidden] { display: none; }
  .stage__panel.is-in .stage__media img { animation: stageImg .9s var(--ease) both; }
  .stage__panel.is-in .stage__body > * { animation: stageText .6s var(--ease) both; }
  .stage__panel.is-in .stage__body > :nth-child(2) { animation-delay: .08s; }
  .stage__panel.is-in .stage__body > :nth-child(3) { animation-delay: .16s; }
  .stage__panel.is-in .stage__body > :nth-child(4) { animation-delay: .24s; }
  .stage__panel.is-in .stage__body > :nth-child(5) { animation-delay: .32s; }
  @keyframes stageImg { from { opacity: 0; transform: scale(1.08) translateX(-3%); } to { opacity: 1; transform: none; } }
  @keyframes stageText { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
  /* barras estilo stories */
  .stage__progress { position: absolute; top: 14px; left: 14px; right: 14px; z-index: 3; display: flex; gap: 6px; }
  .stage__progress span { flex: 1; height: 4px; border-radius: 999px; background: rgba(255,255,255,.22); overflow: hidden; }
  .stage__progress i { display: block; height: 100%; width: 100%; background: var(--green); transform: scaleX(0); transform-origin: left; }
  .stage__progress span.is-done i { transform: scaleX(1); }
  .stage__progress span.is-active i { animation: fill var(--stage-dur, 6s) linear forwards; }
  .stage.is-paused .stage__progress span.is-active i { animation-play-state: paused; }
  .stage__media { position: relative; background: #000; min-height: 460px; }
  .stage__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .stage__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--surface) 100%); pointer-events: none; }
  .stage__body { padding: 48px 48px 44px; display: flex; flex-direction: column; justify-content: center; position: relative;
    background: radial-gradient(600px 300px at 100% 0%, rgba(44,224,44,.1), transparent 60%); }
  .stage__kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-weight: 600; font-size: .88rem; margin-bottom: 12px; }
  .stage__kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(44,224,44,.18); }
  .stage__body h3 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.1; margin-bottom: 10px; }
  .stage__lead { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 20px; max-width: 46ch; }
  .stage__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
  .stage__tags span { display: inline-flex; align-items: center; gap: 7px; font-size: .9rem; font-weight: 500; color: var(--text); background: var(--surface-2); border: 1px solid var(--border); padding: 7px 12px; border-radius: 999px; }
  .stage__tags .icon { color: var(--green); font-size: .95rem; }
  .stage__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; }
  .stage__brands { color: var(--text-mute); font-size: .88rem; }
  .stage__brands b { color: var(--text-dim); font-weight: 500; }
  .svc__note { text-align: center; color: var(--text-mute); font-size: .88rem; margin-top: 22px; }
  .svc__note a { color: var(--green); font-weight: 600; }

  @media (max-width: 940px) {
    .stage__panel { grid-template-columns: 1fr; }
    .stage__media { min-height: 0; aspect-ratio: 16/10; }
    .stage__media::after { background: linear-gradient(0deg, var(--surface) 0%, transparent 40%); }
    .stage__body { padding: 8px 28px 32px; }
  }
  @media (max-width: 720px) {
    .picker { gap: 8px; }
    .picker__tab { flex-direction: column; align-items: center; gap: 8px; padding: 10px 6px 12px; font-size: .85rem; text-align: center; }
    .picker__tab img { width: 44px; height: 44px; }
    .stage { border-radius: 20px; }
    .stage__body { padding: 4px 20px 26px; }
    .stage__actions .btn { width: 100%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .stage__panel.is-in .stage__media img, .stage__panel.is-in .stage__body > * { animation: none; }
    .stage__progress span.is-active i { animation: none; transform: scaleX(1); }
  }

/* ===== ACESSÓRIOS (vitrine + grade) ===== */
.acc { display: grid; grid-template-columns: 1fr 1.05fr; gap: 44px; align-items: center; }
.acc__visual { display: grid; gap: 16px; }
.acc__main { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #000; box-shadow: var(--shadow-lg); aspect-ratio: 1/1; }
.acc__main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.acc__main:hover img { transform: scale(1.03); }
.acc__tag {
  position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11,12,12,.82); backdrop-filter: blur(6px); border: 1px solid rgba(44,224,44,.35); color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .85rem; padding: 8px 14px; border-radius: 999px;
}
.acc__tag .icon { color: var(--green); font-size: 1rem; }
.acc__second {
  display: grid; grid-template-columns: 112px 1fr; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; overflow: hidden;
  transition: border-color .25s;
}
.acc__second:hover { border-color: rgba(44,224,44,.35); }
.acc__second img { width: 112px; height: 112px; object-fit: cover; border-radius: var(--radius-sm); }
.acc__second strong { display: block; font-family: 'Poppins', sans-serif; font-size: 1rem; color: var(--white); margin-bottom: 4px; }
.acc__second span { color: var(--text-dim); font-size: .9rem; }
.acc__content h3 { font-size: clamp(1.45rem, 2.4vw, 1.95rem); margin-bottom: 12px; line-height: 1.15; }
.acc__content > p { color: var(--text-dim); font-size: 1.02rem; margin-bottom: 22px; max-width: 54ch; }
.acc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 26px; }
.acc__grid li {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; padding: 20px 12px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); color: #fff;
  transition: border-color .25s, transform .25s var(--ease), color .25s;
}
.acc__grid li:hover { border-color: rgba(44,224,44,.45); transform: translateY(-3px); color: var(--green); }
.glyph { width: 40px; height: 40px; display: block; margin-bottom: 6px; background-color: currentColor; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; -webkit-mask-size: contain; mask-size: contain; }
.glyph--svg { background: none; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.acc__grid strong { display: block; font-family: 'Poppins', sans-serif; font-size: .95rem; color: var(--white); line-height: 1.2; }
.acc__grid small { color: var(--text-mute); font-size: .78rem; }
.acc__cta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 18px; }
.acc__hint { color: var(--text-mute); font-size: .88rem; max-width: 30ch; }

/* como funciona */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; position: relative;
}
.step__num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: var(--green-ink);
  display: grid; place-items: center; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.15rem; margin-bottom: 18px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: .95rem; }

/* ===== POR QUE A TUPÃ (bento: foto de prova + motivos + faixa) ===== */
.why { display: grid; grid-template-columns: 1.1fr 1fr 1fr; grid-template-rows: auto auto auto; gap: 20px; }
.why__photo { grid-row: 1 / 3; position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #000; min-height: 420px; box-shadow: var(--shadow); }
.why__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; transition: transform .6s var(--ease); }
.why__photo:hover img { transform: scale(1.04); }
.why__photo-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 120px 26px 26px; background: linear-gradient(0deg, rgba(11,12,12,.96) 0%, rgba(11,12,12,.75) 55%, transparent); }
.why__photo-body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.why__photo-body p { color: var(--text-dim); font-size: .95rem; }
.why__card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s var(--ease);
}
.why__card:hover { transform: translateY(-4px); border-color: rgba(44,224,44,.35); box-shadow: var(--shadow-lg); }
.why__card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.why__card p { color: var(--text-dim); font-size: .94rem; }
.why__icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 16px; color: #fff; font-size: 2.6rem; transition: color .25s; }
.why__icon .icon { width: 1em; height: 1em; stroke-width: 1.75; }
.why__card:hover .why__icon, .why__photo:hover .why__icon { color: var(--green); }
.why__icon--wa { color: var(--wa); margin-bottom: 0; font-size: 2.4rem; }
.why__strip {
  grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px;
  background-image: radial-gradient(600px 200px at 0% 50%, rgba(37,211,102,.1), transparent 70%);
}
.why__strip h3 { font-size: 1.12rem; margin-bottom: 4px; }
.why__strip p { color: var(--text-dim); font-size: .94rem; }
.diferenciais__note { text-align: center; margin-top: 26px; font-size: .85rem; color: var(--text-mute); }

/* ===== AVALIAÇÕES ===== */
.rating-hero { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: stretch; margin-bottom: 36px; }
.rating-hero__photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: #000; min-height: 320px; }
.rating-hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rating-hero__card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 34px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 8px;
  background-image: radial-gradient(500px 300px at 100% 0%, rgba(44,224,44,.1), transparent 60%);
}
.rating-hero__score { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 4.2rem; color: var(--green); line-height: 1; }
.rating-hero__stars { display: flex; gap: 4px; color: #fbbc05; font-size: 1.35rem; }
.rating-hero__count { color: var(--white); font-weight: 600; font-size: 1.05rem; }
.rating-hero__text { color: var(--text-dim); font-size: .98rem; max-width: 46ch; margin: 6px 0 14px; }

/* trilho de avaliações: rola sozinho, setas nos lados, arrastável */
.rev { position: relative; margin: 0 -20px; }
.rev__scroller { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: auto; padding: 4px 20px 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; cursor: grab; }
.rev__scroller::-webkit-scrollbar { display: none; }
.rev__scroller.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rev-card { flex: 0 0 340px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.rev-card header { display: flex; align-items: center; gap: 12px; }
.rev-card header strong { display: block; font-family: 'Poppins', sans-serif; font-size: .98rem; color: var(--white); line-height: 1.2; }
.rev-card .stars { margin: 3px 0 2px; font-size: .8rem; }
.rev-card header small { color: var(--text-mute); font-size: .78rem; }
.rev-card p { color: var(--text-dim); font-size: .95rem; }
.rev__btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: rgba(23,24,25,.92); color: #fff; cursor: pointer; display: grid; place-items: center; font-size: 1.1rem; box-shadow: var(--shadow); transition: background .2s, color .2s, border-color .2s; }
.rev__btn:hover { background: var(--green); color: var(--green-ink); border-color: var(--green); }
.rev__btn--prev { left: 4px; }
.rev__btn--next { right: 4px; }
.rev__hint { text-align: center; color: var(--text-mute); font-size: .85rem; margin-top: 14px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--green-ink); display: grid; place-items: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; flex-shrink: 0; }
img.avatar { object-fit: cover; }

/* ===== NOSSA LOJA (galeria) ===== */
.galeria { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.galeria__item { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #000; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.galeria__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.galeria__item:hover img { transform: scale(1.05); }

/* galeria: clique amplia */
.galeria__link { position: absolute; inset: 0; display: block; cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.92); display: grid; place-items: center; padding: 20px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(100%, 1100px); max-height: 90vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox__close, .lightbox__nav { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--border); background: rgba(23,24,25,.9); color: #fff; cursor: pointer; display: grid; place-items: center; font-size: 1.3rem; transition: background .2s, color .2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--green); color: var(--green-ink); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__close .icon { transform: rotate(45deg); }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }

/* ===== ONDE ESTAMOS ===== */
.visita { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: stretch; }
.visita__info .section__title { margin-bottom: 14px; }
.visita__status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600; border: 1px solid var(--border); background: var(--surface); color: var(--text-dim); margin-bottom: 22px; }
.visita__status i { width: 8px; height: 8px; border-radius: 50%; background: var(--text-mute); }
.visita__status.is-open { color: var(--green); border-color: rgba(44,224,44,.35); background: rgba(44,224,44,.08); }
.visita__status.is-open i { background: var(--green); box-shadow: 0 0 0 4px rgba(44,224,44,.18); }
.visita__row { display: grid; grid-template-columns: 26px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--border); }
.visita__row:last-of-type { border-bottom: 1px solid var(--border); }
.visita__row .icon { color: var(--green); font-size: 1.35rem; margin-top: 2px; }
.visita__row h3 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.visita__row address, .visita__row a, .visita__row span, .visita__row b { color: var(--text-dim); font-size: .98rem; line-height: 1.5; font-weight: 400; }
.visita__row a:hover { color: var(--green); }
.horario li { display: flex; align-items: baseline; gap: 10px; padding: 3px 0; }
.horario li::after { content: ""; flex: 1; order: 2; border-bottom: 1px dotted var(--border); transform: translateY(-4px); }
.horario li span { order: 1; }
.horario li b { order: 3; }
.horario li.is-today span, .horario li.is-today b { color: var(--green); font-weight: 600; }
.visita__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.visita__actions .btn { flex: 1; }
.visita__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: var(--surface); min-height: 560px; }
.visita__map iframe { width: 100%; height: 100%; border: 0; display: block; min-height: 560px; }

/* ===== FAQ ===== */
.faq { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 20px; }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 0; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--white);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--green); transition: transform .25s var(--ease); font-size: 1.1rem; }
.faq details[open] summary .icon { transform: rotate(45deg); }
.faq details p { color: var(--text-dim); padding: 0 0 18px; font-size: .95rem; }
.faq details p a { color: var(--green); font-weight: 600; }

/* ===== CTA FINAL (painel escuro com marca d'água) ===== */
.cta-final { padding-top: 0; }
.cta-panel {
  position: relative; overflow: hidden; border-radius: 28px; padding: 56px 56px 44px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  background-image: radial-gradient(900px 420px at 85% -10%, rgba(44,224,44,.16), transparent 60%), radial-gradient(600px 300px at -10% 110%, rgba(44,224,44,.06), transparent 60%);
  box-shadow: var(--shadow-lg);
}
.cta-panel__logo { position: absolute; right: 56px; top: 50%; transform: translateY(-50%); width: 300px; height: auto; opacity: .95; pointer-events: none; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); }
.cta-panel__body { position: relative; z-index: 1; max-width: 620px; padding-right: 0; }
@media (min-width: 941px) { .cta-panel__body { max-width: calc(100% - 380px); } }
.cta-panel h2 { color: var(--white); font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.05; }
.cta-panel h2 .hl { color: var(--green); }
.cta-panel p { margin: 16px 0 28px; font-size: 1.1rem; color: var(--text-dim); max-width: 52ch; }
.cta-panel__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-panel__meta { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--border); font-size: .92rem; color: var(--text-dim); }
.cta-panel__meta li { display: flex; align-items: center; gap: 8px; }
.cta-panel__meta .icon { font-size: 1.1rem; color: var(--green); }
.cta-panel__meta b { font-weight: 600; color: var(--white); }
.cta-panel__meta a { text-decoration: underline; text-decoration-color: rgba(44,224,44,.5); text-underline-offset: 4px; transition: color .2s; }
.cta-panel__meta a:hover b { color: var(--green); }

/* ===== RODAPÉ ===== */
.footer { background: #070808; color: var(--text-dim); border-top: 1px solid var(--border); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: 60px 40px; }
.logo--footer { display: inline-flex; }
.logo--footer img { height: 54px; width: auto; }
.footer__about { margin-top: 18px; font-size: .92rem; color: var(--text-mute); max-width: 320px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%; background: var(--surface-2); color: #fff; font-size: 1.2rem;
  display: grid; place-items: center; transition: background .2s, transform .2s, color .2s;
}
.footer__social a:hover { background: var(--green); color: var(--green-ink); transform: translateY(-3px); }
.footer__social a.social--ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.footer__social a.social--ig:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: #fff; }
.footer__social a.social--wa { background: var(--wa); }
.footer__social a.social--wa:hover { background: #1ebe5a; color: #fff; }
.footer__col h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 20px; }
.footer__list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; font-size: .92rem; }
.footer__list .icon { color: var(--green); font-size: 1.05rem; margin-top: 3px; }
.footer__list a:hover { color: var(--green); }
.footer__bottom { border-top: 1px solid var(--border); }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; padding-block: 20px; font-size: .85rem; color: var(--text-mute); gap: 10px; }
.footer__privacy:hover { color: var(--green); }

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  display: inline-flex; align-items: center; gap: 10px;
  height: 64px; padding: 0 24px 0 20px; border-radius: 999px;
  background: var(--wa); color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
  box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .25s var(--ease), box-shadow .25s;
}
.whatsapp-float .icon { font-size: 2rem; }
.whatsapp-float:hover { transform: scale(1.05); box-shadow: 0 14px 38px rgba(37,211,102,.55); }
.whatsapp-float__label { white-space: nowrap; }

/* ===== ANIMAÇÃO DE ENTRADA ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .carousel__track { transition: none; }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__carousel { order: -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .cards-grid, .produtos-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr 1fr; }
  .why__photo { grid-row: auto; grid-column: 1 / -1; min-height: 340px; }
  .acc { grid-template-columns: 1fr; gap: 28px; }
  .acc__visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .acessorios__photos { grid-template-rows: none; grid-template-columns: 1fr 1fr; min-height: 0; }
  .acessorios__layout .produtos-grid { grid-template-columns: repeat(3, 1fr); }
  .acessorios__photo { aspect-ratio: 4/3; min-height: 0; }
  .depoimentos-grid { grid-template-columns: repeat(2, 1fr); }
  .galeria { grid-template-columns: repeat(2, 1fr); }
  .rating-hero { grid-template-columns: 1fr; }
  .rating-hero__photo { aspect-ratio: 4/3; min-height: 0; }
  .visita { grid-template-columns: 1fr; gap: 32px; }
  .visita__map { min-height: 380px; }
  .visita__map iframe { min-height: 380px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .hero { padding: 32px 0 56px; }
  .hero__title { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .hero__actions .btn { width: 100%; }
  .section { padding: 60px 0; }
  .section__head { margin-bottom: 36px; }
  .cards-grid, .produtos-grid, .steps, .depoimentos-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .why__photo { min-height: 300px; }
  .why__strip { grid-template-columns: auto 1fr; }
  .why__strip .btn { grid-column: 1 / -1; width: 100%; }
  .cta-panel { padding: 36px 22px 28px; border-radius: 20px; }
  .cta-panel__logo { position: static; transform: none; width: 150px; margin: 0 auto 22px; display: block; }
  .cta-panel__actions .btn { width: 100%; }
  .cta-panel__meta { flex-direction: column; gap: 10px; }
  .cta-panel__meta li { align-items: flex-start; }
  .cta-panel__meta .icon { margin-top: 3px; }
  .galeria { grid-template-columns: 1fr 1fr; gap: 12px; }
  .galeria__item:last-child { grid-column: span 2; aspect-ratio: 16/9; }
    .rating-card__btn { margin-left: 0; width: 100%; justify-content: center; }
  .onde__info { padding: 22px 20px; }
  .onde__actions .btn { width: 100%; }
  .produtos-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-produto { padding: 20px 14px; }
  .card-produto .icon { font-size: 1.8rem; }
  .acessorios__photos { grid-template-columns: 1fr; }
  .acessorios__layout .produtos-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-block: 48px 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .whatsapp-float__label { display: none; }
  .whatsapp-float { padding: 0; width: 60px; height: 60px; justify-content: center; bottom: 18px; right: 18px; }
  .whatsapp-float .icon { font-size: 1.9rem; }
  .acc__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .acc__grid li { padding: 14px 12px 12px; }
  .acc__cta .btn { width: 100%; }
  .acc__hint { max-width: none; text-align: center; width: 100%; }
  .acc__second { grid-template-columns: 88px 1fr; }
  .acc__second img { width: 88px; height: 88px; }
}
@media (max-width: 380px) {
  .produtos-grid { grid-template-columns: 1fr; }
}
