/* =====================================================
   🎨 VARIÁVEIS — PERSONALIZE AS CORES AQUI
   ===================================================== */
:root {
  /* Cores principais - BuscaKi (paleta brasileira moderna) */
  --bk-primary: #059669;           /* Verde confiança */
  --bk-primary-dark: #047857;
  --bk-primary-light: #D1FAE5;
  --bk-primary-50: rgba(5,150,105,0.08);
  
  --bk-secondary: #F59E0B;         /* Âmbar / Laranja energia */
  --bk-secondary-dark: #D97706;
  --bk-secondary-light: #FEF3C7;
  
  --bk-accent: #1E40AF;            /* Azul profundo */
  --bk-accent-light: #DBEAFE;
  
  --bk-real-estate: #0891B2;       /* Ciano para imóveis */
  --bk-cars: #DC2626;              /* Vermelho para carros */
  
  /* Feedback */
  --bk-success: #10B981;
  --bk-danger: #EF4444;
  --bk-warning: #F59E0B;
  
  /* Neutros (quentes, não cinza puro) */
  --bk-bg: #FFFBF7;
  --bk-bg-soft: #FAF5EF;
  --bk-bg-mute: #F3EDE4;
  --bk-border: #E7DFD3;
  --bk-border-strong: #D4C9B8;
  --bk-text: #1F2937;
  --bk-text-soft: #4B5563;
  --bk-text-mute: #9CA3AF;
  --bk-white: #FFFFFF;
  
  /* Tipografia */
  --bk-font-display: 'Archivo', -apple-system, sans-serif;
  --bk-font-body: 'Inter', -apple-system, sans-serif;
  
  /* Espaçamentos */
  --bk-space-xs: 4px;
  --bk-space-sm: 8px;
  --bk-space-md: 16px;
  --bk-space-lg: 24px;
  --bk-space-xl: 40px;
  --bk-space-2xl: 64px;
  --bk-space-3xl: 96px;
  
  /* Bordas */
  --bk-radius-sm: 6px;
  --bk-radius-md: 12px;
  --bk-radius-lg: 20px;
  --bk-radius-xl: 28px;
  --bk-radius-full: 999px;
  
  /* Sombras */
  --bk-shadow-sm: 0 1px 2px rgba(31,41,55,0.04);
  --bk-shadow-md: 0 4px 20px rgba(31,41,55,0.06);
  --bk-shadow-lg: 0 12px 40px rgba(31,41,55,0.10);
  --bk-shadow-xl: 0 24px 60px rgba(31,41,55,0.14);
  
  /* Transições */
  --bk-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --bk-duration: 0.28s;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--bk-font-body);
  color: var(--bk-text);
  background: var(--bk-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--bk-space-lg);
}

/* =====================================================
   TOP BAR
   ===================================================== */
.bk-topbar {
  background: var(--bk-text);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 0;
}
.bk-topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.bk-topbar a:hover { color: var(--bk-secondary); }
.bk-topbar strong { color: #fff; }
.bk-topbar-links { display: flex; gap: 22px; }
.bk-topbar-location { display: flex; align-items: center; gap: 6px; }
.bk-topbar-location svg { width: 14px; height: 14px; }

/* =====================================================
   HEADER
   ===================================================== */
.bk-header {
  background: var(--bk-white);
  padding: 18px 0;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--bk-border);
  transition: all var(--bk-duration) var(--bk-ease);
}
.bk-header.scrolled {
  padding: 12px 0;
  box-shadow: var(--bk-shadow-md);
}
.bk-header-inner {
  display: flex; align-items: center; gap: 32px;
}
.bk-logo {
  font-family: var(--bk-font-display);
  font-size: 26px; font-weight: 900;
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 6px;
  color: var(--bk-text);
}
.bk-logo-mark {
  width: 34px; height: 34px;
  background: var(--bk-primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
  transform: rotate(-6deg);
  box-shadow: 0 4px 12px rgba(5,150,105,0.35);
  transition: transform var(--bk-duration) var(--bk-ease);
}
.bk-logo:hover .bk-logo-mark { transform: rotate(0deg) scale(1.05); }
.bk-logo-text span { color: var(--bk-primary); }

.bk-nav {
  display: flex; gap: 4px;
}
.bk-nav-link {
  padding: 10px 16px;
  border-radius: var(--bk-radius-md);
  font-weight: 600; font-size: 14px;
  color: var(--bk-text-soft);
  transition: all var(--bk-duration) var(--bk-ease);
  display: flex; align-items: center; gap: 6px;
}
.bk-nav-link:hover {
  background: var(--bk-bg-mute);
  color: var(--bk-text);
}
.bk-nav-link.highlight {
  background: var(--bk-primary-light);
  color: var(--bk-primary-dark);
}
.bk-nav-link .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--bk-secondary);
}

