/* ═══════════════════════════════════════
   REPASSE VEÍCULOS 2.0 — FRONTEND CSS
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700;900&family=Barlow+Condensed:wght@700;900&display=swap');

.rv-site {
  --rv-p:    #CC0000;
  --rv-ph:   #FF2222;
  --rv-s:    #0A0A0A;
  --rv-card: #141414;
  --rv-bd:   #222;
  --rv-txt:  #F0F0F0;
  --rv-mut:  #888;
  --rv-gold: #FFD700;
  --rv-grn:  #00c864;
  font-family: 'Barlow', sans-serif;
  color: var(--rv-txt);
  -webkit-font-smoothing: antialiased;
}

/* ══ SEÇÃO TÍTULOS ══ */
.rv-sec-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px,5vw,52px); letter-spacing: 2px;
  color: var(--rv-txt); margin: 0 0 8px; line-height: 1;
}
.rv-sec-sub { color: var(--rv-mut); font-size: 15px; margin: 0 0 24px; line-height: 1.6; }

/* ══ FILTROS ══ */
.rv-filtros {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--rv-bd); border-radius: 12px;
  padding: 14px 18px; margin-bottom: 14px;
}
.rv-busca-w {
  flex: 1; min-width: 200px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,0,0,.3); border: 1.5px solid var(--rv-bd);
  border-radius: 8px; padding: 0 12px; transition: border-color .2s;
}
.rv-busca-w:focus-within { border-color: var(--rv-p); }
.rv-busca-w svg { color: var(--rv-mut); flex-shrink: 0; }
.rv-finput {
  background: rgba(0,0,0,.3); border: 1.5px solid var(--rv-bd);
  color: var(--rv-txt); padding: 9px 12px; border-radius: 8px;
  font-size: 13px; font-family: 'Barlow', sans-serif;
  appearance: none; transition: border-color .2s; cursor: pointer;
}
.rv-finput:focus { outline: none; border-color: var(--rv-p); }
.rv-finput::placeholder { color: var(--rv-mut); }
.rv-finput.rv-f-busca {
  flex: 1; background: none; border: none; padding: 10px 0;
  font-size: 14px; outline: none; color: var(--rv-txt); min-width: 0;
}
.rv-btn-limpar-f {
  background: none; border: 1.5px solid var(--rv-bd); color: var(--rv-mut);
  padding: 9px 12px; border-radius: 8px; cursor: pointer; font-size: 13px;
  transition: all .2s;
}
.rv-btn-limpar-f:hover { border-color: var(--rv-p); color: var(--rv-p); }
.rv-contagem-bar {
  display: flex; justify-content: space-between;
  margin-bottom: 14px;
}
.rv-contagem-txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--rv-mut);
}

/* ══ GRID ══ */
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rv-grid-loading { pointer-events: none; }

