:root {
  --green: #2c5e5b;
  --green-dark: #1a5251;
  --green-soft: #e7f1f0;
  --ink: #3c4043;
  --ink-strong: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --whats: #25d366;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(32, 33, 36, 0.08);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 20; }

.topbar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 88px;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.logo img {
  height: 72px; width: auto;
}
.nav { display: flex; gap: 1.15rem; align-items: center; }
.nav a { color: var(--muted); font-size: .95rem; font-weight: 500; }
.nav a:hover { color: var(--green); text-decoration: none; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  border: 0; cursor: pointer; font-weight: 650; font-size: .95rem;
  border-radius: 999px; padding: .85rem 1.25rem;
  text-decoration: none !important; transition: .15s ease;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-ghost { background: #fff; color: var(--ink-strong); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-whats { background: var(--whats); color: #fff; }
.btn-whats:hover { filter: brightness(.95); }
.menu-btn {
  display: none; border: 1px solid var(--line); background: #fff;
  width: 42px; height: 42px; border-radius: 10px;
}

.hero {
  padding: 3.2rem 0 2.4rem;
  background:
    radial-gradient(900px 420px at 90% -10%, var(--green-soft), transparent 60%),
    linear-gradient(#fff, var(--bg-soft));
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.4rem; align-items: center;
}
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; border: 1px solid var(--line); color: var(--muted);
  border-radius: 999px; padding: .35rem .75rem; font-size: .85rem; font-weight: 600;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
h1 {
  margin: .9rem 0 .7rem; font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.12; color: var(--ink-strong); letter-spacing: -.03em;
}
h1 em { font-style: normal; color: var(--green); }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 38rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.4rem 0 1.1rem; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem .9rem; padding: 0; list-style: none; }
.checks li { color: var(--ink-strong); font-weight: 550; }
.checks li::before { content: "✓ "; color: var(--green); font-weight: 800; }

.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: 28px;
  box-shadow: var(--shadow); padding: 1.3rem; position: relative;
}
.devices {
  min-height: 300px; border-radius: 20px;
  background:
    linear-gradient(180deg, #f4f8f8, #e4eeed);
  display: grid; place-items: center; overflow: hidden;
  padding: 1.6rem 1rem 1.2rem;
}
.hero-logo {
  width: min(260px, 78%);
  height: auto;
}
.float {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .45rem .8rem; font-size: .82rem; font-weight: 700;
  box-shadow: var(--shadow);
}
.float-a { top: 1.1rem; left: 1rem; }
.float-b { bottom: 1.1rem; right: 1rem; }

.band {
  background: var(--green); color: #fff;
}
.band-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 0;
}
.band p { margin: 0; font-weight: 650; }
.band .btn-ghost { border-color: transparent; }

section { padding: 4rem 0; }
.kicker {
  color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; margin: 0 0 .4rem;
}
h2 { margin: 0 0 .6rem; font-size: clamp(1.55rem, 3vw, 2.15rem); color: var(--ink-strong); letter-spacing: -.02em; }
.center { text-align: center; }
.sub { color: var(--muted); max-width: 40rem; margin: 0 auto 1.8rem; }

.grid-3, .grid-4 { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem; box-shadow: 0 1px 0 rgba(32,33,36,.04);
}
.card h3 { margin: .2rem 0 .4rem; font-size: 1.08rem; color: var(--ink-strong); }
.card p { margin: 0; color: var(--muted); }
.icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--green-soft);
  color: var(--green); display: grid; place-items: center; font-weight: 800; margin-bottom: .7rem;
}

.hook {
  background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.chooser {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.2rem; align-items: start;
}
.pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: .8rem 0 1rem; }
.pill {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: .55rem .9rem; cursor: pointer; font-weight: 600; color: var(--ink);
}
.pill.is-on, .pill:hover { border-color: var(--green); color: var(--green); background: var(--green-soft); }
.chooser-box {
  background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 1.3rem;
  box-shadow: var(--shadow);
}
.chooser-box strong { display: block; margin-bottom: .35rem; color: var(--ink-strong); }