.bk-header-actions {
  margin-left: auto;
  display: flex; gap: 10px; align-items: center;
}
.bk-icon-btn {
  width: 42px; height: 42px;
  border-radius: var(--bk-radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--bk-text-soft);
  position: relative;
  transition: all var(--bk-duration) var(--bk-ease);
}
.bk-icon-btn:hover {
  background: var(--bk-bg-mute);
  color: var(--bk-primary);
}
.bk-icon-btn svg { width: 20px; height: 20px; }
.bk-icon-btn .badge {
  position: absolute; top: 6px; right: 6px;
  background: var(--bk-secondary); color: #fff;
  font-size: 10px; font-weight: 800;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bk-white);
}

.bk-btn-sell {
  background: var(--bk-primary);
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--bk-radius-md);
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  transition: all var(--bk-duration) var(--bk-ease);
  box-shadow: 0 4px 12px rgba(5,150,105,0.25);
}
.bk-btn-sell:hover {
  background: var(--bk-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(5,150,105,0.35);
}
.bk-btn-sell svg { width: 16px; height: 16px; }

/* =====================================================
   HERO - SPLIT SCREEN
   ===================================================== */
.bk-hero {
  background: linear-gradient(135deg, var(--bk-bg-soft) 0%, var(--bk-bg) 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.bk-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--bk-primary-50) 0%, transparent 70%);
  border-radius: 50%;
}
.bk-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 2;
}
.bk-hero-content { max-width: 560px; }

.bk-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bk-white);
  padding: 8px 14px;
  border-radius: var(--bk-radius-full);
  font-size: 13px; font-weight: 600;
  color: var(--bk-text-soft);
  margin-bottom: 20px;
  border: 1px solid var(--bk-border);
  box-shadow: var(--bk-shadow-sm);
  animation: slideDown 0.6s var(--bk-ease);
}
.bk-hero-eyebrow .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bk-success);
  box-shadow: 0 0 0 0 var(--bk-success);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.bk-hero h1 {
  font-family: var(--bk-font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--bk-text);
  animation: slideUp 0.7s var(--bk-ease);
}
.bk-hero h1 .highlight {
  position: relative;
  display: inline-block;
}
.bk-hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: -2%; right: -2%;
  height: 30%;
  background: var(--bk-secondary-light);
  z-index: -1;
  transform: skewX(-8deg);
  border-radius: 4px;
}
.bk-hero-subtitle {
  font-size: 17px;
  color: var(--bk-text-soft);
  margin-bottom: 32px;
  line-height: 1.55;
  animation: slideUp 0.8s var(--bk-ease);
}

/* Tabs de tipo de busca */
.bk-search-tabs {
  display: flex; gap: 4px;
  background: var(--bk-white);
  padding: 6px;
  border-radius: var(--bk-radius-lg);
  margin-bottom: 4px;
  border: 1px solid var(--bk-border);
  width: fit-content;
  animation: slideUp 0.85s var(--bk-ease);
}
.bk-search-tab {
  padding: 10px 18px;
  border-radius: calc(var(--bk-radius-lg) - 4px);
  font-weight: 700; font-size: 14px;
  color: var(--bk-text-soft);
  transition: all var(--bk-duration) var(--bk-ease);
  display: flex; align-items: center; gap: 6px;
}
.bk-search-tab.active {
  background: var(--bk-text);
  color: #fff;
}
.bk-search-tab svg { width: 16px; height: 16px; }

.bk-search-box {
  background: var(--bk-white);
  border-radius: var(--bk-radius-lg);
  padding: 10px;
  box-shadow: var(--bk-shadow-lg);
  border: 1px solid var(--bk-border);
  display: flex; gap: 8px; align-items: center;
  animation: slideUp 0.9s var(--bk-ease);
}
.bk-search-field {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 8px 16px;
  border-right: 1px solid var(--bk-border);
  min-width: 0;
}
.bk-search-field:last-of-type { border-right: none; }
.bk-search-field label {
  font-size: 10px; font-weight: 800;
  color: var(--bk-text-mute);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}
