/* ═══════════════════════════════════════════
   TAPLIN — Tapete Bandeja 3D Premium
   style.css
   ═══════════════════════════════════════════ */

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #F9FAFB;
  --bg-alt: #F3F4F6;
  --bg-white: #FFFFFF;
  --border: #E5E7EB;
  --text: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --red: #C00000;
  --red-light: rgba(192, 0, 0, 0.12);
  --green: #059669;
  --green-light: #F0FDF4;
  --green-border: #A7F3D0;
  --yellow: #FBBF24;
  --blue: #C00000;
  --blue-light: rgba(192, 0, 0, 0.12);
  --accent: #1a1a1a;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --font: 'Roboto', sans-serif;
  --max: 500px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: var(--max);
  margin: 0 auto;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  touch-action: manipulation; /* elimina delay 300ms no iOS Safari */
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font);
}

ul {
  list-style: none;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   TOP BANNER
══════════════════════════════════════════ */
.top-banner {
  background: #C00000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
}

.top-banner__scroll {
  display: inline-flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
}

.top-banner__scroll span {
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.menu-toggle {
  display: flex;
  align-items: center;
  color: var(--text);
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: var(--bg-alt);
}

.site-header__logo img {
  height: 44px;
  width: auto;
}

/* ── SIDE MENU (DRAWER) ── */
.side-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  backdrop-filter: blur(2px);
}

.side-menu-overlay.open {
  display: block;
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-white);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.side-menu__close {
  font-size: 26px;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.side-menu__close:hover {
  background: var(--bg-alt);
}

.side-menu__body {
  padding: 20px 16px;
  flex: 1;
}

.side-menu__section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.side-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-menu__link {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.18s;
}

.side-menu__link:hover {
  background: var(--bg-alt);
}

.side-menu__divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.side-menu__support p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.side-menu__support a {
  color: var(--blue);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   PRODUCT HERO
══════════════════════════════════════════ */
.product-hero {
  background: var(--bg-white);
  padding: 0 0 24px;
}

/* ── GALLERY ── */
.gallery {
  background: var(--bg-alt);
}

.gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  letter-spacing: 0.2px;
}

.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.gallery__main img.fading {
  opacity: 0;
}

.gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  overflow-x: auto;
  background: var(--bg-alt);
  scrollbar-width: none;
}

.gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.gallery__thumb {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery__thumb.active {
  border-color: var(--blue);
}

.gallery__thumb:hover {
  border-color: var(--text-muted);
}

/* ── PRODUCT INFO ── */
.product-info {
  padding: 18px 16px 0;
}

.product-header__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.product-header__verified-icon {
  color: var(--blue);
  font-size: 16px;
}

/* Trust pills — novo design */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.2px;
  line-height: 1;
}

.trust-pill svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.trust-pill--hot {
  background: #C00000;
  color: #fff;
}

.trust-pill--pix {
  background: #059669;
  color: #fff;
}

.trust-pill--shield {
  background: #1d4ed8;
  color: #fff;
}

.trust-pill--stock {
  background: #d97706;
  color: #fff;
}

/* Manter compatibilidade com badges antigas */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge--red {
  background: rgba(192, 0, 0, 0.12);
  color: #c00000;
  border-color: rgba(192, 0, 0, 0.3);
}

.badge--green {
  background: var(--green-light);
  color: var(--green);
  border-color: var(--green-border);
}

.badge--blue {
  background: var(--blue-light);
  color: var(--blue);
  border-color: rgba(192, 0, 0, 0.25);
}

/* Stars */
.stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  cursor: pointer;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 15px;
  height: 15px;
}

.stars-score {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.stars-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* Kit Selection Group */
.product-option__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.kit-selection-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.kit-selection-group.input-error {
  outline: 2px solid #c00000;
  border-radius: 12px;
  padding: 4px;
}

.kit-card {
  display: flex;
  position: relative;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--bg-white);
  overflow: hidden;
}

.kit-card.active {
  border-color: var(--blue);
  background: var(--blue-light);
}

.kit-card__radio {
  display: none;
}