.vitrine-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.3rem; }
.store-status { margin: .55rem 0 0; font-size: .88rem; font-weight: 650; color: var(--green); }
.search {
  width: min(100%, 320px); border: 1px solid var(--line); border-radius: 999px;
  padding: .7rem 1rem; font: inherit;
}
.search:focus { outline: 2px solid var(--green-soft); border-color: var(--green); }
.filters { display: flex; flex-wrap: wrap; gap: .45rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.product {
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: #fff;
  display: flex; flex-direction: column; height: 100%; min-width: 0;
}
.product-photo {
  position: relative;
  height: 200px; min-height: 200px; max-height: 200px;
  background: linear-gradient(180deg, #e7f1f0, #d5e6e4);
  display: grid; place-items: center; color: var(--green); font-weight: 800;
  flex: 0 0 200px; overflow: hidden;
}
.product-photo img {
  width: 100%; height: 200px; max-height: 200px;
  object-fit: contain; background: #f4f7f7;
}
.product-badge {
  position: absolute; left: .7rem; top: .7rem;
  background: #fff; color: var(--green); border: 1px solid var(--line);
  border-radius: 999px; padding: .2rem .6rem; font-size: .72rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
}
.product-body {
  padding: 1rem 1.05rem .45rem;
  display: flex; flex-direction: column; gap: .35rem;
  flex-shrink: 0;
}
.product-body h3 {
  margin: 0; font-size: 1.02rem; color: var(--ink-strong); line-height: 1.35;
  min-height: 2.6em;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.price {
  color: var(--green); font-size: 1.35rem; font-weight: 800; line-height: 1.2;
}
.product-specs {
  margin: .55rem 0 0; padding: .75rem 1.05rem;
  background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem .8rem;
  min-height: 118px; flex: 1;
}
.spec { margin: 0; min-width: 0; }
.spec dt {
  font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 .12rem;
}
.spec dd {
  margin: 0; font-size: .88rem; font-weight: 650; color: var(--ink-strong);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.product-cta { padding: .9rem 1.05rem 1.1rem; display: grid; gap: .35rem; margin-top: auto; flex-shrink: 0; }
.product-cta .price { margin: 0; }
.product-cta .btn { width: 100%; }
.qty { font-size: .82rem; color: var(--muted); margin: 0; }
.empty, .loading {
  grid-column: 1 / -1; text-align: center; padding: 2rem 1rem; color: var(--muted);
  border: 1px dashed var(--line); border-radius: var(--radius); background: var(--bg-soft);
}

.rating-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  color: var(--ink-strong); padding: .5rem .95rem; border-radius: 999px;
  margin-bottom: 1rem; font-size: .88rem; text-decoration: none;
}
.rating-badge:hover { border-color: #e0a300; }
.rating-badge-num { font-weight: 800; color: var(--ink-strong); }
.rating-badge-star { color: #e0393b; font-size: .85rem; margin-left: .1rem; }
.rating-badge-txt { color: var(--muted); font-weight: 500; margin-left: .15rem; }

.rating-summary {
  display: flex; align-items: baseline; justify-content: center; gap: .6rem; flex-wrap: wrap;
}
.rating-num { font-size: 2.2rem; font-weight: 800; color: var(--ink-strong); }
.rating-stars { color: #e0a300; font-size: 1.15rem; letter-spacing: .1em; }
.rating-count { color: var(--muted); font-weight: 600; }
.review-stars { color: #e0a300; font-size: .9rem; margin-bottom: .5rem; letter-spacing: .08em; }
.review p { color: var(--ink-strong); font-size: .93rem; }
.review-who { color: var(--muted) !important; font-size: .82rem !important; font-weight: 650; margin-top: .5rem; }

.steps { counter-reset: step; }
.step h3::before {
  counter-increment: step; content: counter(step);
  display: inline-grid; place-items: center; width: 28px; height: 28px; margin-right: .5rem;
  border-radius: 50%; background: var(--green); color: #fff; font-size: .85rem;
}

.map-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.2rem; }
.map-embed {
  min-height: 280px; border: 0; width: 100%; border-radius: 20px; border: 1px solid var(--line);
}
.list { margin: 0; padding: 0; list-style: none; }
.list li { padding: .35rem 0; color: var(--muted); }
.list b { color: var(--ink-strong); }

footer {
  background: var(--ink-strong); color: #e8eaed; padding: 2.2rem 0 1.4rem;
}
footer a { color: #fff; }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.foot-brand {
  display: flex; align-items: center; gap: 1rem; max-width: 36rem;
}
.foot-brand p { margin: 0; opacity: .8; }
.foot-logo {
  height: 92px; width: auto; flex-shrink: 0;
  background: #fff; border-radius: 16px; padding: .35rem;
}
.tiny { opacity: .7; font-size: .85rem; margin-top: 1.2rem; }

.float-wa {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 12;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex; flex-direction: column; position: absolute; left: 0; right: 0; top: 80px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 1rem;
  }
  .menu-btn { display: grid; place-items: center; }
  .logo img { height: 60px; }
  .topbar-inner { min-height: 80px; }
  .hero-grid, .chooser, .map-grid, .grid-3, .grid-4, .product-grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .band-inner, .vitrine-head, .hero-actions { flex-direction: column; align-items: stretch; }
  .devices { min-height: 260px; height: auto; }
}

/* Revisão: leitura, navegação e catálogo */
html { scroll-padding-top: 105px; }
:focus-visible { outline: 3px solid #185eaa; outline-offset: 4px; }
.btn-whats, footer .btn-whats { color: #103b25; }
.nav .btn-whats { color: #103b25; }
.product-body h3 { display: block; overflow: visible; min-height: 0; }
.spec dd { white-space: normal; overflow: visible; overflow-wrap: anywhere; }
.quick-catalog h2 { font-size: 1.5rem; }
.quick-catalog > a { display: flex; flex-direction: column; gap: .2rem; padding: 1rem; margin-top: .7rem; border: 1px solid var(--line); border-radius: 12px; }
.quick-catalog > a:hover { background: var(--green-soft); text-decoration: none; }
.quick-catalog > a span { font-size: .85rem; color: var(--muted); }
#servicos .card { display: flex; flex-direction: column; }
#servicos .card .btn { margin-top: auto; font-size: .85rem; padding: .75rem; }
.photo-fallback { padding: 1rem; text-align: center; }
.product-unavailable { color: #7c2d12; font-weight: 700; }
.search { max-width: 100%; }
@media (min-width: 601px) and (max-width: 860px) {
  .product-grid, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .hero { padding: 1.7rem 0; }
  .hero-grid { gap: 1rem; }
  .quick-catalog { display: none; }
  section { padding: 2.5rem 0; }
  .hero-actions { margin: 1rem 0; }
  .rating-badge { font-size: .78rem; }
  .search { width: 100%; }
  footer { padding-bottom: 6rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Avaliações Google: destaque principal */
.nav .nav-reviews { color: var(--green-dark); font-weight: 800; }
.reviews-hero { background: radial-gradient(ellipse at top left, #e4f0ed 0, transparent 58%), #f8faf9; padding: 2.7rem 0 2.3rem; border-bottom: 1px solid var(--line); }
.reviews-intro { text-align: center; margin: 0 auto 2rem; max-width: 870px; }
.reviews-intro h1 { font-size: clamp(2rem, 3.8vw, 3.2rem); margin: .6rem 0 .8rem; }
.reviews-intro .lead { margin: 0 auto; max-width: 700px; }
.reviews-showcase { display: grid; grid-template-columns: 245px minmax(0, 1fr); gap: 1.5rem; align-items: stretch; }
.google-score { background: var(--green-dark); color: white; border-radius: 24px; padding: 1.8rem 1.3rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.google-label { font-size: .9rem; }
.google-label strong { font-size: 1.15rem; }
.score-number { font-size: 5rem; font-weight: 800; letter-spacing: -.055em; line-height: 1.15; margin-top: .65rem; }
.score-number > span { font-size: 1.15rem; font-weight: 500; letter-spacing: 0; margin-left: .35rem; color: #c7dfdc; }
.score-stars { position: relative; display: inline-block; font-size: 1.6rem; line-height: 1.4; letter-spacing: .12em; margin: .15rem 0 .7rem; }
.score-stars > span:first-child { color: #88aaa7; }
.score-stars > span:last-child { position: absolute; inset: 0; width: 96%; overflow: hidden; white-space: nowrap; color: #ffd25a; }
.score-count { color: white; font-size: .86rem; }
.score-count strong { display: block; font-size: 1rem; }
.score-date { margin: .7rem 0 0; font-size: .72rem; color: #cee1de; }
.reviews-carousel { min-width: 0; }
.reviews-track { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; padding: .15rem .15rem .7rem; overscroll-behavior-x: contain; }
.google-review { flex: 0 0 calc((100% - 1rem) / 2); min-width: 0; scroll-snap-align: start; background: white; border: 1px solid #dce5e2; border-radius: 20px; padding: 1.4rem; display: flex; flex-direction: column; min-height: 286px; }
.review-card-head { display: flex; gap: .7rem; align-items: center; min-height: 48px; }
.review-avatar { background: #e7f1f0; color: #245954; flex: 0 0 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: .85rem; }
.review-author { display: block; font-size: .91rem; font-weight: 750; color: var(--ink-strong); line-height: 1.35; }
.review-origin { display: block; color: var(--muted); font-size: .75rem; margin-top: .15rem; }
.review-card-stars { color: #996800; font-size: 1.05rem; letter-spacing: .15em; margin: .9rem 0 .65rem; }
.google-review blockquote { margin: 0 0 1rem; font-size: 1rem; line-height: 1.65; color: var(--ink-strong); }
.google-review blockquote p { margin: 0; }
.review-source { font-size: .76rem; font-weight: 650; margin-top: auto; padding-top: .6rem; }
.reviews-controls { display: flex; gap: .6rem; align-items: center; padding: .5rem .15rem 0; }
.reviews-controls[hidden] { display: none; }
.review-control, .review-play { border: 1px solid #c2d4cf; color: var(--green-dark); background: #fff; cursor: pointer; font: inherit; border-radius: 999px; }
.review-control { width: 42px; height: 42px; font-size: 1.2rem; }
.review-control:hover, .review-play:hover { background: var(--green-soft); }
.reviews-position { font-size: .75rem; color: var(--muted); min-width: 112px; text-align: center; }
.review-play { margin-left: auto; padding: .65rem .85rem; font-size: .75rem; min-height: 42px; }
.reviews-footer { text-align: center; margin-top: 1rem; }
.reviews-footer > p { color: var(--muted); font-size: .78rem; }
.reviews-footer .hero-actions { justify-content: center; margin: 1rem 0 .7rem; }
.reviews-services { color: var(--muted); font-size: .8rem; }
@media (max-width: 1020px) and (min-width: 861px) { .nav { gap: .6rem; } .nav a { font-size: .82rem; } }
@media (max-width: 700px) {
  .reviews-hero { padding: 1.5rem 0; }
  .reviews-intro { margin-bottom: 1.2rem; text-align: left; }
  .reviews-intro h1 { font-size: 2rem; }
  .reviews-intro .lead { font-size: .95rem; }
  .reviews-showcase { grid-template-columns: minmax(0,1fr); gap: 1rem; }
  .google-score { display: grid; grid-template-columns: 110px 1fr; padding: 1rem 1.2rem; text-align: left; border-radius: 18px; column-gap: 1rem; }
  .google-label { grid-column: 2; grid-row: 1; font-size: .78rem; }
  .google-label strong { font-size: .95rem; }
  .score-number { grid-column: 1; grid-row: 1 / 3; font-size: 3.5rem; margin: 0; }
  .score-stars { grid-column: 1; grid-row: 3; font-size: 1.03rem; width: max-content; margin: 0; }
  .score-count { grid-column: 2; grid-row: 2; font-size: .7rem; }
  .score-count strong { font-size: .88rem; display: inline; }
  .score-date { grid-column: 2; grid-row: 3; font-size: .64rem; margin: .2rem 0 0; }
  .google-review { flex-basis: 100%; min-height: 275px; padding: 1.2rem; }
  .reviews-position { min-width: 95px; font-size: .7rem; }
  .reviews-controls { gap: .35rem; }
  .review-play { font-size: .69rem; padding: .6rem; }
  .reviews-footer > p { text-align: left; line-height: 1.65; }
  .reviews-footer .hero-actions { gap: .6rem; }
}

.float-wa[hidden] { display: none; }

/* Widget conectado ao Featurable */
.featurable-showcase { width: 100%; min-width: 0; margin: 0 auto; }
.featurable-showcase > div { width: 100%; }
.featurable-showcase iframe { max-width: 100%; }
.reviews-footer > p { margin-top: 1rem; }