.bk-search-field input, .bk-search-field select {
  border: none; outline: none; background: transparent;
  font-size: 14px; font-weight: 600;
  color: var(--bk-text); width: 100%;
  font-family: inherit;
  padding: 2px 0;
}
.bk-search-field input::placeholder { color: var(--bk-text-mute); }
.bk-search-submit {
  background: var(--bk-primary);
  color: #fff;
  width: 52px; height: 52px;
  border-radius: calc(var(--bk-radius-lg) - 4px);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--bk-duration) var(--bk-ease);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(5,150,105,0.35);
}
.bk-search-submit:hover {
  background: var(--bk-primary-dark);
  transform: scale(1.05);
}
.bk-search-submit svg { width: 20px; height: 20px; }

.bk-hero-trust {
  margin-top: 28px;
  display: flex; gap: 24px;
  align-items: center;
  animation: slideUp 1s var(--bk-ease);
}
.bk-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--bk-text-soft);
  font-weight: 500;
}
.bk-trust-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bk-primary-light);
  color: var(--bk-primary);
  display: flex; align-items: center; justify-content: center;
}
.bk-trust-icon svg { width: 16px; height: 16px; }

/* Visual do Hero */
.bk-hero-visual {
  position: relative;
  height: 520px;
  animation: slideLeft 1s var(--bk-ease);
}
.bk-hero-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 85%; height: 420px;
  border-radius: var(--bk-radius-xl);
  overflow: hidden;
  box-shadow: var(--bk-shadow-xl);
  background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=800') center/cover;
}
.bk-hero-img-secondary {
  position: absolute;
  bottom: 0; left: 0;
  width: 55%; height: 220px;
  border-radius: var(--bk-radius-xl);
  overflow: hidden;
  box-shadow: var(--bk-shadow-xl);
  background: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?w=600') center/cover;
  border: 6px solid var(--bk-bg);
}
.bk-hero-floating-card {
  position: absolute;
  background: var(--bk-white);
  border-radius: var(--bk-radius-lg);
  padding: 14px 16px;
  box-shadow: var(--bk-shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  animation: floatCard 4s ease-in-out infinite;
}
.bk-hero-card-1 {
  top: 30px; left: -20px;
}
.bk-hero-card-2 {
  bottom: 80px; right: -10px;
  animation-delay: 1.5s;
}
.bk-floating-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.bk-floating-icon.green { background: var(--bk-primary-light); color: var(--bk-primary); }
.bk-floating-icon.yellow { background: var(--bk-secondary-light); color: var(--bk-secondary-dark); }
.bk-floating-label { font-weight: 500; color: var(--bk-text-mute); font-size: 11px; }
.bk-floating-value { font-weight: 800; color: var(--bk-text); font-size: 15px; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   SEÇÃO IMÓVEIS (DESTAQUE PRINCIPAL)
   ===================================================== */
.bk-section {
  padding: var(--bk-space-3xl) 0;
}
.bk-section-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: var(--bk-space-xl);
  gap: 20px;
}
.bk-section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bk-primary);
  margin-bottom: 10px;
}
.bk-section-title {
  font-family: var(--bk-font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--bk-text);
}
.bk-section-title .accent { color: var(--bk-primary); }
.bk-section-subtitle {
  color: var(--bk-text-soft);
  font-size: 15px;
  margin-top: 8px;
  max-width: 520px;
}
.bk-section-link {
  color: var(--bk-primary);
  font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
  transition: gap var(--bk-duration) var(--bk-ease);
  flex-shrink: 0;
}
.bk-section-link:hover { gap: 12px; }

.bk-real-estate-section {
  background: linear-gradient(180deg, var(--bk-bg) 0%, var(--bk-bg-soft) 100%);
}