/* ══ SKELETON ══ */
.rv-skeleton {
  background: var(--rv-card); border: 1px solid var(--rv-bd);
  border-radius: 12px; overflow: hidden;
  animation: rv-pulse 1.6s ease-in-out infinite;
}
@keyframes rv-pulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.rv-sk-img { height: 200px; background: #1e1e1e; }
.rv-sk-linha { height: 12px; background: #1e1e1e; border-radius: 4px; margin: 14px 14px 0; }
.rv-sk-linha.w70 { width: 70%; }
.rv-sk-linha.w50 { width: 50%; }
.rv-sk-linha.w90 { width: 90%; margin-bottom: 14px; }

/* ══ CARD ══ */
.rv-pub-card {
  background: var(--rv-card); border: 1px solid var(--rv-bd);
  border-radius: 12px; overflow: hidden;
  cursor: pointer; transition: all .3s;
}
.rv-pub-card:hover {
  border-color: var(--rv-p);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 0 1px var(--rv-p);
}
.rv-card-img { position: relative; height: 200px; overflow: hidden; background: #1a1a1a; }
.rv-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.rv-pub-card:hover .rv-card-img img { transform: scale(1.06); }

/* Badge */
.rv-card-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--rv-p); color: #fff;
  padding: 4px 10px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.rv-card-badge.destaque { background: var(--rv-gold); color: #000; }
.rv-card-badge.reservado { background: #555; }

/* Card body */
.rv-card-body { padding: 16px; }
.rv-card-marca {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rv-p); margin-bottom: 2px;
}
.rv-card-modelo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px; font-weight: 900; color: var(--rv-txt); line-height: 1.1;
}
.rv-card-versao { font-size: 12px; color: var(--rv-mut); margin-bottom: 10px; }
.rv-card-specs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.rv-card-spec  { font-size: 12px; color: var(--rv-mut); }

/* ── PREÇOS DOS CARDS — BLOCO REESTRUTURADO ── */
.rv-card-precos {
  background: rgba(0,0,0,.3);
  border: 1px solid var(--rv-bd);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Linha FIPE — badge + valor lado a lado, nunca corta */
.rv-fipe-linha {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  min-width: 0;
}
.rv-fipe-tag {
  background: rgba(255,215,0,.12);
  color: var(--rv-gold);
  border: 1px solid rgba(255,215,0,.4);
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 2px 7px; border-radius: 3px;
  white-space: nowrap; flex-shrink: 0;
}
.rv-fipe-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--rv-mut);
  text-decoration: line-through;
  white-space: nowrap;
  overflow: visible;
  flex-shrink: 1;
  min-width: 0;
}

/* Separador entre FIPE e preço */
.rv-card-precos-sep {
  height: 1px;
  background: var(--rv-bd);
  margin: 0;
}

/* Linha NOSSO PREÇO — em coluna, bem grande */
.rv-preco-linha {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rv-preco-lbl {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--rv-mut);
}
.rv-preco-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--rv-p);
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}
.rv-economia-tag {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: rgba(0,200,100,.07); border: 1px solid rgba(0,200,100,.25); color: var(--rv-grn);
  padding: 6px 12px; border-radius: 100px; font-size: 13px; font-weight: 700;
  margin-bottom: 12px; width: 100%; text-align: center;
}

/* Botões card */
.rv-card-acoes { display: flex; gap: 8px; }
.rv-btn-card {
  flex: 1; background: var(--rv-p); color: #fff;
  padding: 10px; border: none; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.rv-btn-card:hover { background: var(--rv-ph); }
.rv-btn-wpp {
  background: #25D366; color: #fff;
  padding: 10px 14px; border: none; border-radius: 8px;
  font-size: 18px; cursor: pointer; transition: all .2s;
  display: flex; align-items: center;
}
.rv-btn-wpp:hover { background: #1ebe5d; transform: scale(1.05); }

/* Empty state */
.rv-empty {
  grid-column: 1/-1; text-align: center; padding: 70px 20px; color: var(--rv-mut);
}
.rv-empty-ico { font-size: 52px; margin-bottom: 12px; }
.rv-empty h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px;
  letter-spacing: 1px; color: var(--rv-txt);
}

/* ══ MODAL ══ */
.rv-modal-pub {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.93); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; overflow-y: auto;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.rv-modal-pub.open { opacity: 1; pointer-events: all; }
.rv-modal-pub-box {
  background: var(--rv-card); border: 1px solid var(--rv-p);
  border-radius: 14px; max-width: 900px; width: 100%;
  position: relative; overflow: hidden;
  transform: translateY(24px) scale(.98); transition: transform .3s; margin: auto;
}
.rv-modal-pub.open .rv-modal-pub-box { transform: translateY(0) scale(1); }

.rv-modal-pub-x {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: none;
  color: var(--rv-txt); font-size: 18px; cursor: pointer; transition: background .2s;
}
.rv-modal-pub-x:hover { background: var(--rv-p); }

.rv-modal-pub-conteudo {
  display: grid; grid-template-columns: 1.1fr 1fr; min-height: 460px;
}
.rv-modal-pub-galeria { background: #111; position: relative; overflow: hidden; }
.rv-m-img { width: 100%; height: 320px; object-fit: cover; display: block; }
.rv-m-miniaturas { display: flex; gap: 6px; padding: 8px; overflow-x: auto; }
.rv-m-min {
  width: 60px; height: 44px; border-radius: 5px; overflow: hidden;
  flex-shrink: 0; cursor: pointer; opacity: .6; transition: opacity .2s;
  border: 2px solid transparent;
}
.rv-m-min:hover, .rv-m-min.ativo { opacity: 1; border-color: var(--rv-p); }
.rv-m-min img { width: 100%; height: 100%; object-fit: cover; }

.rv-modal-pub-info { padding: 22px; overflow-y: auto; max-height: 90vh; }
.rv-m-marca { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--rv-p); margin-bottom: 3px; }
.rv-m-modelo { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 900; color: var(--rv-txt); line-height: 1; }
.rv-m-versao { font-size: 13px; color: var(--rv-mut); margin-bottom: 14px; }

.rv-m-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.rv-m-spec { background: rgba(255,255,255,.04); border: 1px solid var(--rv-bd); border-radius: 8px; padding: 9px 12px; }
.rv-m-spec-l { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rv-mut); margin-bottom: 2px; }
.rv-m-spec-v { font-size: 13px; font-weight: 700; color: var(--rv-txt); }

