* {
  box-sizing: border-box;
}

.loading {
  text-align: center;
  padding: 60px 20px;
}

.battery-icon {
  font-size: 42px;
  animation: pulse 1.2s ease-in-out infinite;
}

.loading .title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

.loading .sub {
  font-size: 14px;
  color: #6b7280;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}


@keyframes spin {
  to { transform: rotate(360deg); }
}




.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  margin-top: 40px;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 20px;
}

/* LOGO */
.footer-brand img {
  height: 40px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  color: #cbd5f5;
}

/* CONTATO */
.footer-contact p {
  margin: 4px 0;
}

.footer-contact a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact .hours {
  font-size: 13px;
  color: #94a3b8;
}

/* LINHA FINAL */
.footer-bottom {
  background: #020617;
  text-align: center;
  padding: 12px;
  font-size: 12px;
  color: #94a3b8;
}


.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 10px 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* LOGO */
.logo img {
  height: 36px;
  max-width: 140px;
  object-fit: contain;
}

/* BOTÕES */
.header-ctas {
  display: flex;
  gap: 8px;
}

.header-ctas .btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* WhatsApp */
.btn.whatsapp {
  background: #22c55e;
  color: #fff;
}

/* Telefone */
.btn.phone {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

/* Ícones */
.header-ctas img {
  width: 16px;
  height: 16px;
}









.icon-whats {
  width: 22px;
  height: 22px;
}


.btn {
  text-decoration: none; /* remove sublinhado */
}

.acoes-topo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
}

.acoes-topo .btn-terciario {
  grid-column: span 2;
}

/* base */
.btn {
  border: none;
  border-radius: 14px;
  padding: 16px 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

/* primário */
.btn-primario {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  box-shadow: 0 6px 14px rgba(22,163,74,.35);
}

.btn-primario:active {
  transform: scale(0.97);
}

/* secundário */
.btn-secundario {
  background: #fff;
  color: #111;
  border: 2px solid #e5e7eb;
}

.btn-secundario:active {
  background: #f3f4f6;
}

/* terciário */
.btn-terciario {
  background: #f1f5f9;
  color: #475569;
  font-size: 15px;
}


#listaResultados .item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-marca {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.texto-linha {
  font-size: 14px;
  color: #333;
}


#listaResultados .item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-marca {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.texto-linha {
  font-size: 14px;
  color: #333;
}


/* container da lista */
#listaResultados {
  list-style: none;        /* remove bolinhas */
  padding: 0;
  margin: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* cada item */
#listaResultados .item {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

/* último item sem borda */
#listaResultados .item:last-child {
  border-bottom: none;
}

/* hover / toque */
#listaResultados .item:hover {
  background: #f7f7f7;
}

/* título do veículo */
#listaResultados .item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

/* ano */
#listaResultados .item span {
  font-size: 13px;
  color: #666;
}

/* título "Veículos mais buscados" */
#tituloResultados {
  margin: 12px 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* estado vazio */
#listaResultados .vazio {
  padding: 16px;
  text-align: center;
  color: #777;
}



body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
}

.container {
  max-width: 420px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 20px;
  margin-bottom: 6px;
}

.header p {
  font-size: 14px;
  color: #666;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
}

.search-box input:focus {
  border-color: #ff6a00;
}

.results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 6px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  max-height: 300px;
  overflow-y: auto;
  display: none;
  z-index: 10;
}

.item {
  padding: 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.item:last-child {
  border-bottom: none;
}

.item:hover {
  background: #f2f2f2;
}

.modelo {
  font-weight: bold;
  font-size: 15px;
}

.anos {
  font-size: 13px;
  color: #666;
}