.kit-card__radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  flex-shrink: 0;
  margin-right: 12px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.kit-card.active .kit-card__radio-custom {
  border-color: var(--blue);
  background: var(--blue);
}

.kit-card.active .kit-card__radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

.kit-card__content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.kit-card__thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  flex-shrink: 0;
}

.kit-card__info {
  flex: 1;
  min-width: 0;
}

.kit-card__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  display: block;
}

.kit-card__desc {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.kit-card__price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  flex-shrink: 0;
}

.kit-card__old-price {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.kit-card__current-price {
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
}

.kit-card.active .kit-card__current-price {
  color: var(--blue);
}

.kit-card__installment {
  font-size: 10px;
  color: var(--text-muted);
}

.badge-mais-vendido {
  display: inline-block;
  background: #C00000;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 3px 0 4px;
}

/* Vehicle Selection */
.vehicle-selection {
  margin-bottom: 16px;
}

.vehicle-dropdowns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.autocomplete-wrapper {
  position: relative;
}

.autocomplete-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-white);
  transition: border-color 0.2s;
  outline: none;
}

.autocomplete-input:focus {
  border-color: var(--blue);
}

.autocomplete-input.input-error {
  border-color: #c00000;
}

.autocomplete-input:disabled {
  background: var(--bg-alt);
  color: var(--text-muted);
}

.autocomplete-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border: 1.5px solid var(--blue);
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.autocomplete-list.active {
  display: block;
}

.autocomplete-item {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid var(--bg-alt);
  transition: background 0.15s;
}

.autocomplete-item:last-child {
  border-bottom: none;
}

.autocomplete-item:hover {
  background: var(--blue-light);
  color: var(--blue);
}

/* ═════════════════════════════════════════════
   SMART VEHICLE PICKER — campo único inteligente
   Aceita entrada livre ("Toyota Corolla 2020"),
   parseia e sugere marca/modelo/ano em tempo real.
   ═════════════════════════════════════════════ */

/* Wrapper especial com ícone de lupa à esquerda */
.autocomplete-wrapper.is-smart {
  position: relative;
}

.autocomplete-wrapper.is-smart .sp-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  transition: color 0.2s;
  z-index: 2;
}

.autocomplete-wrapper.is-smart .sp-smart-input {
  padding-left: 40px;
  font-weight: 500;
  border-width: 2px;
  background: var(--bg-white);
}

.autocomplete-wrapper.is-smart .sp-smart-input::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.autocomplete-wrapper.is-smart .sp-smart-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.08);
}

.autocomplete-wrapper.is-smart .sp-smart-input:focus ~ .sp-search-icon,
.autocomplete-wrapper.is-smart:focus-within .sp-search-icon {
  color: var(--blue);
}

/* Dropdown enriquecido — itens compostos e cabeçalho */
.autocomplete-list.sp-smart-list {
  max-height: 340px;
  border-width: 2px;
  border-radius: 0 0 10px 10px;
  padding: 0;
}

/* Header de categoria (ex: "Toyota — 12 modelo(s)") */
.autocomplete-list .autocomplete-header {
  padding: 10px 14px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-alt);
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  pointer-events: none;
  list-style: none;
  position: sticky;
  top: 0;
  z-index: 1;
}

.autocomplete-list .autocomplete-header strong {
  color: var(--text);
  font-weight: 700;
}

.autocomplete-list .autocomplete-header em {
  color: var(--blue);
  font-style: normal;
  font-weight: 600;
}

/* Estado vazio */
.autocomplete-list .autocomplete-empty {
  padding: 16px 14px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  cursor: default;
  pointer-events: none;
  list-style: none;
  line-height: 1.5;
}

/* Linha composta: "Toyota ▸ Corolla ▸ 2020" */
.sp-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.35;
}

.sp-line strong {
  font-weight: 700;
  color: var(--text);
}

.sp-line em {
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
  background: rgba(192, 0, 0, 0.08);
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 12.5px;
}

.sp-line .sp-sep {
  color: var(--text-light);
  font-size: 13px;
  user-select: none;
}