.rv-m-precos {
  background: rgba(204,0,0,.07); border: 1px solid rgba(204,0,0,.25);
  border-radius: 10px; padding: 14px; margin-bottom: 12px;
}
.rv-m-desc { font-size: 13px; color: var(--rv-mut); line-height: 1.7; margin-bottom: 12px; }
.rv-m-opcionais { margin-bottom: 14px; }
.rv-m-opc-titulo { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--rv-p); margin-bottom: 8px; }
.rv-m-opc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.rv-m-opc-tag {
  background: rgba(255,255,255,.05); border: 1px solid var(--rv-bd);
  color: var(--rv-mut); padding: 3px 10px; border-radius: 100px; font-size: 11px;
}
.rv-m-acoes { display: flex; flex-direction: column; gap: 8px; }
.rv-m-btn {
  padding: 12px; border: none; border-radius: 8px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none;
}
.rv-m-btn-wpp     { background: #25D366; color: #fff; }
.rv-m-btn-wpp:hover { background: #1ebe5d; }
.rv-m-btn-prop    { background: var(--rv-p); color: #fff; }
.rv-m-btn-prop:hover { background: var(--rv-ph); }
.rv-m-btn-fin     { background: transparent; border: 1.5px solid var(--rv-bd); color: var(--rv-txt); }
.rv-m-btn-fin:hover { border-color: var(--rv-p); color: var(--rv-p); }

/* ══ FINANCIAMENTO ══ */
.rv-fin-wrap { }
.rv-fin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rv-fin-painel, .rv-fin-resultado {
  background: var(--rv-card); border: 1px solid var(--rv-bd);
  border-radius: 12px; padding: 22px;
}
.rv-fin-campo { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.rv-fin-campo label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--rv-mut);
}
.rv-pub-input {
  width: 100%; background: rgba(0,0,0,.3); border: 1.5px solid var(--rv-bd);
  color: var(--rv-txt); padding: 11px 14px; border-radius: 8px;
  font-family: 'Barlow', sans-serif; font-size: 14px; transition: border-color .2s;
}
.rv-pub-input:focus { outline: none; border-color: var(--rv-p); box-shadow: 0 0 0 3px rgba(204,0,0,.1); }

/* Botões parcelas */
.rv-parc-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.rv-parc-btn {
  flex: 1; min-width: 48px; padding: 9px 4px;
  background: rgba(0,0,0,.3); border: 1.5px solid var(--rv-bd); color: var(--rv-mut);
  border-radius: 8px; font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s;
}
.rv-parc-btn:hover:not(.ativo) { border-color: var(--rv-p); color: var(--rv-p); }
.rv-parc-btn.ativo { background: var(--rv-p); border-color: var(--rv-p); color: #fff; }

/* Resultado */
.rv-fin-aguarda { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 30px 0; color: var(--rv-mut); font-size: 14px; text-align: center; }
.rv-fin-aguarda-ico { font-size: 48px; }
.rv-fin-res-destaque {
  background: var(--rv-p); border-radius: 10px; padding: 18px;
  text-align: center; margin-bottom: 16px;
}
.rv-fin-res-label  { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); }
.rv-fin-res-parc   { font-family: 'Bebas Neue', sans-serif; font-size: 46px; color: #fff; letter-spacing: 2px; line-height: 1; }
.rv-fin-res-sub    { font-size: 12px; color: rgba(255,255,255,.7); }
.rv-fin-res-linhas { display: flex; flex-direction: column; margin-bottom: 4px; }
.rv-fin-res-l { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--rv-bd); font-size: 13px; color: var(--rv-mut); }
.rv-fin-res-l strong { color: var(--rv-txt); }
.rv-fr-total { border-bottom: none; }
.rv-fr-total span, .rv-fr-total strong { font-size: 15px; font-weight: 700; color: var(--rv-txt); }

/* Botão primário */
.rv-btn-primario {
  background: var(--rv-p); color: #fff; border: none;
  padding: 13px 24px; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
}
.rv-btn-primario:hover { background: var(--rv-ph); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(204,0,0,.4); }

/* ══ PROPOSTA ══ */
.rv-prop-wrap { }
.rv-proposta-form {
  background: var(--rv-card);
  border: 1px solid var(--rv-bd);
  border-top: 3px solid var(--rv-p);
  border-radius: 12px; padding: 28px;
  max-width: 680px;
}
.rv-prop-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ══ RESPONSIVO ══ */
@media (max-width: 860px) {
  .rv-modal-pub-conteudo { grid-template-columns: 1fr; }
  .rv-m-img { height: 220px; }
  .rv-fin-grid { grid-template-columns: 1fr; }
  .rv-prop-row { grid-template-columns: 1fr; }
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rv-grid { grid-template-columns: 1fr; }
  .rv-m-specs-grid { grid-template-columns: 1fr 1fr; }
  .rv-filtros { flex-direction: column; }
  .rv-busca-w, .rv-finput { width: 100%; }
}

/* ═══════════════════════════════════════
   HOMEPAGE  [repasse_homepage]
═══════════════════════════════════════ */
.rv-hp {
  --rv-p:    #CC0000;
  --rv-ph:   #FF2222;
  --rv-s:    #0A0A0A;
  --rv-card: #141414;
  --rv-bd:   #222;
  --rv-txt:  #F0F0F0;
  --rv-mut:  #888;
  --rv-gold: #FFD700;
  --rv-grn:  #00c864;
  font-family: 'Barlow', sans-serif;
  color: var(--rv-txt);
  -webkit-font-smoothing: antialiased;
}
.rv-hp *, .rv-hp *::before, .rv-hp *::after { box-sizing: border-box; }
.rv-hp a { text-decoration: none; }

/* ── Templates ── */
.rv-hp-escuro  { background: var(--rv-s); }
.rv-hp-claro   { background: #f5f5f5; --rv-txt:#111; --rv-card:#fff; --rv-bd:#ddd; --rv-mut:#666; }
.rv-hp-moderno { background: #0f0f1a; --rv-card:#16162a; --rv-bd:#2a2a4a; }

/* ── Container ── */
.rv-hp-container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ── HERO ── */
.rv-hp-hero {
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--rv-s) 60%, #2a0000 100%);
  background-size: cover; background-position: center;
  padding: 80px 20px 60px;
}
.rv-hp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,.75) 40%, rgba(204,0,0,.15) 100%);
}
.rv-hp-hero-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 800px; margin: 0 auto;
}
.rv-hp-logo { margin-bottom: 32px; }
.rv-hp-logo-img { max-height: none; max-width: none; width: auto; height: auto; margin: 0 auto; display: block; object-fit: contain; }
.rv-hp-logo-texto { display: inline-flex; align-items: center; gap: 10px; }
.rv-hp-logo-icone { font-size: 36px; }
.rv-hp-logo-nome {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
  color: #fff;
}
.rv-hp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(204,0,0,.15); border: 1px solid rgba(204,0,0,.4);
  color: #ff6666; padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
}
.rv-hp-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 9vw, 90px);
  line-height: .95; letter-spacing: 2px;
  color: #fff; margin: 0 0 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.rv-hp-titulo span { color: var(--rv-p); }
