:root {
  /* Azul-marinho (terno do Rubens) + dourado */
  --bg: #07111f;
  --bg-2: #0c1a30;
  --card: #0e1e37;
  --linha: #1d2f52;
  --texto: #eef2f9;
  --texto-2: #a3b2cb;
  --texto-3: #6f82a3;
  --ouro: #c9a44c;
  --ouro-2: #e4c57c;
  --azul: #2c5fdc;
  --verde: #2ecc71;
  --amarelo: #ffc53d;
  --raio: 14px;
  --sombra: 0 10px 30px -12px rgb(0 0 0 / 0.6);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--texto);
  font: 15px/1.5 'Inter Tight', system-ui, -apple-system, Segoe UI, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; color: inherit; }
.wrap { width: min(1280px, 100% - 32px); margin-inline: auto; }

/* Topo */
.topo { position: sticky; top: 0; z-index: 10; background: rgb(7 17 31 / 0.82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--linha); }
.topo__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 60px; }
.marca { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.marca b { font-weight: 500; color: var(--texto-2); margin-left: 5px; }
.marca__icone { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; background: linear-gradient(145deg, #e9cf8c, var(--ouro) 55%, #a8842f); }
.marca__icone svg { width: 22px; height: 22px; fill: #0b1830; }
.topo__meta { margin: 0; font-size: 13px; color: var(--texto-2); text-align: right; }
.topo__meta .pulso { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--verde); margin-right: 7px; box-shadow: 0 0 0 0 rgb(46 204 113 / 0.6); animation: pulso 2s infinite; vertical-align: 1px; }
@keyframes pulso { 70% { box-shadow: 0 0 0 7px rgb(46 204 113 / 0); } 100% { box-shadow: 0 0 0 0 rgb(46 204 113 / 0); } }

/* Hero */
.hero { padding: 56px 0 28px; background: radial-gradient(900px 380px at 12% -10%, rgb(201 164 76 / 0.14), transparent 70%), radial-gradient(700px 420px at 95% 0%, rgb(44 95 220 / 0.22), transparent 70%); }
.hero__eyebrow { margin: 0 0 12px; font: 500 12px/1 'JetBrains Mono', monospace; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ouro-2); }
.hero h1 { margin: 0; font-size: clamp(34px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 800; }
.hero h1 span { color: var(--texto-3); }
.hero__sub { max-width: 560px; margin: 16px 0 28px; color: var(--texto-2); font-size: 17px; }

.busca { display: flex; align-items: center; gap: 12px; max-width: 720px; padding: 0 18px; height: 58px; background: var(--bg-2); border: 1px solid var(--linha); border-radius: 16px; transition: border-color 0.2s, box-shadow 0.2s; }
.busca:focus-within { border-color: var(--ouro); box-shadow: 0 0 0 4px rgb(201 164 76 / 0.15); }
.busca svg { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--texto-3); stroke-width: 2; stroke-linecap: round; }
.busca input { flex: 1; min-width: 0; height: 100%; background: none; border: 0; outline: 0; font-size: 16px; }
.busca input::placeholder { color: var(--texto-3); }

.fontes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 14px; border-radius: 99px; border: 1px solid var(--linha); background: var(--bg-2); color: var(--texto-2); font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.15s; }
.chip:hover { color: var(--texto); border-color: #2e4574; }
.chip[aria-pressed='true'] { background: var(--texto); color: var(--bg); border-color: var(--texto); }
.chip small { font: 500 11px 'JetBrains Mono', monospace; opacity: 0.7; }
.chip .ponto { width: 7px; height: 7px; border-radius: 50%; background: var(--c, var(--ouro)); }

/* Filtros */
.filtros { position: sticky; top: 60px; z-index: 5; display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 0; background: linear-gradient(var(--bg) 75%, transparent); }
.filtros select { height: 40px; padding: 0 34px 0 14px; border-radius: 10px; border: 1px solid var(--linha); background: var(--bg-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa1ad' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center / 16px; appearance: none; font-size: 14px; cursor: pointer; }
.filtros select:focus-visible, .chip:focus-visible, .limpar:focus-visible, .mais button:focus-visible { outline: 2px solid var(--ouro); outline-offset: 2px; }
.filtros select.ativo { border-color: var(--ouro); color: #fff; }
.limpar { height: 40px; padding: 0 14px; border: 0; background: none; color: var(--ouro-2); font-weight: 600; cursor: pointer; }

.contagem { margin: 6px 0 16px; color: var(--texto-2); font-size: 14px; }
.contagem b { color: var(--texto); }

/* Grade */
.grade { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: 18px; }
.card { display: flex; flex-direction: column; overflow: hidden; background: var(--card); border: 1px solid var(--linha); border-radius: var(--raio); transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-3px); border-color: #2e4574; box-shadow: var(--sombra); }
.card:focus-visible { outline: 2px solid var(--ouro); outline-offset: 3px; }
.card__foto { position: relative; aspect-ratio: 4 / 3; background: #0a1628 linear-gradient(110deg, #0c1a30 30%, #13243f 50%, #0c1a30 70%) 0 0 / 300% 100%; animation: brilho 1.4s linear infinite; }
.card__foto.ok { animation: none; }
@keyframes brilho { to { background-position: -150% 0; } }
.card__foto img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transition: opacity 0.3s; }
.card__foto.ok img { opacity: 1; }
.card__foto.sem img { display: none; }
.card__foto.sem { background: radial-gradient(120% 90% at 50% 110%, rgb(201 164 76 / 0.10), transparent 60%), #0a1628; }
.card__foto.sem::before { content: ''; position: absolute; left: 50%; top: 42%; width: 72px; height: 40px; transform: translate(-50%, -50%); opacity: 0.35; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 40' fill='none' stroke='%23eef0f3' stroke-width='2.2' stroke-linejoin='round'%3E%3Cpath d='M4 30h64v-7l-6-4-9-10H22l-9 10-9 3z'/%3E%3Ccircle cx='18' cy='31' r='5' fill='%23111419'/%3E%3Ccircle cx='54' cy='31' r='5' fill='%23111419'/%3E%3Cpath d='M24 12h28l6 7H18z'/%3E%3C/svg%3E") no-repeat center / contain; }
.card__foto.sem::after { content: 'Fotos no edital do leilão'; position: absolute; left: 0; right: 0; top: 62%; text-align: center; color: var(--texto-3); font-size: 12.5px; }
.card__fonte { position: absolute; left: 10px; top: 10px; padding: 4px 9px; border-radius: 7px; background: rgb(7 17 31 / 0.78); backdrop-filter: blur(6px); font-size: 11.5px; font-weight: 600; letter-spacing: 0.01em; display: flex; align-items: center; gap: 6px; }
.card__fonte::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--c, var(--ouro)); }
.card__tempo { position: absolute; right: 10px; bottom: 10px; padding: 4px 9px; border-radius: 7px; background: rgb(7 17 31 / 0.82); font: 500 11.5px 'JetBrains Mono', monospace; }
.card__tempo:empty { display: none; }
.card__tempo.urgente { background: var(--ouro); color: #1a1405; }

.card__corpo { display: flex; flex-direction: column; gap: 6px; flex: 1; padding: 14px 16px 16px; }
.card__titulo { margin: 0; font-size: 16px; line-height: 1.3; font-weight: 650; letter-spacing: -0.01em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__specs { margin: 0; color: var(--texto-2); font-size: 13px; }
.card__specs span + span::before { content: '·'; margin: 0 6px; color: var(--texto-3); }
.card__preco { margin-top: auto; padding-top: 10px; display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 8px; }
.card__rotulo { width: 100%; font-size: 11.5px; color: var(--texto-3); text-transform: uppercase; letter-spacing: 0.06em; }
.card__valor { font-size: 22px; font-weight: 750; letter-spacing: -0.02em; }
.card__valor.sem { font-size: 15px; font-weight: 600; color: var(--texto-2); }
.card__fipe { font-size: 12.5px; font-weight: 600; color: var(--verde); }
.card__rodape { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin: 10px 0 0; padding-top: 12px; border-top: 1px solid var(--linha); font-size: 12.5px; color: var(--texto-3); }
.card__natureza { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card__cta { display: inline-flex; align-items: center; gap: 4px; flex: none; color: var(--ouro-2); font-weight: 600; }
.card__cta svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.2; }

.mais { display: flex; justify-content: center; margin: 32px 0 8px; }
.mais button { height: 48px; padding: 0 28px; border-radius: 12px; border: 1px solid var(--linha); background: var(--bg-2); font-weight: 600; cursor: pointer; }
.mais button:hover { border-color: var(--ouro); }
.vazio { padding: 60px 0; text-align: center; color: var(--texto-2); }

.rodape { margin-top: 64px; padding: 36px 0 48px; border-top: 1px solid var(--linha); color: var(--texto-3); font-size: 13px; }
.rodape p { max-width: 820px; margin: 0 0 10px; }
.rodape b { color: var(--texto-2); }

/* ---------- Menu + Instagram ---------- */
.menu { display: flex; gap: 4px; margin-right: auto; margin-left: 28px; }
.menu a { padding: 7px 12px; border-radius: 8px; font-size: 14px; font-weight: 550; color: var(--texto-2); transition: color 0.15s, background 0.15s; }
.menu a:hover { color: var(--texto); background: var(--bg-2); }
.menu a[aria-current='page'] { color: var(--texto); background: var(--bg-2); }
/* Destaque dourado do "Quem é o Rubens" */
.menu a.menu__rubens { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 8px; margin-left: 6px; padding: 4px 14px 4px 4px; border-radius: 99px; background: linear-gradient(180deg, #ecd394, var(--ouro) 60%, #b38b34); color: #14110a; font-weight: 700; box-shadow: 0 0 0 1px rgb(236 211 148 / 0.4), 0 6px 20px -8px rgb(201 164 76 / 0.7); transition: filter 0.15s, box-shadow 0.15s, transform 0.15s; }
.menu a.menu__rubens:hover { color: #14110a; background: linear-gradient(180deg, #f3dea6, #d4b05a 60%, #b38b34); box-shadow: 0 0 0 1px rgb(236 211 148 / 0.6), 0 8px 26px -8px rgb(201 164 76 / 0.9); transform: translateY(-1px); }
.menu a.menu__rubens[aria-current='page'] { color: #14110a; background: linear-gradient(180deg, #ecd394, var(--ouro) 60%, #b38b34); box-shadow: 0 0 0 2px #07111f, 0 0 0 3px var(--ouro-2); }
.menu__rubens img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px #07111f; }
.menu__rubens::after { content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%; background: linear-gradient(100deg, transparent, rgb(255 255 255 / 0.55), transparent); transform: skewX(-20deg); animation: brilho-ouro 5s ease-in-out 1.5s infinite; pointer-events: none; }
@keyframes brilho-ouro { 0%, 70% { left: -60%; } 100% { left: 130%; } }

.insta { display: inline-flex; align-items: center; gap: 7px; height: 34px; padding: 0 12px 0 8px; border-radius: 99px; border: 1px solid var(--linha); font-size: 13px; font-weight: 600; color: var(--texto); flex: none; transition: border-color 0.15s, background 0.15s; }
.insta:hover { border-color: #e1306c; background: rgb(225 48 108 / 0.08); }
.insta svg { width: 20px; height: 20px; fill: none; stroke: #e1306c; stroke-width: 2; }
.insta .insta__ponto { fill: #e1306c; stroke: none; }
.insta:focus-visible, .menu a:focus-visible { outline: 2px solid var(--ouro); outline-offset: 2px; }
@media (max-width: 1100px) { .insta span { display: none; } .insta { padding: 0 7px; } }
@media (max-width: 900px) { .topo__meta { display: none; } }
@media (max-width: 640px) {
  .menu { margin-left: 10px; }
  .menu a { padding: 6px 8px; font-size: 13px; white-space: nowrap; }
  .marca > span:last-child { display: none; }
  .menu__longo { display: none; }
  .menu a.menu__rubens { margin-left: 0; padding-right: 12px; }
  .conta__nome { display: none; }
  .topo__dir { gap: 10px; }
  .menu a:first-child { display: none; }
  .conta .btn--linha { display: none; }
}

/* ---------- Conta / botões ---------- */
.topo__dir { display: flex; align-items: center; gap: 18px; min-width: 0; }
.conta { display: flex; align-items: center; gap: 8px; flex: none; }
.conta__selo { padding: 3px 9px; border-radius: 99px; background: linear-gradient(90deg, #b8903a, #f0d894); color: #1a1405; font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em; }
.conta__nome { font-size: 14px; font-weight: 600; }
.link { padding: 0; border: 0; background: none; color: var(--ouro-2); font-weight: 600; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 42px; padding: 0 16px; border-radius: 10px; border: 1px solid transparent; font-weight: 650; font-size: 14px; cursor: pointer; white-space: nowrap; transition: filter 0.15s, border-color 0.15s, background 0.15s; }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--primario { background: linear-gradient(180deg, #d9b863, var(--ouro)); color: #14110a; }
.btn--primario:hover { filter: brightness(1.08); }
.btn--primario svg { fill: none; stroke: currentColor; stroke-width: 2; }
.btn--linha { background: transparent; border-color: var(--linha); color: var(--texto); }
.btn--linha:hover { border-color: #3b5587; }
.btn--linha svg { fill: none; stroke: currentColor; stroke-width: 2.2; width: 14px; height: 14px; }
.btn--wpp { background: #25d366; color: #06301a; }
.btn--wpp:hover { filter: brightness(1.06); }
.btn--wpp svg { fill: currentColor; }
.btn--peq { height: 34px; padding: 0 12px; font-size: 13px; }
.btn--cheio { width: 100%; }
.btn:focus-visible, .link:focus-visible { outline: 2px solid var(--ouro); outline-offset: 2px; }

/* ---------- Faixa do plano (gratuito) ---------- */
.plano { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 28px; padding: 18px 20px; border-radius: 16px; border: 1px solid rgb(201 164 76 / 0.35); background: linear-gradient(100deg, rgb(201 164 76 / 0.14), rgb(201 164 76 / 0.03)); }
.plano[hidden] { display: none; }
.plano__txt p { margin: 8px 0 0; color: var(--texto-2); max-width: 640px; }
.plano__txt b { color: var(--texto); }
.plano__selo { display: inline-block; padding: 3px 9px; border-radius: 99px; background: rgb(201 164 76 / 0.18); color: var(--ouro-2); font: 500 11px 'JetBrains Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase; }
.modal__caixa > .plano__selo { align-self: flex-start; }
.plano__acoes { display: flex; gap: 8px; flex: none; }
.chip--info { cursor: default; }
.chip--info:hover { color: var(--texto-2); border-color: var(--linha); }
.filtros select.travado { color: var(--texto-3); }

/* ---------- Card (novo layout) ---------- */
.card__link { color: inherit; }
.card__titulo a { cursor: pointer; }
.card__titulo a:hover { color: var(--ouro-2); }
.card__foto.card__link { display: block; cursor: pointer; }
.card__acoes { display: flex; gap: 8px; margin-top: 12px; }
.card__acoes .btn { flex: 1; height: 40px; padding: 0 10px; font-size: 13.5px; }
.card__natureza { margin: 10px 0 0; padding-top: 10px; border-top: 1px solid var(--linha); font-size: 12.5px; color: var(--texto-3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.card--travado { cursor: pointer; }
.card--travado .card__valor { display: flex; align-items: center; gap: 10px; }
.borrado { filter: blur(7px); user-select: none; opacity: 0.8; font-weight: 750; }
.cadeado { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--ouro-2); letter-spacing: 0; }
.cadeado svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.card--travado:hover .card__foto img { filter: brightness(0.75); }

/* ---------- Custo total ---------- */
.card__acoes { flex-wrap: wrap; }
.card__acoes .btn--linha-toda { flex-basis: 100%; }
.card__acoes .btn svg { width: 16px; height: 16px; }
.card__acoes [data-simular] svg { fill: none; stroke: currentColor; stroke-width: 2; }

.card__total { position: relative; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 10px; padding: 9px 12px; border-radius: 10px; background: rgb(201 164 76 / 0.08); border: 1px dashed rgb(201 164 76 / 0.35); }
.card__total-rot { flex-basis: 100%; font-size: 11.5px; color: var(--texto-3); text-transform: uppercase; letter-spacing: 0.06em; }
.card__total strong { font-size: 18px; font-weight: 750; letter-spacing: -0.01em; color: var(--ouro-2); }
.card__total-sem { font-size: 13px; color: var(--texto-2); }
.card--travado .card__total { background: rgb(255 255 255 / 0.03); border-color: var(--linha); }
.info { display: grid; place-items: center; width: 20px; height: 20px; padding: 0; border-radius: 50%; border: 1px solid rgb(227 196 122 / 0.6); background: none; color: var(--ouro-2); font: 700 12px/1 Georgia, serif; font-style: italic; cursor: help; }
.info:focus-visible { outline: 2px solid var(--ouro); outline-offset: 2px; }

/* Composição (hint ao passar o mouse / tocar no "i") */
.composicao { font-size: 13px; }
.composicao ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.composicao li, .composicao__total { display: flex; justify-content: space-between; gap: 12px; }
.composicao li span { color: var(--texto-2); }
.composicao li b { font-weight: 600; white-space: nowrap; }
.composicao li:first-child span { color: var(--texto); font-weight: 600; }
.composicao__total { margin: 10px 0 0; padding-top: 10px; border-top: 1px solid var(--linha); font-size: 15px; }
.composicao__total b { color: var(--ouro-2); font-size: 17px; }
.card__total .composicao { position: absolute; left: -1px; right: -1px; bottom: calc(100% + 8px); z-index: 6; padding: 14px; border-radius: 12px; background: #12223e; border: 1px solid #2a3e66; box-shadow: 0 18px 40px -12px rgb(0 0 0 / 0.8); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity 0.15s, transform 0.15s, visibility 0.15s; pointer-events: none; }
.card__total .composicao::after { content: ''; position: absolute; left: 22px; top: 100%; border: 7px solid transparent; border-top-color: #2a3e66; }
.card__total.aberto .composicao, .card__total:focus-within .composicao { opacity: 1; visibility: visible; transform: none; }
@media (hover: hover) { .card__total:hover .composicao { opacity: 1; visibility: visible; transform: none; } }
.card { overflow: visible; }
.card__foto { border-radius: var(--raio) var(--raio) 0 0; overflow: hidden; }

/* Simulador */
.modal--calc { width: min(480px, 100% - 32px); }
.calc__campo { display: flex; gap: 6px; }
.calc__campo input { flex: 1; min-width: 0; font-size: 20px; font-weight: 700; }
.calc__campo .btn { height: 46px; }
.composicao--aberta { padding: 14px; border-radius: 12px; background: var(--bg); border: 1px solid var(--linha); }
.calc__nota { margin: 0; font-size: 12px; color: var(--texto-3); }

/* ---------- WhatsApp flutuante ---------- */
.wpp-flutuante { position: fixed; right: 20px; bottom: 20px; z-index: 20; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #25d366; box-shadow: 0 10px 30px -6px rgb(37 211 102 / 0.55); transition: transform 0.2s; }
.wpp-flutuante[hidden] { display: none; }
.wpp-flutuante:hover { transform: scale(1.06); }
.wpp-flutuante svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Modais ---------- */
.modal { width: min(440px, 100% - 32px); padding: 0; border: 1px solid var(--linha); border-radius: 18px; background: var(--bg-2); color: var(--texto); box-shadow: 0 30px 80px -20px rgb(0 0 0 / 0.8); }
.modal::backdrop { background: rgb(2 8 18 / 0.72); backdrop-filter: blur(4px); }
.modal__caixa { position: relative; display: flex; flex-direction: column; gap: 14px; padding: 28px 26px 24px; }
.modal h2 { margin: 0; font-size: 24px; letter-spacing: -0.02em; line-height: 1.15; }
.modal__sub { margin: -4px 0 4px; color: var(--texto-2); font-size: 14px; }
.modal__fechar { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border: 0; border-radius: 8px; background: none; color: var(--texto-2); font-size: 24px; line-height: 1; cursor: pointer; }
.modal__fechar:hover { background: var(--linha); color: var(--texto); }
.modal label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--texto-2); }
.modal input { height: 46px; padding: 0 14px; border-radius: 10px; border: 1px solid var(--linha); background: var(--bg); font-size: 15px; outline: 0; }
.modal input:focus { border-color: var(--ouro); box-shadow: 0 0 0 3px rgb(201 164 76 / 0.15); }
.modal__erro { margin: 0; color: #ff6b6b; font-size: 13px; font-weight: 600; }
.modal__rodape { margin: 0; text-align: center; color: var(--texto-2); font-size: 13.5px; }
.modal__carro { display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 12px; background: var(--bg); border: 1px solid var(--linha); }
.modal__carro[hidden] { display: none; }
.modal__carro img { width: 84px; height: 63px; object-fit: cover; border-radius: 8px; flex: none; }
.modal__carro div { display: flex; flex-direction: column; gap: 2px; min-width: 0; font-size: 13px; color: var(--texto-2); }
.modal__carro b { color: var(--texto); font-size: 14.5px; }
.beneficios { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.beneficios li { position: relative; padding-left: 26px; font-size: 14px; color: var(--texto-2); }
.beneficios li::before { content: ''; position: absolute; left: 0; top: 2px; width: 17px; height: 17px; border-radius: 50%; background: rgb(46 204 113 / 0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232ecc71' stroke-width='3'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E") no-repeat center / 11px; }
.preco-plano { margin: 2px 0 0; font-size: 15px; color: var(--texto-2); }
.preco-plano b { font-size: 26px; color: var(--texto); letter-spacing: -0.02em; }

@media (max-width: 640px) {
  .topo__meta { display: none; }
  .plano { flex-direction: column; align-items: stretch; }
  .plano__acoes .btn { flex: 1; }
  .modal__caixa { padding: 24px 18px 18px; }
}

@media (max-width: 640px) {
  .topo__meta { font-size: 11.5px; max-width: 48%; }
  .marca b { display: none; }
  .hero { padding-top: 36px; }
  .filtros { top: 60px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; margin-inline: -16px; padding-inline: 16px; }
  .filtros::-webkit-scrollbar { display: none; }
  .filtros select { flex: none; }
  .grade { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