/* Grid de imóveis - estilo ZAP/VivaReal */
.bk-real-estate-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: var(--bk-space-md);
}
.bk-real-estate-card {
  border-radius: var(--bk-radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--bk-duration) var(--bk-ease);
  background: var(--bk-white);
}
.bk-real-estate-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bk-shadow-xl);
}
.bk-real-estate-card.featured {
  grid-row: 1 / 3;
}
.bk-real-estate-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--bk-ease);
}
.bk-real-estate-card:hover img { transform: scale(1.06); }
.bk-real-estate-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}
.bk-re-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px;
  border-radius: var(--bk-radius-sm);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  z-index: 2;
}
.bk-re-badge.venda { background: rgba(5,150,105,0.95); color: #fff; }
.bk-re-badge.aluguel { background: rgba(8,145,178,0.95); color: #fff; }
.bk-re-badge.destaque { background: var(--bk-secondary); color: var(--bk-text); }

.bk-re-fav {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  color: var(--bk-text-soft);
  transition: all var(--bk-duration) var(--bk-ease);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.bk-re-fav:hover, .bk-re-fav.active {
  color: var(--bk-danger);
  transform: scale(1.1);
}
.bk-re-fav svg { width: 18px; height: 18px; }

.bk-re-price {
  font-family: var(--bk-font-display);
  font-size: 26px; font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.bk-real-estate-card:not(.featured) .bk-re-price { font-size: 20px; }
.bk-re-title {
  font-size: 15px; font-weight: 600;
  margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; overflow: hidden;
}
.bk-real-estate-card:not(.featured) .bk-re-title { font-size: 13px; }
.bk-re-location {
  font-size: 12px; opacity: 0.9;
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 10px;
}
.bk-re-specs {
  display: flex; gap: 14px;
  font-size: 12px; font-weight: 600;
}
.bk-re-spec {
  display: flex; align-items: center; gap: 4px;
}
.bk-re-spec svg { width: 14px; height: 14px; opacity: 0.9; }

/* =====================================================
   SEÇÃO CARROS (DESTAQUE 2)
   ===================================================== */
.bk-cars-section {
  background: var(--bk-text);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bk-cars-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--bk-cars) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}
.bk-cars-section .bk-section-eyebrow { color: var(--bk-cars); }
.bk-cars-section .bk-section-title { color: #fff; }
.bk-cars-section .bk-section-subtitle { color: rgba(255,255,255,0.7); }
.bk-cars-section .bk-section-link { color: var(--bk-secondary); }

.bk-cars-scroll {
  display: flex; gap: var(--bk-space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.bk-cars-scroll::-webkit-scrollbar { display: none; }

.bk-car-card {
  flex-shrink: 0;
  width: 300px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--bk-radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  transition: all var(--bk-duration) var(--bk-ease);
  cursor: pointer;
}
.bk-car-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.bk-car-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.bk-car-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--bk-ease);
}
.bk-car-card:hover .bk-car-img img { transform: scale(1.08); }
.bk-car-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: var(--bk-radius-sm);
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--bk-cars); color: #fff;
  z-index: 2;
}
.bk-car-badge.novo { background: var(--bk-success); }
.bk-car-fav {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,0.5); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--bk-duration) var(--bk-ease);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.bk-car-fav:hover, .bk-car-fav.active { color: var(--bk-cars); background: #fff; }
.bk-car-fav svg { width: 16px; height: 16px; }
.bk-car-img-count {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.7); color: #fff;
  padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
  backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 4px;
}

.bk-car-info { padding: 16px; }
.bk-car-price {
  font-family: var(--bk-font-display);
  font-size: 22px; font-weight: 900;
  color: var(--bk-secondary);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.bk-car-title {
  font-size: 15px; font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.bk-car-specs {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.bk-car-spec {
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: var(--bk-radius-sm);
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 4px;
}
.bk-car-location {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  display: flex; align-items: center; gap: 4px;
}

/* =====================================================
   CATEGORIAS
   ===================================================== */
.bk-categories-section { background: var(--bk-bg); }
.bk-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bk-space-md);
}
.bk-cat-card {
  background: var(--bk-white);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-lg);
  padding: var(--bk-space-lg);
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all var(--bk-duration) var(--bk-ease);
  cursor: pointer;
}
.bk-cat-card:hover {
  border-color: var(--bk-primary);
  transform: translateY(-4px);
  box-shadow: var(--bk-shadow-md);
}
.bk-cat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform var(--bk-duration) var(--bk-ease);
}
.bk-cat-card:hover .bk-cat-icon { transform: scale(1.1) rotate(-5deg); }
.bk-cat-icon.v1 { background: var(--bk-real-estate); background: linear-gradient(135deg, #0891B2, #06B6D4); color: #fff; }
.bk-cat-icon.v2 { background: linear-gradient(135deg, #DC2626, #EF4444); color: #fff; }
.bk-cat-icon.v3 { background: linear-gradient(135deg, #7C3AED, #A855F7); color: #fff; }
.bk-cat-icon.v4 { background: linear-gradient(135deg, #059669, #10B981); color: #fff; }
.bk-cat-icon.v5 { background: linear-gradient(135deg, #F59E0B, #FBBF24); color: #fff; }
.bk-cat-icon.v6 { background: linear-gradient(135deg, #EC4899, #F472B6); color: #fff; }
.bk-cat-icon.v7 { background: linear-gradient(135deg, #1E40AF, #3B82F6); color: #fff; }
.bk-cat-icon.v8 { background: linear-gradient(135deg, #64748B, #94A3B8); color: #fff; }

.bk-cat-info { flex: 1; min-width: 0; }
.bk-cat-name {
  font-weight: 800; font-size: 15px;
  color: var(--bk-text);
  margin-bottom: 2px;
}
.bk-cat-count {
  font-size: 12px;
  color: var(--bk-text-mute);
  font-weight: 500;
}
.bk-cat-arrow {
  color: var(--bk-text-mute);
  transition: all var(--bk-duration) var(--bk-ease);
}
.bk-cat-card:hover .bk-cat-arrow {
  color: var(--bk-primary);
  transform: translateX(4px);
}
.bk-cat-arrow svg { width: 18px; height: 18px; }

/* =====================================================
   COMO FUNCIONA - DIRECT DEAL
   ===================================================== */
.bk-how-section {
  background: var(--bk-bg-soft);
}
.bk-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bk-how-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 500px;
}
.bk-how-main-img {
  width: 100%; height: 100%;
  border-radius: var(--bk-radius-xl);
  background: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=700') center/cover;
  box-shadow: var(--bk-shadow-xl);
}
.bk-how-float {
  position: absolute;
  background: var(--bk-white);
  border-radius: var(--bk-radius-lg);
  padding: 14px 18px;
  box-shadow: var(--bk-shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.bk-how-float-1 {
  top: 20px; right: -20px;
  animation: floatCard 4s ease-in-out infinite;
}
.bk-how-float-2 {
  bottom: 40px; left: -20px;
  animation: floatCard 4s ease-in-out infinite 2s;
}
.bk-how-float-avatars {
  display: flex;
}
.bk-how-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 3px solid var(--bk-white);
  margin-left: -10px;
}
.bk-how-avatar:first-child { margin-left: 0; }
.bk-how-float-text .label { font-size: 10px; color: var(--bk-text-mute); font-weight: 600; }
.bk-how-float-text .value { font-size: 13px; font-weight: 800; color: var(--bk-text); }

.bk-how-steps {
  display: flex; flex-direction: column;
  gap: 24px;
}
.bk-how-step {
  display: flex; gap: 20px;
  padding: 20px;
  border-radius: var(--bk-radius-lg);
  background: var(--bk-white);
  border: 1px solid var(--bk-border);
  transition: all var(--bk-duration) var(--bk-ease);
}
.bk-how-step:hover {
  border-color: var(--bk-primary);
  transform: translateX(4px);
  box-shadow: var(--bk-shadow-md);
}
.bk-how-step-num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--bk-primary-light);
  color: var(--bk-primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bk-font-display);
  font-size: 22px; font-weight: 900;
  flex-shrink: 0;
}
.bk-how-step h3 {
  font-family: var(--bk-font-display);
  font-size: 18px; font-weight: 800;
  margin-bottom: 4px;
}
.bk-how-step p {
  font-size: 14px;
  color: var(--bk-text-soft);
  line-height: 1.5;
}

/* =====================================================
   ANÚNCIOS GERAIS
   ===================================================== */
.bk-ads-section { background: var(--bk-bg); }

.bk-ads-filters {
  display: flex; gap: 8px;
  margin-bottom: var(--bk-space-lg);
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.bk-ads-filters::-webkit-scrollbar { display: none; }
.bk-filter-chip {
  padding: 9px 18px;
  background: var(--bk-white);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-full);
  font-size: 13px; font-weight: 600;
  color: var(--bk-text-soft);
  white-space: nowrap;
  transition: all var(--bk-duration) var(--bk-ease);
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
}
.bk-filter-chip:hover {
  border-color: var(--bk-primary);
  color: var(--bk-primary);
}
.bk-filter-chip.active {
  background: var(--bk-text);
  color: #fff;
  border-color: var(--bk-text);
}

.bk-ads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--bk-space-md);
}
.bk-ad-card {
  background: var(--bk-white);
  border-radius: var(--bk-radius-lg);
  overflow: hidden;
  transition: all var(--bk-duration) var(--bk-ease);
  cursor: pointer;
  border: 1px solid var(--bk-border);
}
.bk-ad-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bk-shadow-lg);
  border-color: transparent;
}
.bk-ad-card:hover .bk-ad-img img { transform: scale(1.08); }
.bk-ad-img {
  aspect-ratio: 1; overflow: hidden;
  background: var(--bk-bg-mute);
  position: relative;
}
.bk-ad-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--bk-ease);
}
.bk-ad-info { padding: var(--bk-space-md); }
.bk-ad-price {
  font-family: var(--bk-font-display);
  font-size: 20px; font-weight: 900;
  color: var(--bk-text);
  letter-spacing: -0.3px;
}
.bk-ad-title {
  font-size: 13px; color: var(--bk-text-soft);
  margin: 4px 0 10px; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  min-height: 36px;
}
.bk-ad-meta {
  display: flex; justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--bk-border);
  font-size: 11px;
  color: var(--bk-text-mute);
}
.bk-ad-location { display: flex; align-items: center; gap: 4px; }
.bk-ad-time { font-weight: 500; }

.bk-load-more {
  display: block;
  margin: var(--bk-space-xl) auto 0;
  background: var(--bk-white);
  color: var(--bk-text);
  border: 2px solid var(--bk-border);
  padding: 13px 32px;
  border-radius: var(--bk-radius-full);
  font-weight: 700; font-size: 14px;
  transition: all var(--bk-duration) var(--bk-ease);
  display: flex; align-items: center; gap: 8px;
}
.bk-load-more:hover {
  background: var(--bk-primary);
  color: #fff;
  border-color: var(--bk-primary);
}

/* =====================================================
   CTA - ANUNCIE GRÁTIS
   ===================================================== */
.bk-cta-section {
  padding: var(--bk-space-3xl) 0;
}
.bk-cta-inner {
  background: linear-gradient(135deg, var(--bk-primary) 0%, var(--bk-primary-dark) 100%);
  border-radius: var(--bk-radius-xl);
  padding: 60px var(--bk-space-xl);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--bk-space-xl);
  align-items: center;
}
.bk-cta-inner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--bk-secondary);
  opacity: 0.2;
  border-radius: 50%;
  filter: blur(60px);
}
.bk-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -50px;
  width: 300px; height: 300px;
  background: var(--bk-accent);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(60px);
}
.bk-cta-content { position: relative; z-index: 2; }
.bk-cta-content h2 {
  font-family: var(--bk-font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.bk-cta-content h2 .highlight {
  color: var(--bk-secondary);
  position: relative; display: inline-block;
}
.bk-cta-content h2 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 6px;
  background: rgba(245,158,11,0.4);
  z-index: -1;
  border-radius: 3px;
}
.bk-cta-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 460px;
  line-height: 1.55;
}
.bk-cta-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 32px;
}
.bk-cta-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
}
.bk-cta-feature .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bk-cta-feature .check svg { width: 12px; height: 12px; }

.bk-cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.bk-btn-cta-primary {
  background: var(--bk-secondary);
  color: var(--bk-text);
  padding: 16px 28px;
  border-radius: var(--bk-radius-md);
  font-weight: 800; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--bk-duration) var(--bk-ease);
  box-shadow: 0 10px 30px rgba(245,158,11,0.4);
}
.bk-btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(245,158,11,0.5);
}
.bk-btn-cta-secondary {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--bk-radius-md);
  font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--bk-duration) var(--bk-ease);
  border: 1px solid rgba(255,255,255,0.2);
}
.bk-btn-cta-secondary:hover {
  background: rgba(255,255,255,0.25);
}