.rv-hp-subtitulo {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(255,255,255,.75); line-height: 1.7;
  max-width: 580px; margin: 0 auto 36px;
}
.rv-hp-acoes { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.rv-hp-btn {
  padding: 14px 28px; border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  border: none;
}
.rv-hp-btn-prim { background: var(--rv-p); color: #fff; }
.rv-hp-btn-prim:hover { background: var(--rv-ph); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(204,0,0,.4); }
.rv-hp-btn-sec  { background: transparent; border: 2px solid rgba(255,255,255,.35); color: #fff; }
.rv-hp-btn-sec:hover  { border-color: #fff; background: rgba(255,255,255,.1); transform: translateY(-2px); }
.rv-hp-btn-wpp  { background: #25D366; color: #fff; }
.rv-hp-btn-wpp:hover  { background: #1ebe5d; transform: translateY(-2px); }

/* ── STATS ── */
.rv-hp-stats {
  background: var(--rv-p);
  padding: 32px 20px;
}
.rv-hp-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.rv-hp-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px; border-right: 1px solid rgba(255,255,255,.2);
}
.rv-hp-stat:last-child { border-right: none; }
.rv-hp-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; color: #fff; line-height: 1;
}
.rv-hp-stat-txt {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  margin-top: 4px;
}

/* ── SECTIONS ── */
.rv-hp-section { padding: 70px 20px; }
.rv-hp-section-estoque { background: var(--rv-s); }
.rv-hp-section-sobre   { background: var(--rv-card); border-top: 1px solid var(--rv-bd); border-bottom: 1px solid var(--rv-bd); }
.rv-hp-section-fin     { background: var(--rv-s); }
.rv-hp-section-prop    { background: var(--rv-card); border-top: 1px solid var(--rv-bd); }

.rv-hp-section-header { text-align: center; margin-bottom: 40px; }
.rv-hp-section-titulo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 50px);
  letter-spacing: 2px; color: var(--rv-txt); margin: 0 0 8px; line-height: 1;
}
.rv-hp-section-titulo span { color: var(--rv-p); }
.rv-hp-section-sub { color: var(--rv-mut); font-size: 15px; margin: 0; }

/* ── SOBRE ── */
.rv-hp-sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.rv-hp-sobre-conteudo .rv-hp-section-titulo { text-align: left; }
.rv-hp-sobre-texto { color: var(--rv-mut); font-size: 16px; line-height: 1.75; margin: 16px 0 24px; }
.rv-hp-diferenciais { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rv-hp-dif {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(204,0,0,.06); border: 1px solid rgba(204,0,0,.2);
  border-radius: 10px; padding: 14px;
}
.rv-hp-dif-ico {
  font-size: 22px; flex-shrink: 0; width: 42px; height: 42px;
  background: rgba(204,0,0,.15); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.rv-hp-dif strong { display: block; font-size: 13px; color: var(--rv-txt); margin-bottom: 2px; }
.rv-hp-dif p { font-size: 12px; color: var(--rv-mut); margin: 0; }
.rv-hp-sobre-img { width: 100%; border-radius: 14px; object-fit: cover; max-height: 400px; }
.rv-hp-sobre-placeholder {
  background: linear-gradient(135deg, #1a0000, #2d0000);
  border: 1px solid rgba(204,0,0,.3); border-radius: 14px;
  height: 360px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.rv-hp-sobre-placeholder p  { color: var(--rv-mut); font-size: 14px; }
.rv-hp-sobre-placeholder small { color: #555; font-size: 11px; }

/* ── FOOTER ── */
.rv-hp-footer {
  background: var(--rv-card);
  border-top: 3px solid var(--rv-p);
  padding: 50px 20px 24px;
}
.rv-hp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.rv-hp-footer-nome {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 900; color: var(--rv-txt); margin-bottom: 10px;
}
.rv-hp-footer-desc { font-size: 13px; color: var(--rv-mut); line-height: 1.7; margin: 4px 0; }
.rv-hp-footer-titulo {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--rv-p); margin-bottom: 14px;
}
.rv-hp-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.rv-hp-footer-links li, .rv-hp-footer-links a { font-size: 13px; color: var(--rv-mut); transition: color .2s; }
.rv-hp-footer-links a:hover { color: var(--rv-p); }
.rv-hp-footer-bottom {
  padding-top: 20px; border-top: 1px solid var(--rv-bd);
  font-size: 12px; color: var(--rv-mut); text-align: center;
}

/* ── WHATSAPP FLUTUANTE ── */
.rv-hp-wpp-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 9000;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all .3s;
  animation: rv-wpp-pulse 3s ease-in-out infinite;
}
.rv-hp-wpp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.7); }
@keyframes rv-wpp-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.85); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .rv-hp-stats-grid  { grid-template-columns: repeat(2,1fr); }
  .rv-hp-stat        { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .rv-hp-sobre-grid  { grid-template-columns: 1fr; gap: 32px; }
  .rv-hp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .rv-hp-diferenciais{ grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .rv-hp-stats-grid { grid-template-columns: 1fr 1fr; }
  .rv-hp-acoes { flex-direction: column; align-items: stretch; }
  .rv-hp-btn   { justify-content: center; }
}

/* ── AVISO DE SIMULAÇÃO ── */
.rv-fin-aviso {
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.35);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  color: #cca000;
  line-height: 1.6;
  margin-top: 14px;
}
.rv-fin-aviso strong { color: #ffcc00; }

/* ── PROPOSTA REDESIGN ── */
.rv-proposta-form {
  background: var(--rv-card);
  border: 1px solid var(--rv-bd);
  border-top: 3px solid var(--rv-p);
  border-radius: 12px; padding: 28px;
  max-width: 680px;
}
.rv-prop-destaque-campo {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--rv-bd); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 14px;
}
.rv-prop-destaque-ico {
  font-size: 26px; flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(204,0,0,.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.rv-prop-row-destaque {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 0;
}
.rv-prop-row-destaque .rv-prop-destaque-campo { margin-bottom: 0; }
.rv-pub-input-lg { font-size: 16px !important; font-weight: 600 !important; padding: 12px 14px !important; }
.rv-btn-proposta-enviar {
  width: 100%; padding: 15px;
  font-size: 16px; letter-spacing: 1.5px;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(204,0,0,.3);
}
.rv-btn-proposta-enviar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(204,0,0,.5);
}

@media (max-width: 600px) {
  .rv-prop-row-destaque { grid-template-columns: 1fr; }
}

/* ── YOUTUBE PLAYER RESPONSIVO ── */
.rv-yt-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
  margin-top: 4px;
}
.rv-yt-frame {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: 10px;
}
.rv-m-video { margin-bottom: 14px; }
.rv-m-video-titulo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--rv-p); margin-bottom: 8px;
}