.sp-line mark {
  background: rgba(251, 191, 36, 0.35);
  color: inherit;
  padding: 0 1px;
  border-radius: 2px;
  font-weight: inherit;
}

.autocomplete-item:hover .sp-line strong,
.autocomplete-item:hover .sp-line span {
  color: var(--blue);
}

/* "Best match" — sugestão completa com ano detectado, destaque forte */
.autocomplete-item.is-best-match {
  background: linear-gradient(90deg, rgba(5, 150, 105, 0.08), transparent 70%);
  border-left: 3px solid var(--green);
}

.autocomplete-item.is-best-match:hover {
  background: linear-gradient(90deg, rgba(5, 150, 105, 0.18), rgba(5, 150, 105, 0.04) 70%);
}

.autocomplete-item.is-best-match .sp-line strong,
.autocomplete-item.is-best-match .sp-line span {
  color: var(--text);
}

.sp-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #fff;
  background: var(--green);
  padding: 2px 8px;
  border-radius: 999px;
  margin-right: 4px;
}

.sp-best em {
  background: rgba(5, 150, 105, 0.15);
  color: var(--green);
}

/* Hint textual embaixo do picker */
.vehicle-hint {
  margin: -2px 2px 4px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Rótulo minúsculo "marca" / "modelo" à direita de itens ambíguos */
.sp-hint-mini {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--bg-alt);
  padding: 2px 7px;
  border-radius: 999px;
}

/* Mensagem de erro inline (abaixo de cada campo) */
.field-error {
  margin: 4px 2px 2px;
  font-size: 12.5px;
  font-weight: 600;
  color: #c00000;
  line-height: 1.35;
  animation: fieldErrorSlide 0.2s ease-out;
}

@keyframes fieldErrorSlide {
  from { opacity: 0; transform: translateY(-2px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .autocomplete-wrapper.is-smart .sp-smart-input {
    font-size: 14.5px;
    padding-left: 38px;
  }
  .autocomplete-wrapper.is-smart .sp-smart-input::placeholder {
    font-size: 13.5px;
  }
  .sp-line {
    font-size: 13.5px;
  }
  .autocomplete-list.sp-smart-list {
    max-height: 60vh;
  }
}

/* ═════════════════════════════════════════════
   VEHICLE FINDER — Card "Encontre o tapete..."
   ═════════════════════════════════════════════ */
.vehicle-finder {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 20px 22px;
  margin: 6px 0 18px;
  box-shadow: 0 6px 24px rgba(11, 11, 12, 0.08);
  border: 1px solid #f1f1f3;
  position: relative;
}

.vehicle-finder__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.vehicle-finder__head-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #ffe6d9;
  color: #d35a26;
  flex-shrink: 0;
}

.vehicle-finder__title {
  font-size: 17px;
  font-weight: 800;
  color: #0b1330;
  line-height: 1.25;
  margin: 0;
  font-family: var(--font);
}

.vehicle-finder__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vehicle-finder__row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vehicle-finder__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.vehicle-finder__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vehicle-finder__label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #8c93a6;
  text-transform: uppercase;
  margin: 0 2px;
  font-family: var(--font);
}

/* Estilo "select-look" para os inputs do finder (chevron à direita) */
.vehicle-finder .vf-select {
  position: relative;
}

.vehicle-finder .vf-input {
  width: 100%;
  padding: 13px 38px 13px 14px;
  border: 1.5px solid #e6e8ee;
  border-radius: 10px;
  background: #f8f9fc;
  color: #0b1330;
  font-size: 15px;
  font-family: var(--font);
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  line-height: 1.2;
  -webkit-appearance: none;
  appearance: none;
}

.vehicle-finder .vf-input::placeholder {
  color: #a4abbc;
  font-weight: 500;
}

.vehicle-finder .vf-input:focus {
  background: #fff;
  border-color: #c00000;
  box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.08);
}

.vehicle-finder .vf-input:disabled {
  background: #f4f5f8;
  color: #a4abbc;
  cursor: not-allowed;
}