.bk-cta-stats {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bk-cta-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--bk-radius-lg);
  padding: 24px;
  text-align: center;
}
.bk-cta-stat-num {
  font-family: var(--bk-font-display);
  font-size: 36px; font-weight: 900;
  color: var(--bk-secondary);
  letter-spacing: -1px;
  line-height: 1;
}
.bk-cta-stat-label {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 6px;
  font-weight: 500;
}

/* =====================================================
   DEPOIMENTOS
   ===================================================== */
.bk-testimonials-section {
  background: var(--bk-bg-soft);
}
.bk-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--bk-space-lg);
}
.bk-testimonial {
  background: var(--bk-white);
  border: 1px solid var(--bk-border);
  border-radius: var(--bk-radius-lg);
  padding: var(--bk-space-lg);
  position: relative;
  transition: all var(--bk-duration) var(--bk-ease);
}
.bk-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--bk-shadow-md);
  border-color: var(--bk-primary);
}
.bk-testimonial-quote {
  font-family: var(--bk-font-display);
  font-size: 48px; font-weight: 900;
  color: var(--bk-primary-light);
  line-height: 1;
  margin-bottom: 4px;
}
.bk-testimonial-stars {
  color: var(--bk-secondary);
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.bk-testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--bk-text-soft);
  margin-bottom: 20px;
}
.bk-testimonial-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--bk-border);
}
.bk-author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.bk-author-name { font-weight: 700; font-size: 14px; }
.bk-author-role {
  font-size: 12px;
  color: var(--bk-text-mute);
  display: flex; align-items: center; gap: 4px;
}
.bk-author-verified {
  color: var(--bk-primary);
  font-weight: 700;
}