/* Badge VIDEO no card */
.rv-card-video-badge {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(204,0,0,.9);
  color: #fff;
  padding: 4px 10px; border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
  backdrop-filter: blur(4px);
}

/* ── PROPOSTA CLEAN ── */
.rv-proposta-clean { max-width: 580px; }
.rv-proposta-clean .rv-prop-destaque-campo {
  border-color: rgba(204,0,0,.25);
  transition: border-color .2s;
}
.rv-proposta-clean .rv-prop-destaque-campo:focus-within {
  border-color: var(--rv-p);
  box-shadow: 0 0 0 3px rgba(204,0,0,.08);
}

/* ── VER MAIS / PAGINAÇÃO ── */
.rv-ver-mais-wrap {
  text-align: center;
  padding: 24px 0 8px;
  grid-column: 1 / -1;
}
.rv-btn-ver-mais {
  background: transparent;
  border: 2px solid var(--rv-p);
  color: var(--rv-p);
  padding: 13px 36px;
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.rv-btn-ver-mais:hover,
.rv-btn-ver-mais:active {
  background: var(--rv-p);
  color: #fff;
  transform: translateY(-2px);
}

/* ── LOADING MSG ── */
.rv-grid-loading-msg {
  grid-column: 1 / -1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 20px; color: var(--rv-mut);
  gap: 14px;
}
.rv-spin {
  width: 32px; height: 32px;
  border: 3px solid var(--rv-bd);
  border-top-color: var(--rv-p);
  border-radius: 50%;
  animation: rv-spin .7s linear infinite;
}

/* ── MOBILE OTIMIZADO ── */
@media (max-width: 600px) {
  /* Cards em coluna única no mobile pequeno */
  .rv-grid { grid-template-columns: 1fr !important; gap: 14px !important; }

  /* Filtros em coluna */
  .rv-filtros { flex-direction: column; padding: 12px; }
  .rv-busca-w, .rv-filtros select { width: 100% !important; }
  .rv-btn-limpar-f { width: 100%; justify-content: center; }

  /* Cards mais compactos */
  .rv-card-img   { height: 180px !important; }
  .rv-card-body  { padding: 12px !important; }
  .rv-preco-num  { font-size: 26px !important; }

  /* Botões de ação maiores para toque */
  .rv-btn-card { padding: 13px 8px !important; font-size: 13px !important; min-height: 46px; }
  .rv-btn-wpp  { padding: 13px 14px !important; min-height: 46px; }

  /* Modal tela cheia no mobile */
  .rv-modal-pub-box {
    max-width: 100% !important;
    max-height: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
  .rv-modal-pub-conteudo { flex-direction: column !important; }
  .rv-modal-pub-galeria  { width: 100% !important; }

  /* Botões do modal maiores */
  .rv-m-btn { padding: 14px 10px !important; font-size: 14px !important; min-height: 50px; }
  .rv-m-btn-wpp { min-height: 54px !important; }

  /* Stats em 2 colunas */
  .rv-hp-stats-grid { grid-template-columns: 1fr 1fr !important; }

  /* Hero mais compacto */
  .rv-hp-titulo { font-size: 40px !important; }
  .rv-hp-acoes  { flex-direction: column !important; }
  .rv-hp-btn    { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .rv-card-specs { gap: 6px !important; }
  .rv-card-spec  { font-size: 11px !important; }
  .rv-fipe-num   { font-size: 12px !important; }
  .rv-preco-num  { font-size: 22px !important; }
}

/* ── INSTAGRAM FOOTER ── */
.rv-hp-footer-instagram {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--rv-mut); font-size: 13px; font-weight: 600;
  text-decoration: none; margin-top: 8px;
  padding: 7px 14px; border-radius: 8px;
  background: linear-gradient(135deg, rgba(193,53,132,.15), rgba(253,29,29,.1), rgba(252,176,69,.1));
  border: 1px solid rgba(193,53,132,.3);
  transition: all .2s;
}
.rv-hp-footer-instagram:hover {
  background: linear-gradient(135deg, rgba(193,53,132,.3), rgba(253,29,29,.2), rgba(252,176,69,.15));
  border-color: rgba(193,53,132,.6);
  color: #f0f0f0;
  transform: translateY(-1px);
}