.vehicle-finder .vf-input.input-error {
  border-color: #c00000;
  background: #fff5f5;
}

/* ── Select nativo sofisticado (MARCA / MODELO / ANO) ──────────────────
   Usa <select> nativo para rodar o picker do sistema operacional no
   mobile (UX perfeita) e estiliza com chevron customizado no desktop.
   font-size 16px é importante: evita o zoom automático do iOS Safari. */
.vehicle-finder .vf-select-wrapper {
  position: relative;
}

.vehicle-finder select.vf-native-select {
  width: 100%;
  padding: 13px 38px 13px 14px;
  border: 1.5px solid #e6e8ee;
  border-radius: 10px;
  background: #f8f9fc;
  color: #0b1330;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, color 0.2s;
  line-height: 1.2;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

/* Estilo dedicado quando NENHUMA opção foi escolhida ainda */
.vehicle-finder select.vf-native-select.is-placeholder,
.vehicle-finder select.vf-native-select:invalid {
  color: #a4abbc;
  font-weight: 500;
}

.vehicle-finder select.vf-native-select:focus {
  background: #fff;
  border-color: #c00000;
  box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.08);
}

.vehicle-finder select.vf-native-select:disabled {
  background: #f4f5f8;
  color: #a4abbc;
  cursor: not-allowed;
  opacity: 1;
  -webkit-text-fill-color: #a4abbc;
}

.vehicle-finder select.vf-native-select.input-error {
  border-color: #c00000;
  background: #fff5f5;
}

/* Cor do chevron acompanha o estado do select */
.vehicle-finder .vf-select-wrapper:has(select:disabled) .vf-chevron { color: #c8cdd9; }
.vehicle-finder .vf-select-wrapper:has(select:focus) .vf-chevron { color: #c00000; }

/* Garantia visual nas opções (alguns browsers desktop respeitam) */
.vehicle-finder select.vf-native-select option {
  color: #0b1330;
  background: #fff;
  font-weight: 500;
  padding: 8px;
}
.vehicle-finder select.vf-native-select option[disabled] {
  color: #a4abbc;
}

.vehicle-finder .vf-chevron {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c93a6;
  pointer-events: none;
  display: inline-flex;
}

/* Lista de autocomplete dentro do finder — ajusta visual ao novo card */
.vehicle-finder .autocomplete-list {
  border-radius: 10px;
  border: 1.5px solid #e6e8ee;
  margin-top: 4px;
  box-shadow: 0 8px 24px rgba(11, 11, 12, 0.10);
  border-top: 1.5px solid #e6e8ee;
  top: calc(100% + 4px);
}

.vehicle-finder__hint {
  margin: 2px 2px 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.45;
}

.vehicle-finder__hint em {
  font-style: italic;
  color: #0b1330;
  font-weight: 600;
}

/* Botões finder */
.btn-finder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation; /* elimina delay 300ms no iOS Safari */
}

.btn-finder--primary {
  background: linear-gradient(135deg, #ffb38a 0%, #ff9b6a 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 155, 106, 0.35);
}

.btn-finder--primary:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.btn-finder--primary:active {
  transform: translateY(0);
}

.btn-finder--dark {
  background: #0b1330;
  color: #fff;
  box-shadow: 0 6px 16px rgba(11, 19, 48, 0.25);
}

.btn-finder--dark:hover {
  background: #161e3d;
  transform: translateY(-1px);
}

/* Divisor "OU BUSQUE PELA PLACA" */
.vehicle-finder__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 16px;
}

.vehicle-finder__divider::before,
.vehicle-finder__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e6e8ee;
}

.vehicle-finder__divider span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #8c93a6;
  text-transform: uppercase;
}