/* =====================================================
   APP DOWNLOAD
   ===================================================== */
.bk-app-section {
  background: var(--bk-text);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bk-app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bk-app-content .bk-section-eyebrow { color: var(--bk-secondary); }
.bk-app-content .bk-section-title { color: #fff; }
.bk-app-content p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.55;
  margin: 16px 0 28px;
}
.bk-app-features {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.bk-app-feature {
  display: flex; gap: 14px; align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 12px 16px;
  border-radius: var(--bk-radius-md);
  border: 1px solid rgba(255,255,255,0.08);
}
.bk-app-feature-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(245,158,11,0.2);
  color: var(--bk-secondary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bk-app-feature-icon svg { width: 18px; height: 18px; }
.bk-app-feature span { font-weight: 500; font-size: 14px; }

.bk-app-stores { display: flex; gap: 12px; flex-wrap: wrap; }
.bk-store-btn {
  background: #fff;
  color: var(--bk-text);
  padding: 12px 20px;
  border-radius: var(--bk-radius-md);
  display: flex; align-items: center; gap: 10px;
  transition: all var(--bk-duration) var(--bk-ease);
  font-weight: 500;
}
.bk-store-btn:hover {
  background: var(--bk-secondary);
  transform: translateY(-2px);
}
.bk-store-btn svg { width: 22px; height: 22px; }
.bk-store-btn small { display: block; font-size: 10px; opacity: 0.7; font-weight: 500; }
.bk-store-btn strong { font-size: 14px; font-weight: 800; }

.bk-app-mockups {
  position: relative;
  height: 520px;
}
.bk-app-phone {
  position: absolute;
  width: 240px;
  background: #000;
  border-radius: 34px;
  padding: 8px;
  box-shadow: 0 30px 80px rgba(5,150,105,0.35);
}
.bk-app-phone:nth-child(1) {
  left: 10%; top: 20px;
  transform: rotate(-6deg);
}
.bk-app-phone:nth-child(2) {
  right: 10%; top: 60px;
  transform: rotate(6deg);
}
.bk-app-phone::before {
  content: ''; position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 20px; background: #000;
  border-radius: 10px; z-index: 10;
}
.bk-app-phone img {
  width: 100%; border-radius: 26px;
  aspect-ratio: 9/19; object-fit: cover;
}

/* =====================================================
   FOOTER
   ===================================================== */
.bk-footer {
  background: var(--bk-text);
  color: rgba(255,255,255,0.7);
  padding: var(--bk-space-3xl) 0 var(--bk-space-lg);
}
.bk-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: var(--bk-space-xl);
  margin-bottom: var(--bk-space-xl);
}
.bk-footer-brand .bk-logo { color: #fff; margin-bottom: 14px; }
.bk-footer-brand .bk-logo-text span { color: var(--bk-primary); }
.bk-footer-brand p {
  font-size: 14px; line-height: 1.6;
  margin-bottom: 20px;
}
.bk-footer-socials { display: flex; gap: 10px; }
.bk-social-link {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--bk-duration) var(--bk-ease);
  color: rgba(255,255,255,0.8);
}
.bk-social-link:hover {
  background: var(--bk-primary);
  color: #fff;
  transform: translateY(-3px);
}
.bk-social-link svg { width: 18px; height: 18px; }

.bk-footer-col h4 {
  color: #fff; font-size: 13px;
  font-weight: 800; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1px;
}
.bk-footer-col li { margin-bottom: 10px; }
.bk-footer-col a {
  font-size: 14px;
  transition: color var(--bk-duration) var(--bk-ease);
}
.bk-footer-col a:hover { color: var(--bk-secondary); }

.bk-newsletter {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--bk-radius-lg);
  padding: 20px;
}
.bk-newsletter h4 {
  color: #fff; margin-bottom: 8px;
}
.bk-newsletter p {
  font-size: 13px;
  margin-bottom: 14px;
}
.bk-newsletter-form {
  display: flex; gap: 6px;
}
.bk-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--bk-radius-md);
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  outline: none;
  font-family: inherit;
}
.bk-newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.bk-newsletter-form button {
  background: var(--bk-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--bk-radius-md);
  font-weight: 700; font-size: 13px;
  transition: background var(--bk-duration) var(--bk-ease);
}
.bk-newsletter-form button:hover { background: var(--bk-primary-dark); }

