/* === Husqvarna · Revenda Autorizada · estilo produção === */
:root {
  --blue: #273a60;
  --blue-dark: #1c2b48;
  --blue-deep: #131e35;
  --orange: #f25420;
  --orange-dark: #d4441a;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --paper: #fbf8f1;
  --ink: #111827;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.55;
  font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* layout */
.container { width: min(1200px, 100% - 32px); margin: 0 auto; }
.section { padding: 80px 0; }
@media (max-width: 700px) { .section { padding: 48px 0; } }
@media (max-width: 480px) { .section { padding: 36px 0; } }
.section--alt { background: var(--gray-50); }
.section--blue { background: var(--blue); color: #fff; }
.section__header { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__header h2 { margin: 8px 0 16px; }
.section__lead { color: var(--gray-500); font-size: 18px; margin: 0; }
.section--blue .section__lead { color: rgba(255,255,255,0.8); }

/* type */
h1, h2, h3, h4 { font-family: 'Archivo', sans-serif; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: 22px; line-height: 1.25; }
h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
p { margin: 0; }
.lead { font-size: 18px; color: var(--gray-700); }
.section--blue .lead, .section--blue p { color: rgba(255,255,255,0.85); }

.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow--blue { color: var(--blue); }
.section--blue .eyebrow { color: #ffb38a; }

.chip {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(255,255,255,0.15); color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.chip--orange { background: var(--orange); border-color: var(--orange); }

/* === buttons === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 8px; font-weight: 700; font-size: 15px;
  text-decoration: none; cursor: pointer; border: 0; transition: transform .12s, box-shadow .15s, background .15s;
  font-family: inherit; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { padding: 13px 22px; font-size: 15px; }
.btn--lg { padding: 14px 26px; font-size: 16px; }
.btn--xl { padding: 18px 36px; font-size: 18px; }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 6px 20px rgba(242,84,32,0.3); }
.btn--orange:hover { background: var(--orange-dark); box-shadow: 0 10px 28px rgba(242,84,32,0.4); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-dark); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn--ghost-light { background: #fff; color: var(--blue); border: 2px solid var(--blue); }

/* === tarja === */
.tarja {
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  padding: 9px 0;
  text-align: center;
}
.tarja__row { display: flex; align-items: center; justify-content: center; gap: 8px; }
.tarja__star { color: var(--orange); }

/* === header === */
.header {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.header__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0; }
.header__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.header__logo-loja { height: 110px; width: auto; max-width: none; object-fit: contain; flex-shrink: 0; }
.header__x { color: var(--gray-500); font-weight: 300; font-size: 20px; }
.header__logo-husq {
  font-family: 'Archivo'; font-weight: 900; font-size: 20px; color: var(--blue);
  letter-spacing: 0.02em;
}
.nav { display: flex; gap: 28px; }
.nav a { color: var(--gray-700); text-decoration: none; font-size: 16px; font-weight: 600; }
.nav a:hover { color: var(--orange); }
.header__menu { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; }

.header__actions { display: flex; align-items: center; gap: 14px; }

.reviews-badge {
  display: flex; align-items: center; gap: 6px;
  text-decoration: none; padding: 6px 12px;
  border: 1px solid var(--gray-100); border-radius: 100px;
  background: #fff;
  transition: border-color .15s, transform .15s;
}
.reviews-badge:hover { border-color: var(--orange); transform: translateY(-1px); }
.reviews-badge__stars { color: #fbbf24; font-size: 13px; letter-spacing: -1px; }
.reviews-badge strong { color: var(--blue); font-family: 'Archivo'; font-weight: 800; font-size: 15px; }
.reviews-badge small { color: var(--gray-700); font-size: 11px; font-weight: 600; }

.header__phones { display: flex; flex-direction: column; gap: 2px; line-height: 1.15; }
.header__phones a {
  color: var(--gray-700); text-decoration: none;
  font-size: 13px; font-weight: 600; white-space: nowrap;
}
.header__phones a:hover { color: var(--orange); }
.header__phones-loja {
  display: inline-block; min-width: 28px;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.05em;
  padding: 1px 5px; border-radius: 3px; margin-right: 4px;
  text-align: center;
}

.hero__proof {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  margin-top: 18px; font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.hero__proof span { display: inline-flex; align-items: center; }
.hero__proof strong { color: #fff; font-weight: 700; margin-right: 6px; }

.hero__faq-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  align-items: center;
}
.hero__faq-label {
  font-size: 12px; color: rgba(255,255,255,0.6);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
  margin-right: 4px;
}
.hero__faq-chips a {
  display: inline-block; padding: 7px 13px; border-radius: 100px;
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px; font-weight: 500; text-decoration: none;
  transition: background .15s, border-color .15s;
}
.hero__faq-chips a:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.hero__quiz-link {
  display: inline-block; margin-top: 12px; margin-bottom: 28px;
  color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .15s;
}
.hero__quiz-link:hover { color: #fff; }

@media (max-width: 1180px) {
  .header__phones { display: none; }
  .reviews-badge small { display: none; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .header__menu { display: block; }
  .header .btn { display: none; }
  .header__logo-loja { height: 78px; }
  .reviews-badge { display: none; }
  .hero__faq-label { width: 100%; margin-bottom: 4px; }
}

/* === hero === */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(242,84,32,0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.08), transparent 40%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.hero__content h1 { color: #fff; margin: 14px 0 20px; }
.hero__content .lead { color: rgba(255,255,255,0.85); max-width: 560px; }
.hero__ctas { display: flex; gap: 12px; margin: 28px 0 32px; flex-wrap: wrap; }
.hero__seals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 520px; }
.seal {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
  padding: 14px 16px; border-radius: 12px;
}
.seal__icon {
  color: var(--orange);
  font-size: 20px; font-weight: 700; flex-shrink: 0; line-height: 1;
}
.seal strong { display: block; font-size: 14px; line-height: 1.2; }
.seal span:not(.seal__icon) { display: block; font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }

.hero__machine { display: flex; justify-content: center; }
.machine-card { position: relative; }
.machine-card__photo {
  background: linear-gradient(180deg, #fff 0%, #f3f4f6 100%);
  border-radius: 16px;
  aspect-ratio: 4 / 3; width: 480px; max-width: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: 14px; font-weight: 600;
  border: 2px dashed rgba(0,0,0,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  overflow: hidden;
}
.machine-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.machine-card__photo--hero { transform: rotate(-1.5deg); }
.machine-card__tag {
  position: absolute; bottom: -14px; left: 24px;
  background: var(--orange); color: #fff;
  padding: 8px 14px; border-radius: 6px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .hero { padding: 56px 0 72px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__seals { grid-template-columns: 1fr; }
  .machine-card__photo { width: 100%; }
}
@media (max-width: 700px) {
  .hero__machine { display: none; }
  .hero { padding: 40px 0 56px; }
}
@media (max-width: 500px) {
  .hero__seals { grid-template-columns: repeat(3, 1fr); max-width: 100%; gap: 8px; }
  .seal { padding: 10px 8px; gap: 8px; flex-direction: column; text-align: center; }
  .seal__icon { font-size: 16px; }
  .seal strong { font-size: 12px; }
  .seal span:not(.seal__icon) { font-size: 10px; }
}

/* === categorias tabs === */
.cats-tabs {
  display: flex; gap: 12px; flex-wrap: nowrap;
  justify-content: flex-start; overflow-x: auto;
  padding-bottom: 8px; margin-bottom: 32px;
  scrollbar-width: none;
  position: relative;
}
.cats-tabs-wrap {
  position: relative;
}
.cats-tabs-wrap::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 8px;
  width: 48px;
  background: linear-gradient(to right, transparent, #fff);
  pointer-events: none; z-index: 2;
}
.section--alt .cats-tabs-wrap::after {
  background: linear-gradient(to right, transparent, var(--gray-50));
}
.cats-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 12px 16px; border-radius: 14px; border: 2px solid var(--gray-100);
  background: #fff; font-weight: 700; font-size: 13px; cursor: pointer;
  color: var(--gray-600); transition: all .15s; font-family: inherit;
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  min-width: 96px; flex-shrink: 0; text-align: center; line-height: 1.2;
}
.cat-tab__photo {
  width: 72px; height: 54px; object-fit: contain; display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.cat-icon-photo { display: none; }
.cat-tab:hover { border-color: var(--blue); color: var(--blue); }
.cat-tab.is-active {
  background: #eef2ff; color: var(--blue); border-color: var(--blue);
}
.cat-tab.is-active .cat-tab__photo { filter: drop-shadow(0 2px 6px rgba(39,58,96,0.2)); }

.cats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 900px) { .cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
@media (max-width: 520px) {
  .machine { display: flex; flex-direction: row; min-height: 0; }
  .machine__photo {
    width: 110px; min-width: 110px; height: 110px;
    aspect-ratio: auto;
    border-bottom: none; border-right: 1px solid var(--gray-100);
    flex-shrink: 0;
  }
  .machine__body { padding: 10px 12px; flex: 1; min-width: 0; }
  .machine__name { font-size: 14px; margin: 3px 0 3px; }
  .machine__cat { font-size: 9px; }
  .machine__desc { display: none; }
  .machine__cta { font-size: 11px; padding-top: 8px; }
  .machine__badge--top { font-size: 9px; padding: 3px 7px; top: 8px; left: 8px; }
  .machine__stock { font-size: 10px; padding: 2px 7px; margin-bottom: 4px; }
}

.machine {
  background: #fff; border-radius: 14px; border: 1px solid var(--gray-100);
  overflow: hidden; transition: transform .15s, box-shadow .15s;
  display: block; text-decoration: none; cursor: pointer;
  position: relative;
}
.machine__badge--top {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--orange); color: #fff;
  padding: 5px 11px; border-radius: 4px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(242,84,32,0.3);
}
.machine__stock {
  display: inline-block; margin: 0 0 8px;
  background: #ecfdf5; color: #047857;
  padding: 3px 9px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
}
.machine__stock--low {
  background: #fff7ed; color: #c2410c;
}
.machine:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.machine__photo {
  background: linear-gradient(180deg, #f9fafb, #e5e7eb);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: 13px; font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.machine__photo img { width: 100%; height: 100%; object-fit: cover; }
.machine__body { padding: 18px; }
.machine__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); font-weight: 700; }
.machine__name { font-family: 'Archivo'; font-weight: 800; font-size: 18px; color: var(--blue); margin: 6px 0 4px; }
.machine__desc { font-size: 13px; color: var(--gray-500); margin: 0 0 14px; min-height: 38px; }
.machine__cta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 700; color: var(--orange); text-decoration: none;
  border-top: 1px solid var(--gray-100); padding-top: 12px;
}
.machine__cta:hover { color: var(--orange-dark); }

.cats-foot { text-align: center; margin-top: 40px; }

/* === todas as linhas === */
.lines-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 900px) { .lines-grid { grid-template-columns: repeat(2, 1fr); } }
.line {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 12px;
  padding: 22px; transition: all .15s; cursor: pointer; text-align: left;
  font-family: inherit; text-decoration: none; display: block;
}
.line:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(39,58,96,0.1); transform: translateY(-2px); }
.line__icon {
  width: 72px; height: 56px; border-radius: 10px;
  background: #f9fafb; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px; overflow: hidden;
}
.line__photo {
  width: 100%; height: 100%; object-fit: contain; padding: 4px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
}
.line strong { font-family: 'Archivo'; font-weight: 800; font-size: 16px; color: var(--blue); display: block; }
.line small { font-size: 12px; color: var(--gray-500); }

/* === bateria === */
.battery {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
@media (max-width: 900px) { .battery { grid-template-columns: 1fr; gap: 32px; } }
.battery__content h2 { color: #fff; margin: 12px 0 16px; }
.battery__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px;
}
.bat-card {
  background: #fff; color: var(--gray-900);
  border-radius: 12px; padding: 16px; text-align: center;
  position: relative;
}
.bat-card--battery {
  border: 2px solid var(--orange);
}
.bat-card--battery::before {
  content: '⚡ INCLUSA';
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 10px; border-radius: 20px;
  white-space: nowrap; letter-spacing: .04em;
}
.bat-card__photo {
  aspect-ratio: 4/3;
  background: var(--gray-50); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-size: 12px; font-weight: 600;
  margin-bottom: 10px; overflow: hidden;
}
.bat-card__photo img { width: 100%; height: 100%; object-fit: contain; }
.bat-card strong { font-family: 'Archivo'; font-weight: 800; color: var(--blue); display: block; font-size: 14px; }
.bat-card small { color: var(--gray-500); font-size: 11px; }

/* check list */
.check { list-style: none; margin: 16px 0 28px; padding: 0; }
.check li {
  position: relative; padding-left: 28px; margin-bottom: 10px; font-size: 15px;
}
.check li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.section--blue .check li { color: rgba(255,255,255,0.9); }

/* === parcelamento === */
.parcel {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
  background: linear-gradient(135deg, #fff, #f9fafb);
  border: 2px solid var(--blue); border-radius: 16px;
  padding: 28px 32px;
}
@media (max-width: 700px) { .parcel { grid-template-columns: 1fr; text-align: center; } }
.parcel__badge {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Archivo'; font-weight: 900; font-size: 28px; line-height: 1;
}
.parcel__badge small { font-size: 11px; font-weight: 600; opacity: 0.8; margin-top: 4px; }
.parcel__content h3 { color: var(--blue); margin-bottom: 4px; }
.parcel__content p { color: var(--gray-500); font-size: 14px; }

@media (max-width: 700px) {
  .parcel__badge { margin: 0 auto; }
}

/* === assistência === */
.assist {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 900px) { .assist { grid-template-columns: 1fr; gap: 32px; } }
.assist__content h2 { margin: 12px 0 16px; }
.assist__photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); font-weight: 600; font-size: 14px;
  margin-bottom: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  overflow: hidden;
}
.assist__photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.assist__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.assist__stats > div {
  background: #fff; border-radius: 10px; padding: 16px; text-align: center;
  border: 1px solid var(--gray-100);
}
.assist__stats strong {
  display: block; font-family: 'Archivo'; font-weight: 900; font-size: 28px; color: var(--blue);
  line-height: 1;
}
.assist__stats small { color: var(--gray-500); font-size: 12px; display: block; margin-top: 4px; }

/* === EPI & acessórios === */
.epi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 700px) { .epi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .epi-grid { grid-template-columns: 1fr; } }
.epi-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 14px;
  overflow: hidden; text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.epi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--orange); }
.epi-card__photo {
  aspect-ratio: 4/3; background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}
.epi-card__photo img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.epi-subheader {
  font-family: 'Archivo'; font-weight: 800; font-size: 18px;
  color: var(--blue); padding: 32px 0 16px;
  border-top: 2px solid var(--gray-100); margin-top: 8px;
}
.epi-card__body { padding: 16px 12px; }
.epi-card__body strong { font-family: 'Archivo'; font-weight: 800; color: var(--blue); display: block; font-size: 16px; margin-bottom: 4px; }
.epi-card__body small { color: var(--gray-500); font-size: 12px; }

/* === steps === */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 16px;
  padding: 32px 28px; position: relative;
}
.step__num {
  position: absolute; top: -20px; left: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo'; font-weight: 900; font-size: 22px;
  box-shadow: 0 8px 20px rgba(242,84,32,0.3);
}
.step h3 { color: var(--blue); margin: 16px 0 10px; }
.step p { color: var(--gray-500); font-size: 14px; }

/* === testimonials === */
.testis {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (max-width: 800px) { .testis { grid-template-columns: 1fr; } }
.testi {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 14px;
  padding: 28px;
}
.testi p {
  font-size: 16px; color: var(--gray-700); font-style: italic; margin-bottom: 16px;
}
.testi p::before { content: '"'; color: var(--orange); font-size: 32px; line-height: 0; vertical-align: -10px; margin-right: 4px; }
.testi footer {
  display: flex; flex-direction: column; padding-top: 14px; border-top: 1px solid var(--gray-100);
}
.testi strong { font-family: 'Archivo'; color: var(--blue); }
.testi span { font-size: 12px; color: var(--gray-500); }

/* === localização === */
.loc {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 900px) { .loc { grid-template-columns: 1fr; gap: 32px; } }
.loc__content h2 { color: #fff; margin: 16px 0; }
.loc__seals {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0;
}
.loc-seal {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 14px; display: flex; align-items: center; gap: 12px;
}
.loc-seal span { font-size: 22px; }
.loc-seal strong { display: block; font-size: 14px; font-family: 'Archivo'; }
.loc-seal small { display: block; font-size: 12px; color: rgba(255,255,255,0.7); }

.address {
  background: rgba(0,0,0,0.2); border-radius: 10px; padding: 18px;
  display: flex; flex-direction: column; gap: 4px; margin: 16px 0 24px;
  font-size: 14px;
}
.address strong { font-family: 'Archivo'; color: #fff; font-size: 16px; margin-bottom: 4px; }
.address span { color: rgba(255,255,255,0.8); }

.loc__map {
  display: flex; flex-direction: column; gap: 16px;
}
.map {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(255,255,255,0.05) 24px 25px),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(255,255,255,0.05) 24px 25px),
    linear-gradient(135deg, #1c2b48, #131e35);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.map::before {
  content: '';
  position: absolute; top: 30%; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,84,32,0.4), transparent);
}
.map::after {
  content: '';
  position: absolute; bottom: 25%; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.map__pin {
  position: absolute; top: 45%; left: 50%; transform: translate(-50%, -100%);
  font-size: 56px; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, -100%); }
  50% { transform: translate(-50%, -110%); }
}
.map__label {
  position: absolute; bottom: 16px; left: 16px;
  background: #fff; color: var(--blue); font-weight: 700; font-size: 12px;
  padding: 6px 12px; border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.map__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* === garantia === */
.guarantee {
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
  background: linear-gradient(135deg, var(--gray-50), #fff);
  border: 1px dashed var(--blue);
  border-radius: 16px;
  padding: 32px;
}
@media (max-width: 700px) { .guarantee { grid-template-columns: 1fr; text-align: center; } }
.guarantee__seal {
  width: 120px; height: 120px; border-radius: 50%;
  border: 3px dashed var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; padding: 18px; box-sizing: border-box;
}
.guarantee__seal img { width: 100%; height: auto; object-fit: contain; }
.guarantee__content h3 { color: var(--blue); margin-bottom: 8px; }
.guarantee__content p { color: var(--gray-700); }
@media (max-width: 700px) { .guarantee__seal { margin: 0 auto; } }

/* === FAQ === */
.faq { max-width: 800px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--gray-100); padding: 18px 0;
}
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; background: none; border: 0; padding: 0; cursor: pointer;
  font-family: 'Archivo'; font-weight: 700; font-size: 17px; color: var(--blue);
  text-align: left;
}
.faq__plus { font-size: 22px; color: var(--orange); transition: transform .2s; flex-shrink: 0; }
.faq__item.is-open .faq__plus { transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, margin .3s;
  color: var(--gray-700); font-size: 15px;
}
.faq__item.is-open .faq__a { max-height: 300px; margin-top: 12px; }

/* === cta final === */
.cta-final { padding: 100px 0; text-align: center; }
.cta-final__logo {
  height: 130px;
  width: auto;
  display: block;
  margin: 0 auto 28px;
  background: #fff;
  padding: 14px 28px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.cta-final__inner h2 { color: #fff; margin-bottom: 16px; }
.cta-final__inner p { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-final__inner small { display: block; margin-top: 18px; color: rgba(255,255,255,0.6); font-size: 13px; }

/* === footer === */
.footer {
  background: var(--gray-500); color: #fff; padding: 56px 0 24px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-family: 'Archivo'; font-weight: 900; }
.footer__logo { height: 84px; width: auto; background: #fff; padding: 10px 16px; border-radius: 12px; box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
.footer__about { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer h4 { margin-bottom: 14px; color: rgba(255,255,255,0.9); }
.footer p, .footer ul li { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 4px 0; }
.footer__payments {
  margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}
.footer__pay-label { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.footer__pay-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.pay-badge {
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px; border-radius: 5px; font-size: 11px; font-weight: 800; letter-spacing: 0.04em;
}
.pay-badge--pix { background: rgba(0,166,133,0.3); border-color: rgba(0,166,133,0.6); color: #4ade80; }
.footer__parcel-note { font-size: 12px; color: rgba(255,255,255,0.5); flex-basis: 100%; margin-top: -4px; }
.footer__bottom { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 6px; }
.footer__bottom small { color: rgba(255,255,255,0.6); font-size: 12px; }
.footer__bottom small a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.footer__bottom small a:hover { color: #fff; }

/* === quiz === */
.quiz {
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--gray-100); border-radius: 16px;
  padding: 36px 28px; text-align: center;
  box-shadow: 0 24px 60px rgba(39,58,96,0.06);
}
.quiz__progress {
  font-size: 12px; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700;
  margin-bottom: 12px;
}
.quiz__q {
  font-family: 'Archivo'; font-weight: 800; font-size: 22px;
  color: var(--blue); margin: 0 0 22px;
}
.quiz__opts {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 480px; margin: 0 auto;
}
.quiz__opt {
  background: #fff; border: 1.5px solid var(--gray-100);
  padding: 14px 18px; border-radius: 10px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  color: var(--gray-700); cursor: pointer;
  text-align: left; transition: all .12s;
}
.quiz__opt:hover { border-color: var(--orange); color: var(--orange); transform: translateX(2px); }
.quiz__recs {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 420px; margin: 0 auto;
}
.quiz__rec {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-radius: 10px;
  background: var(--blue); color: #fff; text-decoration: none;
  font-family: 'Archivo'; transition: transform .15s;
}
.quiz__rec:hover { transform: translateY(-2px); background: var(--blue-dark); }
.quiz__rec strong { font-size: 16px; font-weight: 800; }
.quiz__rec span { font-size: 13px; font-weight: 600; }
.quiz__redo {
  margin-top: 18px; background: none; border: 0; cursor: pointer;
  color: var(--gray-500); font-family: inherit; font-size: 13px;
  font-weight: 600; text-decoration: underline;
}
.quiz__redo:hover { color: var(--orange); }

/* === wpp flutuante === */
.float-wpp {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 100;
  transition: transform .15s, background .2s;
}
.float-wpp:hover { transform: scale(1.08); }
.float-wpp.is-offline { background: #6b7280; box-shadow: 0 8px 24px rgba(107,114,128,0.4); }

.float-wpp__pulse {
  position: absolute; top: 8px; right: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #4ade80; border: 2px solid #fff;
}
.float-wpp.is-online .float-wpp__pulse::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; background: #4ade80; opacity: 0.5;
  animation: pulse 1.6s ease-out infinite;
}
.float-wpp.is-offline .float-wpp__pulse { background: #fbbf24; }

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

.float-wpp__tooltip {
  position: absolute; right: 72px; bottom: 50%;
  transform: translateY(50%);
  background: #1f2937; color: #fff;
  padding: 8px 14px; border-radius: 8px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .15s;
  max-width: 240px; white-space: normal;
}
.float-wpp:hover .float-wpp__tooltip { opacity: 1; }
.float-wpp.is-offline .float-wpp__tooltip { white-space: normal; width: 220px; }

/* === sticky bar mobile === */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  display: none; z-index: 99;
  background: #fff; border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}
.mobile-bar__btn {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 3px;
  padding: 10px 6px; text-decoration: none;
  color: var(--gray-700); font-size: 11px; font-weight: 700;
  border-right: 1px solid var(--gray-100);
}
.mobile-bar__btn:last-child { border-right: 0; }
.mobile-bar__btn--wpp { color: #25d366; }
.mobile-bar__icon { font-size: 18px; line-height: 1; }
.mobile-bar__btn span:last-child { line-height: 1; }

@media (max-width: 640px) {
  .mobile-bar { display: flex; }
  .float-wpp { display: none; }
  body { padding-bottom: 64px; }
}

/* === duas lojas === */
.stores-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
@media (max-width: 800px) { .stores-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .store-card__map { display: none; } }

.store-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.store-card__map { line-height: 0; }
.store-card__body { padding: 24px; }
.store-card__city {
  font-family: 'Archivo'; font-weight: 800; font-size: 20px;
  color: var(--blue); margin: 0 0 10px;
}
.store-card .store-card__addr { color: #111 !important; font-size: 14px; line-height: 1.6; margin: 0 0 6px; }
.store-card .store-card__phone { margin: 0 0 8px; }
.store-card .store-card__phone a { color: var(--blue); font-size: 15px; font-weight: 700; text-decoration: none; }
.store-card .store-card__phone a:hover { color: var(--orange); }
.store-card .store-card__hours { color: #333 !important; font-size: 13px; margin: 0 0 20px; }
.store-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* === nav mobile aberto === */
.nav--open {
  display: flex !important;
  position: absolute;
  top: 65px; left: 0; right: 0;
  background: #fff;
  flex-direction: column;
  padding: 16px;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 49;
}