/* Bloco da placa */
.vehicle-finder__plate {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vf-plate-input {
  position: relative;
}

.vf-plate-input .vf-input {
  padding-right: 64px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 15px;
}

.vf-plate-input .vf-input::placeholder {
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #a4abbc;
}

.vf-plate-flag {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 28px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #e6e8ee;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.vf-plate-flag-bar {
  flex: 1;
}

.vf-plate-flag-bar--green { background: #0a8a3a; }
.vf-plate-flag-bar--yellow { background: #ffd400; }
.vf-plate-flag-bar--blue { background: #0c2978; }

.vf-plate-flag-text {
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 8px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.6);
}

.vf-plate-feedback {
  margin: 4px 2px 0;
  font-size: 13px;
  font-weight: 600;
  color: #c00000;
  line-height: 1.4;
  animation: fieldErrorSlide 0.2s ease-out;
}

.vf-plate-feedback.is-success {
  color: #0a8a3a;
}

.vf-plate-feedback.is-info {
  color: #6b7280;
}

/* Loading spinner inline para o botão de placa */
.btn-finder.is-loading {
  pointer-events: none;
  opacity: 0.85;
}

.btn-finder.is-loading svg {
  animation: vfSpin 0.9s linear infinite;
}

@keyframes vfSpin {
  to { transform: rotate(360deg); }
}

/* Erro visual no input de placa quando a API rejeita */
.vf-input.vf-input--error {
  border-color: #d12525 !important;
  background: #fff5f5 !important;
  animation: vfShake 0.4s ease;
}

@keyframes vfShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

/* Mobile tweaks finder */
@media (max-width: 380px) {
  .vehicle-finder { padding: 20px 16px; }
  .vehicle-finder__title { font-size: 16px; }
  .vehicle-finder__row--2col { grid-template-columns: 1fr; gap: 14px; }
}

/* ═════════════════════════════════════════════
   POST-VEHICLE REVEAL — preço, frete e CTA aparecem
   suaves só depois que a marca/modelo/ano são identificados
   ═════════════════════════════════════════════ */
.post-vehicle-reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.post-vehicle-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═════════════════════════════════════════════
   VEHICLE BADGE OVERLAY — etiqueta com nome do
   carro identificado, sobreposta às fotos do tapete
   ═════════════════════════════════════════════ */
.vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: linear-gradient(135deg, #0b0b0c 0%, #1f1f22 100%);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28), 0 0 0 2px rgba(255, 255, 255, 0.65) inset;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  max-width: calc(100% - 24px);
  pointer-events: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.vehicle-badge__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  flex: 0 0 20px;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
}

.vehicle-badge__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
  line-height: 1.1;
}

.vehicle-badge.is-pulse {
  animation: vbPop 0.55s cubic-bezier(0.2, 1.4, 0.4, 1);
}

@keyframes vbPop {
  0%   { transform: scale(0.6); opacity: 0; }
  50%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 420px) {
  .vehicle-badge {
    font-size: 11px;
    padding: 7px 12px 7px 8px;
    top: 10px;
    left: 10px;
  }
  .vehicle-badge__text { max-width: 180px; }
  .vehicle-badge__check { width: 18px; height: 18px; flex-basis: 18px; font-size: 11px; }
}

/* Thumbs extras adicionados após a identificação */
.gallery__thumb--extra {
  border-color: rgba(192, 0, 0, 0.18);
  box-shadow: 0 0 0 0 rgba(192, 0, 0, 0.4);
  animation: thumbAppear 0.4s ease both;
}

@keyframes thumbAppear {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═════════════════════════════════════════════
   PRICE BLOCK — De / Por / PIX
   ═════════════════════════════════════════════ */
.price-block {
  margin: 6px 0 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #fff5ef 0%, #fff 60%);
  border: 1px solid #ffe2cf;
  border-radius: 14px;
}

.price-block__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.price-block__from {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.price-block__from s {
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 4px;
}

.price-block__discount {
  display: inline-flex;
  align-items: center;
  background: #c00000;
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.price-block__main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-block__label {
  font-size: 13px;
  color: #6b7280;
  font-weight: 600;
}

.price-block__value {
  font-size: 30px;
  font-weight: 900;
  color: #0b1330;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.price-block .price-pix-block {
  margin-top: 8px;
}

/* Stock Popup */
.stock-popup {
  display: none;
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  width: calc(100% - 32px);
  max-width: 420px;
}

.stock-popup.active {
  display: block;
  animation: popupIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.stock-popup__inner {
  background: #fff;
  border-left: 4px solid #059669;
  border-radius: 12px;
  padding: 14px 44px 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.stock-popup__icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.stock-popup__text {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  line-height: 1.45;
  flex: 1;
}

.stock-popup__close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 20px;
  color: #9ca3af;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  padding: 0;
}

/* Price PIX block */
.price-pix-block {
  margin: 16px 0 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid #059669;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-pix-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-pix-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.price-pix-main {
  font-size: 28px;
  font-weight: 900;
  color: #059669;
  line-height: 1;
}

.price-pix-label {
  font-size: 13px;
  font-weight: 700;
  color: #059669;
  opacity: 0.85;
  margin-left: 2px;
  align-self: flex-end;
  padding-bottom: 3px;
}

.price-pix-badge {
  margin-left: auto;
  background: #059669;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.price-pix-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #DCFCE7;
  border-radius: 6px;
  padding: 4px 10px;
  align-self: flex-start;
}

/* Shipping block */
.shipping-block {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.shipping-block svg {
  color: var(--text-muted);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.shipping-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
}

.shipping-city {
  font-weight: 700;
  color: var(--text);
}

.shipping-days {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
}

/* CTA Button */
.buy-btn {
  display: block;
  width: 100%;
  background: #C00000;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 17px 20px;
  border-radius: 10px;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(192, 0, 0, 0.35);
}

.buy-btn:hover {
  background: #8B0000;
  transform: translateY(-1px);
}

.buy-btn:active {
  transform: translateY(0);
}

/* ── Variante VERDE + pulse leve (CTA pós-identificação) ──
   Aplica no #mainBuyBtn (heroBuy) e na .sticky-cta .buy-btn. */
.buy-btn--green {
  background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  box-shadow:
    0 6px 18px rgba(22, 163, 74, 0.42),
    0 2px 4px rgba(0, 0, 0, 0.08),
    inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  animation: buyPulseGreen 2.6s ease-in-out infinite;
  position: relative;
}

.buy-btn--green:hover {
  background: linear-gradient(180deg, #15803d 0%, #166534 100%);
  box-shadow:
    0 8px 22px rgba(22, 163, 74, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.buy-btn--green:active {
  transform: translateY(0);
  box-shadow:
    0 4px 12px rgba(22, 163, 74, 0.4),
    inset 0 1px 4px rgba(0, 0, 0, 0.18);
}

@keyframes buyPulseGreen {
  0%, 100% {
    box-shadow:
      0 6px 18px rgba(22, 163, 74, 0.42),
      0 2px 4px rgba(0, 0, 0, 0.08),
      0 0 0 0 rgba(22, 163, 74, 0.55),
      inset 0 -2px 0 rgba(0, 0, 0, 0.12);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      0 8px 22px rgba(22, 163, 74, 0.55),
      0 2px 6px rgba(0, 0, 0, 0.10),
      0 0 0 12px rgba(22, 163, 74, 0),
      inset 0 -2px 0 rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
  }
}

/* "Pinga" extra ao revelar — usada uma única vez logo após identificação */
.buy-btn.btn-cta--ping {
  animation:
    buyPulseGreen 2.6s ease-in-out infinite,
    buyPing 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1;
}

@keyframes buyPing {
  0%   { transform: scale(0.94); }
  60%  { transform: scale(1.025); }
  100% { transform: scale(1); }
}

/* Sticky CTA — herda o pulse, com sombra um pouco mais densa */
.sticky-cta .buy-btn--green {
  box-shadow:
    0 12px 32px rgba(22, 163, 74, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.18),
    inset 0 -2px 0 rgba(0, 0, 0, 0.14);
}

/* Acessibilidade: respeita prefer-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .buy-btn--green,
  .buy-btn.btn-cta--ping {
    animation: none !important;
  }
}

/* ══════════════════════════════════════════
   VEHICLE-FINDER hide/show + chip resumido
══════════════════════════════════════════ */
.vehicle-finder {
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.32s ease;
  transform-origin: top center;
}

.vehicle-finder--hiding {
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  pointer-events: none;
}

.vehicle-finder--showing {
  opacity: 0;
  transform: translateY(-6px);
}

.vehicle-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1.5px solid #bbf7d0;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.08);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.vehicle-chip.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.vehicle-chip__check {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
}

.vehicle-chip__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.vehicle-chip__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #047857;
  font-weight: 700;
  line-height: 1.1;
}

.vehicle-chip__name {
  font-size: 14px;
  color: #14532d;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vehicle-chip__change {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #047857;
  border: 1.5px solid #bbf7d0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

.vehicle-chip__change:hover {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
  transform: translateY(-1px);
}

.vehicle-chip__change:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .vehicle-chip {
    padding: 10px 12px;
    gap: 10px;
  }
  .vehicle-chip__change {
    padding: 7px 10px;
    font-size: 11px;
  }
  .vehicle-chip__name {
    font-size: 13px;
  }
}

/* Payment icons */
.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 0 8px;
}

.payment-icons img {
  height: 20px;
  width: auto;
}

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust-strip {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px 16px;
  background: var(--bg-white);
  border-top: 1px solid var(--bg-alt);
  border-bottom: 1px solid var(--bg-alt);
  margin-top: 24px;
  text-align: center;
  gap: 8px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.trust-icon {
  font-size: 26px;
  line-height: 1;
}

.trust-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.trust-sublabel {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ══════════════════════════════════════════
   SECTION GENERIC
══════════════════════════════════════════ */
.section {
  padding: 36px 16px;
}

.section--alt {
  background: var(--bg-alt);
}

.section--white {
  background: var(--bg-white);
}

.section-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--text);
  text-align: center;
  margin-bottom: 6px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   TOOL CARDS
══════════════════════════════════════════ */
.tool-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.tool-card__img-wrap {
  width: 100%;
  height: 220px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.tool-card__img-wrap::after {
  content: 'Ampliar';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(192, 0, 0, 0.82);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  padding: 5px 0;
  letter-spacing: 0.5px;
  pointer-events: none;
}

.tool-card__img-wrap:hover {
  box-shadow: 0 0 0 2px var(--blue);
}

.tool-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-card__body {
  flex: 1;
  min-width: 0;
  padding: 14px 16px 16px;
}

.tool-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.3;
}

.tool-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.tool-card__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tool-card__list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.tool-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

/* ══════════════════════════════════════════
   SPECS LIST — per-item accordion
══════════════════════════════════════════ */
.specs-list--acc {
  gap: 0;
  padding: 0;
}

.sl-item {
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.sl-item:last-child {
  border-bottom: none;
}

.sl-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  color: var(--text);
  transition: color 0.15s;
}

.sl-item__head:hover {
  color: var(--blue);
}

.sl-item__head strong {
  font-weight: 700;
}

.sl-arr {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s ease;
}

.sl-item.open .sl-arr {
  transform: rotate(180deg);
}

.sl-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0;
}

.sl-item.open .sl-item__body {
  max-height: 120px;
  padding-bottom: 12px;
}

.specs-box {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 20px 16px;
  margin-bottom: 16px;
}

.specs-box h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.specs-list li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  border-left: 3px solid var(--green);
  padding-left: 10px;
}

.specs-list li strong {
  color: var(--text);
}

/* Technical specs table */
.specs-table {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.specs-table h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  padding: 14px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-row {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row__key,
.specs-row__val {
  padding: 12px 14px;
  font-size: 15px;
  line-height: 1.5;
}

.specs-row__key {
  font-weight: 700;
  color: var(--text);
  background: var(--bg);
  flex: 0 0 40%;
}

.specs-row__val {
  color: var(--text-muted);
  flex: 1;
}

/* ══════════════════════════════════════════
   WHY CHEAP
══════════════════════════════════════════ */
.why-cheap-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-cheap-card {
  background: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-cheap-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-cheap-content h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.why-cheap-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews-rating {
  text-align: center;
  margin-bottom: 20px;
}

.reviews-rating__stars {
  font-size: 26px;
  color: var(--yellow);
  letter-spacing: 4px;
  margin-bottom: 6px;
}

.reviews-rating p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.review-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}

.review-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.review-stars {
  font-size: 16px;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.review-text {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  border-radius: 12px;
  padding: 2px 8px;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.18s;
}

.faq-question:hover {
  background: var(--bg);
}

.faq-question .faq-arrow {
  font-size: 18px;
  color: var(--text-muted);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 16px;
  color: #555;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 16px 16px;
}

/* ══════════════════════════════════════════
   FINAL CTA SECTION
══════════════════════════════════════════ */
.final-cta {
  background: var(--bg-white);
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.final-cta .section-title {
  margin-bottom: 8px;
}

.price-main {
  font-size: 32px;
  font-weight: 900;
  color: var(--green);
  margin: 10px 0 4px;
}

.price-info {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════
   STICKY CTA
══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: calc(100% - 32px);
  max-width: calc(var(--max) - 32px);
  z-index: 150;
  background: transparent;
  padding: 0;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.26, 0.64, 1), opacity 0.35s ease;
  pointer-events: none;
}

.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta .buy-btn {
  font-size: 16px;
  padding: 15px;
  box-shadow: 0 8px 32px rgba(192, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.18);
  border-radius: 14px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--text);
  color: #e5e7eb;
  padding: 28px 20px 36px;
  text-align: center;
}

.site-footer__logo {
  margin: 0 auto 16px;
}

.site-footer__logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin: 0 auto;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-bottom: 18px;
}

.site-footer__nav a {
  font-size: 12px;
  color: #9ca3af;
  transition: color 0.2s;
}

.site-footer__nav a:hover {
  color: #fff;
}

.site-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
}

.site-footer__copy {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.6;
}

.site-footer__email {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 6px;
}

.site-footer__email a {
  color: #d1d5db;
}

/* ══════════════════════════════════════════
   REVIEWS — Novo Layout (vídeos + grid 2 col)
══════════════════════════════════════════ */
.review-videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.review-video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.review-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 12px 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  color: #fff;
  text-align: center;
}

.rvo-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  display: block;
  margin: 0 auto 8px;
}

.rvo-name {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.rvo-stars {
  font-size: 11px;
  color: #FBBF24;
  letter-spacing: 1px;
  margin: 3px 0 2px;
}

.rvo-city {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}

/* Reviews Grid 2 colunas */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Reviews coluna única */
.reviews-list-v2 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card-v2 {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rcv2-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.rcv2-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.rcv2-avatar-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #f3f4f6;
}

.rcv2-photo {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Foto grande anexada abaixo do texto (como foto enviada no review) */
.rcv2-photo-attached {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 12px;
}

.rcv2-info {
  flex: 1;
  min-width: 0;
}

.rcv2-name {
  font-size: 13px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.rcv2-badge {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 20px;
  white-space: nowrap;
}

.rcv2-stars {
  font-size: 13px;
  color: var(--yellow);
  letter-spacing: 1px;
  margin: 3px 0 2px;
}

.rcv2-city {
  font-size: 11px;
  color: var(--text-muted);
}

.rcv2-text {
  font-size: 13px;
  color: #444;
  line-height: 1.55;
  margin: 0;
}

/* ══════════════════════════════════════════
   BENEFITS GRID (projeto tapete original)
══════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 18px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  color: #111;
}

.benefit-card p {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

/* specs-wrapper layout (checklist + dimensões) */
.specs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Override specs-list for checklist style */
.specs-wrapper .specs-list {
  gap: 14px;
}

.specs-wrapper .specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  border-left: none;
  padding-left: 0;
}

.specs-wrapper .specs-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Dimensions box */
.dimensions-box {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 20px 16px;
}

/* ── DESKTOP CENTER ── */

@media (min-width: 501px) {
  body {
    max-width: var(--max);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.06);
  }

  html {
    background: #e9eaec;
  }

  .sticky-cta {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
}