.bk-footer-bottom {
  padding-top: var(--bk-space-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}
.bk-footer-bottom a { margin: 0 6px; }
.bk-footer-bottom a:hover { color: var(--bk-secondary); }

/* =====================================================
   BOTÃO VOLTAR AO TOPO
   ===================================================== */
.bk-scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--bk-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--bk-shadow-lg);
  opacity: 0; pointer-events: none;
  transition: all var(--bk-duration) var(--bk-ease);
  z-index: 99;
}
.bk-scroll-top.visible { opacity: 1; pointer-events: auto; }
.bk-scroll-top:hover {
  transform: translateY(-4px);
  background: var(--bk-primary-dark);
}
.bk-scroll-top svg { width: 20px; height: 20px; }

/* =====================================================
   REVEAL
   ===================================================== */
.bk-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s var(--bk-ease);
}
.bk-reveal.visible { opacity: 1; transform: translateY(0); }
.bk-reveal.delay-1 { transition-delay: 0.1s; }
.bk-reveal.delay-2 { transition-delay: 0.2s; }
.bk-reveal.delay-3 { transition-delay: 0.3s; }

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 1024px) {
  .bk-hero-grid { grid-template-columns: 1fr; }
  .bk-hero-visual { height: 400px; max-width: 500px; margin: 0 auto; }
  .bk-real-estate-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bk-real-estate-card.featured { grid-row: auto; grid-column: 1 / 3; height: 360px; }
  .bk-real-estate-card:not(.featured) { height: 240px; }
  .bk-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .bk-ads-grid { grid-template-columns: repeat(3, 1fr); }
  .bk-how-grid, .bk-app-inner { grid-template-columns: 1fr; }
  .bk-cta-inner { grid-template-columns: 1fr; }
  .bk-testimonials-grid { grid-template-columns: 1fr; }
  .bk-footer-grid { grid-template-columns: 1fr 1fr; }
  .bk-nav { display: none; }
}
@media (max-width: 768px) {
  :root { --bk-space-3xl: 60px; }
  .bk-topbar-links { display: none; }
  .bk-header-actions .bk-icon-btn:not(:first-child) { display: none; }
  .bk-search-box { flex-direction: column; }
  .bk-search-field { border-right: none; border-bottom: 1px solid var(--bk-border); width: 100%; }
  .bk-search-submit { width: 100%; height: 48px; }
  .bk-real-estate-grid { grid-template-columns: 1fr; }
  .bk-real-estate-card.featured { grid-column: auto; }
  .bk-ads-grid { grid-template-columns: repeat(2, 1fr); }
  .bk-cta-features { grid-template-columns: 1fr; }
  .bk-footer-grid { grid-template-columns: 1fr; }
  .bk-footer-bottom { flex-direction: column; text-align: center; }
  .bk-hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bk-car-card { width: 260px; }
  .bk-how-visual { max-width: 100%; }
  .bk-how-float-1 { right: 0; }
  .bk-how-float-2 { left: 0; }
  .bk-search-tabs { overflow-x: auto; scrollbar-width: none; }
}
@media (max-width: 480px) {
  .bk-categories-grid { grid-template-columns: 1fr; }
  .bk-ads-grid { grid-template-columns: 1fr; }
  .bk-cta-stats { grid-template-columns: 1fr; }
  .bk-hero { padding: 40px 0 60px; }
  .bk-hero-visual { height: 340px; }
}

/* Keep the parent theme from leaking its link/brand color into the custom home. */
body.buscaki-home-page {
  color: var(--bk-text) !important;
  background: var(--bk-bg) !important;
}
body.buscaki-home-page .bk-topbar a,
body.buscaki-home-page .bk-header a,
body.buscaki-home-page .bk-section a,
body.buscaki-home-page .bk-cta-section a,
body.buscaki-home-page .bk-app-section a,
body.buscaki-home-page .bk-footer a {
  color: inherit;
  text-decoration: none;
}
body.buscaki-home-page .bk-section-title,
body.buscaki-home-page .bk-cat-name,
body.buscaki-home-page .bk-ad-title,
body.buscaki-home-page .bk-car-title,
body.buscaki-home-page .bk-re-title,
body.buscaki-home-page .bk-testimonial-text {
  color: var(--bk-text);
}
body.buscaki-home-page .bk-cars-section .bk-section-title,
body.buscaki-home-page .bk-app-content .bk-section-title,
body.buscaki-home-page .bk-cta-content h2 {
  color: #fff;
}
