/* ================================================================
   TANTOO THEME CSS
   Design system completo — baseado nos mockups aprovados
   ================================================================ */

/* IMPORT FONT */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ----------------------------------------------------------------
   VARIÁVEIS
   ---------------------------------------------------------------- */
:root {
  --y:       #f5e800;   /* amarelo Tantto */
  --b:       #0a0a0a;   /* preto */
  --w:       #ffffff;
  --bg:      #fafafa;
  --border:  #e8e8e8;
  --muted:   #888888;
  --light:   #f5f5f5;
  --radius:  12px;
  --radius-s: 8px;
  --font:    'Plus Jakarta Sans', sans-serif;
  --shadow:  0 2px 12px rgba(0,0,0,.07);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--b);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ----------------------------------------------------------------
   NAVBAR
   ---------------------------------------------------------------- */
.tantoo-nav {
  background: var(--y);
  height: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.tantoo-nav-logo {
  font-size: 22px;
  font-weight: 900;
  color: var(--b);
  letter-spacing: -1.5px;
  flex-shrink: 0;
}
.tantoo-nav-logo span {
  color: var(--w);
  -webkit-text-stroke: 2px var(--b);
}

/* Barra de pesquisa nav */
.tantoo-nav-search { flex: 1; max-width: 520px; }
.tantoo-nav-search-inner {
  display: flex;
  align-items: stretch;
  background: var(--w);
  border: 2.5px solid var(--b);
  border-radius: 10px;
  height: 38px;
  overflow: visible;
}
.tantoo-nav-neg-select {
  border: none;
  border-right: 1.5px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--b);
  padding: 0 14px;
  height: 100%;
  appearance: none;
  outline: none;
  flex-shrink: 0;
  border-radius: 8px 0 0 8px;
}
/* O wrapper do input de localização deve esticar para preencher */
[data-tantoo-zona-wrap] {
  flex: 1;
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.tantoo-nav-loc-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  color: var(--b);
  padding: 0 12px;
  height: 100%;
  outline: none;
  min-width: 0;
  width: 100%;
}
.tantoo-nav-search-btn {
  background: var(--b);
  color: var(--y);
  border: none;
  border-radius: 0 8px 8px 0;
  font-size: 12px;
  font-weight: 800;
  padding: 0 16px;
  height: 100%;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.tantoo-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.tantoo-nav-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(0,0,0,.6);
}
.tantoo-nav-link:hover { color: var(--b); }

/* ----------------------------------------------------------------
   BOTÕES
   ---------------------------------------------------------------- */
.tantoo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--b);
  color: var(--y);
  border: none;
  border-radius: var(--radius-s);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 20px;
  transition: background .15s;
  white-space: nowrap;
}
.tantoo-btn:hover { background: #222; color: var(--y); }

.tantoo-btn-outline {
  background: var(--w);
  color: var(--b);
  border: 1.5px solid var(--border);
}
.tantoo-btn-outline:hover { border-color: var(--b); background: var(--y); }

/* ----------------------------------------------------------------
   HOMEPAGE — HERO
   ---------------------------------------------------------------- */
.tantoo-hero-home {
  background: var(--b);
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tantoo-hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(245,232,0,.06) 0%, transparent 70%);
}
.tantoo-hero-home-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
  max-width: 700px;
  width: 100%;
}
.tantoo-hero-logo {
  font-size: 64px;
  font-weight: 900;
  color: var(--y);
  letter-spacing: -4px;
  line-height: 1;
  margin-bottom: 16px;
}
.tantoo-hero-logo span {
  color: var(--b);
  -webkit-text-stroke: 3px var(--y);
}
.tantoo-hero-tagline {
  font-size: 28px;
  font-weight: 900;
  color: var(--w);
  letter-spacing: -.5px;
  margin-bottom: 8px;
}
.tantoo-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.45);
  margin-bottom: 32px;
}

/* Barra pesquisa homepage */
.tantoo-home-search { width: 100%; }
.tantoo-home-search-bar {
  display: flex;
  align-items: center;
  background: var(--w);
  border: 3px solid var(--y);
  border-radius: 14px;
  height: 56px;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.tantoo-home-neg { border-right: 1.5px solid var(--border); height: 100%; flex-shrink: 0; }
.tantoo-home-neg-select {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--b);
  padding: 0 18px;
  height: 100%;
  appearance: none;
  outline: none;
  cursor: pointer;
}
.tantoo-home-loc-wrap { flex: 1; position: relative; height: 100%; }
.tantoo-home-loc-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14px;
  color: var(--b);
  padding: 0 16px;
  height: 100%;
  outline: none;
}
.tantoo-home-loc-input::placeholder { color: #bbb; }
.tantoo-home-search-btn {
  background: var(--b);
  color: var(--y);
  border: none;
  border-radius: 0 11px 11px 0;
  font-size: 14px;
  font-weight: 800;
  padding: 0 24px;
  height: 100%;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}
.tantoo-home-search-btn:hover { background: #222; }

/* Pills de zonas */
.tantoo-popular-zones {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.tantoo-zone-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  transition: .15s;
}
.tantoo-zone-pill:hover {
  border-color: var(--y);
  color: var(--y);
  background: rgba(245,232,0,.08);
}

/* Stats hero */
.tantoo-hero-stats {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  font-weight: 600;
}
.tantoo-hero-sep { margin: 0 8px; }

/* ----------------------------------------------------------------
   HOMEPAGE — SECÇÕES
   ---------------------------------------------------------------- */
.tantoo-home-section { padding: 48px 24px; }
.tantoo-home-section-inner { max-width: 1100px; margin: 0 auto; }
.tantoo-home-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.tantoo-home-section-header h2 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.5px;
}
.tantoo-see-all { font-size: 13px; font-weight: 700; color: var(--muted); }
.tantoo-see-all:hover { color: var(--b); }

.tantoo-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* CTA secção */
.tantoo-home-cta {
  background: var(--b);
  padding: 40px 24px;
}
.tantoo-home-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.tantoo-cta-text h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--y);
  margin-bottom: 6px;
}
.tantoo-cta-text p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ----------------------------------------------------------------
   CARD DE IMÓVEL
   ---------------------------------------------------------------- */
.tantoo-imovel-card {
  background: var(--w);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  border-top: 3px solid var(--y);
}
.tantoo-imovel-card.is-scraped { border-top-color: #ccc; }
.tantoo-imovel-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.tantoo-card-link { display: block; }
.tantoo-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.tantoo-card-img img { width: 100%; height: 100%; object-fit: cover; }
.tantoo-card-img-placeholder { font-size: 48px; }
.tantoo-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--y);
  color: var(--b);
}
.tantoo-card-body { padding: 14px; }
.tantoo-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.tantoo-card-price { font-size: 18px; font-weight: 900; letter-spacing: -.5px; }
.tantoo-card-actions { display: flex; align-items: center; gap: 5px; }
.tantoo-fav-btn, .tantoo-stats-btn {
  background: var(--w);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: .15s;
}
.tantoo-fav-btn:hover, .tantoo-stats-btn:hover { border-color: var(--b); background: var(--y); }
.tantoo-fav-btn.is-fav { background: var(--y); border-color: var(--b); }
.tantoo-card-source {
  font-size: 10px;
  font-weight: 700;
  background: #e0e0e0;
  color: #666;
  padding: 2px 8px;
  border-radius: 20px;
}
.tantoo-card-source.is-direct { background: var(--y); color: var(--b); }
.tantoo-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--b);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tantoo-card-loc { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.tantoo-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}
.tantoo-card-meta span {
  font-size: 11px;
  font-weight: 600;
  color: #555;
  background: var(--light);
  padding: 2px 8px;
  border-radius: 20px;
}
.tantoo-card-footer {
  border-top: 1px solid var(--light);
  padding-top: 8px;
}
.tantoo-card-link-label { font-size: 11px; font-weight: 700; color: var(--muted); }

/* ----------------------------------------------------------------
   AUTOCOMPLETE DROPDOWN
   ---------------------------------------------------------------- */
.tantoo-ac-dropdown {
  background: var(--w);
  border: 1.5px solid var(--b);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow);
  max-height: 280px;
  overflow-y: auto;
  width: 100%;
}
.tantoo-ac-section {
  font-size: 10px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 8px 14px 4px;
}
.tantoo-ac-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  cursor: pointer;
  transition: .1s;
}
.tantoo-ac-item:hover { background: var(--y); }
.tantoo-ac-name { font-size: 13px; font-weight: 600; }
.tantoo-ac-count { font-size: 11px; color: var(--muted); }

/* ----------------------------------------------------------------
   PÁGINA DE LISTAGEM / ZONA
   ---------------------------------------------------------------- */
.tantoo-zone-hero {
  background: var(--b);
  padding: 32px 24px;
}
.tantoo-zone-hero-inner { max-width: 1100px; margin: 0 auto; }
.tantoo-zone-flag { font-size: 24px; margin-bottom: 6px; }
.tantoo-zone-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--w);
  letter-spacing: -.5px;
  margin-bottom: 4px;
}
.tantoo-zone-sub { font-size: 13px; color: rgba(255,255,255,.4); }

.tantoo-search-wrap {
  background: var(--w);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.tantoo-search-form { max-width: 1100px; margin: 0 auto; }
.tantoo-search-bar {
  display: flex;
  align-items: center;
  background: var(--w);
  border: 2px solid var(--b);
  border-radius: 10px;
  height: 44px;
  overflow: visible;
  max-width: 600px;
}
.tantoo-search-select {
  border: none;
  border-right: 1.5px solid var(--border);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  padding: 0 14px;
  height: 100%;
  appearance: none;
  outline: none;
  flex-shrink: 0;
}
.tantoo-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  padding: 0 12px;
  height: 100%;
  outline: none;
  min-width: 0;
}

.tantoo-listing-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  padding: 20px 24px;
  max-width: 1100px;
  margin: 0 auto;
  min-width: 0;
}

/* Sidebar filtros */
.tantoo-filters-sidebar { min-width: 0; }
.tantoo-filter-block { margin-bottom: 20px; }
.tantoo-filter-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
  display: block;
}
.tantoo-filter-select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-s);
  padding: 9px 12px;
  font-size: 13px;
  outline: none;
  appearance: none;
  background: var(--w);
}
.tantoo-filter-select:focus { border-color: var(--b); }
.tantoo-filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.tantoo-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  color: #555;
  transition: .15s;
  user-select: none;
}
.tantoo-chip:hover { border-color: var(--b); }
.tantoo-chip.active { background: var(--y); border-color: var(--b); color: var(--b); font-weight: 800; }
.tantoo-filter-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.tantoo-filter-range input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-s);
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
  width: 100%;
}
.tantoo-filter-range input:focus { border-color: var(--b); }

/* Listagem principal */
.tantoo-listing-main { min-width: 0; }
.tantoo-listing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.tantoo-listing-count { font-size: 13px; color: var(--muted); font-weight: 600; }
.tantoo-listing-grid { display: flex; flex-direction: column; gap: 10px; }

/* Card horizontal na listagem */
.tantoo-listing-grid .tantoo-imovel-card {
  border-radius: var(--radius);
  border-top: none;
  border-left: 4px solid var(--y);
}
.tantoo-listing-grid .tantoo-imovel-card.is-scraped { border-left-color: #ccc; }
.tantoo-listing-grid .tantoo-card-link { display: grid; grid-template-columns: 200px 1fr; }
.tantoo-listing-grid .tantoo-card-img { height: 100%; min-height: 150px; border-radius: 0; }

/* ----------------------------------------------------------------
   PÁGINA DE DETALHE
   ---------------------------------------------------------------- */
.tantoo-detail-page { max-width: 1100px; margin: 0 auto; padding: 0 24px 40px; }

.tantoo-ext-notice {
  background: var(--w);
  border: 1.5px solid var(--y);
  border-left: 4px solid var(--y);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
.tantoo-ext-notice-icon { font-size: 20px; flex-shrink: 0; }

.tantoo-hero-photo {
  width: 100%;
  height: 380px;
  background: #e0e0e0 center/cover no-repeat;
  border-radius: 14px;
  margin: 16px 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.tantoo-hero-badge {
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--y);
  color: var(--b);
}

.tantoo-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

.tantoo-detail-header {
  background: var(--w);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.tantoo-detail-ref { font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.tantoo-detail-title { font-size: 22px; font-weight: 900; letter-spacing: -.5px; margin-bottom: 4px; }
.tantoo-detail-loc { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.tantoo-detail-price-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tantoo-detail-price { font-size: 28px; font-weight: 900; letter-spacing: -1px; }
.tantoo-detail-price-m2 {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  background: var(--light);
  padding: 4px 10px;
  border-radius: 20px;
}
.tantoo-detail-actions { margin-left: auto; display: flex; gap: 8px; }

.tantoo-section {
  background: var(--w);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 16px;
}
.tantoo-section-title { font-size: 14px; font-weight: 800; margin-bottom: 14px; }

.tantoo-chars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tantoo-char {
  background: var(--light);
  border-radius: var(--radius-s);
  padding: 10px 12px;
}
.tantoo-char-label {
  font-size: 10px;
  font-weight: 700;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 3px;
}
.tantoo-char-val { font-size: 14px; font-weight: 700; }

.tantoo-detail-desc { font-size: 13px; color: #555; line-height: 1.7; }

.tantoo-map {
  height: 200px;
  background: #e8f0e8;
  border-radius: 10px;
  border: 1.5px solid #dde8dd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

/* Sidebar contacto */
.tantoo-detail-sidebar { position: sticky; top: 72px; }
.tantoo-contact-card {
  background: var(--w);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.tantoo-quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--light);
}
.tantoo-qs {
  background: var(--light);
  border-radius: var(--radius-s);
  padding: 8px 10px;
  text-align: center;
}
.tantoo-qs-val { font-size: 15px; font-weight: 900; }
.tantoo-qs-label { font-size: 10px; color: var(--muted); margin-top: 1px; }

.tantoo-agency {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light);
}
.tantoo-agency-logo {
  width: 40px;
  height: 40px;
  background: var(--y);
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}
.tantoo-agency-name { font-size: 13px; font-weight: 700; }
.tantoo-agency-ref { font-size: 11px; color: var(--muted); }

.tantoo-contact-ref {
  background: var(--light);
  border-radius: var(--radius-s);
  padding: 8px 12px;
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
}

.tantoo-contact-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
  margin-bottom: 6px;
}
.tantoo-contact-textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-s);
  padding: 10px 12px;
  font-size: 12px;
  resize: none;
  height: 80px;
  line-height: 1.5;
  outline: none;
}
.tantoo-contact-textarea:focus { border-color: var(--b); }
.tantoo-contact-send {
  width: 100%;
  background: var(--b);
  color: var(--y);
  border: none;
  border-radius: var(--radius-s);
  font-size: 13px;
  font-weight: 800;
  padding: 11px;
  margin-top: 8px;
}
.tantoo-contact-direct {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--light);
}
.tantoo-contact-direct .tantoo-btn-outline {
  width: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 13px;
}
.tantoo-contact-direct .tantoo-btn-outline.revealed {
  background: var(--y);
  border-color: var(--b);
  font-weight: 800;
}

/* CTA externo (imóveis scrapeados) */
.tantoo-ext-cta {
  background: #1a1a1a;
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 72px;
}
.tantoo-ext-cta-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.tantoo-ext-cta-stat {
  background: #fff;
  border-radius: var(--radius-s);
  padding: 10px;
  text-align: center;
}
.tantoo-ext-cta-stat-val { font-size: 15px; font-weight: 900; color: var(--b); }
.tantoo-ext-cta-stat-label { font-size: 10px; color: #888; margin-top: 2px; }
.tantoo-ext-cta-source {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.tantoo-ext-cta-logo {
  width: 38px; height: 38px;
  background: var(--y);
  border-radius: var(--radius-s);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; color: var(--b); flex-shrink: 0;
}
.tantoo-ext-cta-name { font-size: 13px; font-weight: 700; color: #fff; }
.tantoo-ext-cta-sub { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 1px; }
.tantoo-ext-cta p { font-size: 11px; color: rgba(255,255,255,.5); margin-bottom: 14px; line-height: 1.6; }

/* Botão principal — amarelo, sempre visível */
.tantoo-ext-cta .tantoo-btn-ver {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--y); color: var(--b);
  border: none; border-radius: var(--radius-s);
  font-size: 13px; font-weight: 800;
  padding: 12px; width: 100%; margin-bottom: 10px;
  cursor: pointer; text-decoration: none;
}
.tantoo-ext-cta .tantoo-btn-ver:hover { background: #ffe000; color: var(--b); }

/* Botão secundário — branco, sempre visível */
.tantoo-ext-cta .tantoo-btn-fav {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: #fff; color: var(--b);
  border: none; border-radius: var(--radius-s);
  font-size: 12px; font-weight: 700;
  padding: 11px; width: 100%;
  cursor: pointer;
}
.tantoo-ext-cta .tantoo-btn-fav:hover { background: #f0f0f0; color: var(--b); }
.tantoo-ext-cta .tantoo-btn-fav .heart { color: #e53935; }

.tantoo-ext-cta-info { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1); }
.tantoo-ext-cta-info-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,.3); margin-bottom: 5px; }
.tantoo-ext-cta-info-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* Semelhantes */
.tantoo-similar-section { padding: 32px 0 0; }
.tantoo-similar-section h2 { font-size: 16px; font-weight: 800; margin-bottom: 14px; }
.tantoo-similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* ----------------------------------------------------------------
   BREADCRUMB
   ---------------------------------------------------------------- */
.tantoo-breadcrumb {
  padding: 10px 0;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: center;
}
.tantoo-breadcrumb a { color: var(--muted); }
.tantoo-breadcrumb a:hover { color: var(--b); }
.tantoo-breadcrumb span { color: var(--b); font-weight: 600; }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.tantoo-footer { background: var(--b); padding: 32px 24px; margin-top: 48px; }
.tantoo-footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.tantoo-footer-logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--y);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.tantoo-footer-logo span { color: var(--b); -webkit-text-stroke: 2px var(--y); }
.tantoo-footer-sub { font-size: 12px; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.tantoo-footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.tantoo-footer-links a { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 600; }
.tantoo-footer-links a:hover { color: var(--y); }
.tantoo-footer-copy { font-size: 11px; color: rgba(255,255,255,.2); }

/* ----------------------------------------------------------------
   UTILITÁRIOS
   ---------------------------------------------------------------- */
.tantoo-empty { color: var(--muted); font-size: 14px; padding: 24px 0; }
.tantoo-no-results { color: var(--muted); font-size: 14px; padding: 24px 0; }
.tantoo-seo-text {
  background: var(--w);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 24px 24px;
  max-width: 1100px;
}
.tantoo-seo-text h2 { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.tantoo-seo-text p { font-size: 12px; color: #666; line-height: 1.7; }

/* Paginação */
.nav-links { display: flex; gap: 5px; justify-content: center; margin: 24px 0; }
.page-numbers {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-s);
  font-size: 13px;
  font-weight: 700;
  color: #555;
  transition: .15s;
}
.page-numbers:hover, .page-numbers.current {
  border-color: var(--b);
  background: var(--y);
  color: var(--b);
}

/* ----------------------------------------------------------------
   STATS BLOCK (tantoo-stats)
   ---------------------------------------------------------------- */
.tantoo-stats-block {
  background: var(--w);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.tantoo-stats-title { font-size: 13px; font-weight: 800; margin-bottom: 2px; }
.tantoo-stats-sub { font-size: 11px; color: var(--muted); margin-bottom: 14px; }
.tantoo-stats-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}
.tantoo-stats-item {
  background: var(--light);
  border-radius: var(--radius-s);
  padding: 10px 12px;
}
.tantoo-stats-val { font-size: 16px; font-weight: 900; letter-spacing: -.3px; }
.tantoo-stats-label { font-size: 10px; color: var(--muted); margin-top: 2px; }
.tantoo-stats-note { font-size: 10px; color: #ccc; margin-top: 8px; }

/* ── LOGO CORRECÇÕES ─────────────────────────────────────────── */

/* Logo na navbar — altura máxima 36px */
.tantoo-nav-logo .tantoo-logo-img {
  height: 36px;
  width: auto;
  max-width: 160px;
  display: block;
}

/* Logo no hero — largura máxima 200px */
.tantoo-hero-logo .tantoo-logo-img {
  height: auto;
  width: 200px;
  max-width: 200px;
  display: block;
  margin: 0 auto 16px;
}

/* Logo no footer — altura máxima 28px */
.tantoo-footer-logo .tantoo-logo-img {
  height: 28px;
  width: auto;
  max-width: 120px;
  display: block;
  margin: 0 auto 8px;
}

/* Logo textual — mantém o tamanho original */
.tantoo-nav-logo .tantoo-logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1.5px;
}
.tantoo-hero-logo .tantoo-logo-text {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -3px;
}
.tantoo-footer-logo .tantoo-logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

/* ── LOGOS POR CONTEXTO ──────────────────────────────────────── */
.tantoo-logo-navbar {
  height: 36px;
  width: auto;
  max-width: 160px;
  display: block;
}
.tantoo-logo-hero {
  height: auto;
  width: 200px;
  max-width: 200px;
  display: block;
  margin: 0 auto 16px;
}
.tantoo-logo-footer {
  height: 28px;
  width: auto;
  max-width: 140px;
  display: block;
  margin: 0 auto 8px;
}

/* ================================================================
   RESPONSIVO
   ================================================================ */

/* ── Tablet (≤ 900px) ─────────────────────────────────────────── */
@media (max-width: 900px) {

  /* Navbar — esconder barra de pesquisa, só logo + botão */
  .tantoo-nav-search { display: none; }
  .tantoo-nav { padding: 0 16px; gap: 10px; }
  .tantoo-nav-link { display: none; }

  /* Homepage grid — 2 colunas */
  .tantoo-home-grid { grid-template-columns: repeat(2, 1fr); }

  /* Listagem — sem sidebar de filtros */
  .tantoo-listing-layout {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .tantoo-filters-sidebar { display: none; }

  /* Detalhe — layout vertical */
  .tantoo-detail-layout { grid-template-columns: 1fr; }
  .tantoo-detail-sidebar { position: static; }
  .tantoo-ext-cta { position: static; }

  /* Características — 2 colunas */
  .tantoo-chars { grid-template-columns: repeat(2, 1fr); }

  /* Semelhantes — 2 colunas */
  .tantoo-similar-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero foto menor */
  .tantoo-hero-photo { height: 240px; }

  /* Card horizontal na listagem — voltar a vertical */
  .tantoo-listing-grid .tantoo-card-link { grid-template-columns: 1fr; }
  .tantoo-listing-grid .tantoo-card-img { height: 180px; }

  /* CTA section homepage */
  .tantoo-home-cta-inner { flex-direction: column; text-align: center; }
}

/* ── Mobile (≤ 600px) ─────────────────────────────────────────── */
@media (max-width: 600px) {

  /* Navbar mobile */
  .tantoo-nav { height: 48px; padding: 0 12px; }
  .tantoo-nav-anunciar, .tantoo-nav-cta { font-size: 11px; padding: 5px 10px; }

  /* Homepage hero */
  .tantoo-hero-home { min-height: calc(100svh - 48px); }
  .tantoo-hero-logo { font-size: 40px; }
  .tantoo-hero-tagline { font-size: 18px; }
  .tantoo-hero-sub { font-size: 13px; }

  /* Barra de pesquisa homepage — vertical */
  .tantoo-home-search-bar {
    flex-direction: column;
    height: auto;
    border-radius: 12px;
    padding: 8px;
    gap: 6px;
  }
  .tantoo-home-neg { border-right: none; border-bottom: 1px solid var(--border); width: 100%; height: 36px; }
  .tantoo-home-neg-select { width: 100%; padding: 0 12px; }
  .tantoo-home-loc-wrap { width: 100%; height: 36px; }
  .tantoo-home-loc-input { padding: 0 12px; }
  .tantoo-home-search-btn { width: 100%; border-radius: 8px; height: 40px; }

  /* Zonas pills — scroll horizontal */
  .tantoo-popular-zones { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; }
  .tantoo-zone-pill { flex-shrink: 0; }

  /* Grid homepage — 1 coluna */
  .tantoo-home-grid { grid-template-columns: 1fr; }
  .tantoo-home-section { padding: 28px 16px; }

  /* Detalhe */
  .tantoo-detail-page { padding: 0 12px 32px; }
  .tantoo-hero-photo { height: 200px; border-radius: 8px; }
  .tantoo-detail-title { font-size: 18px; }
  .tantoo-detail-price { font-size: 22px; }
  .tantoo-chars { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .tantoo-detail-price-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .tantoo-detail-actions { margin-left: 0; }

  /* Semelhantes — 1 coluna */
  .tantoo-similar-grid { grid-template-columns: 1fr; }

  /* Ext notice */
  .tantoo-ext-notice { font-size: 11px; padding: 10px 12px; }

  /* Stats mini */
  .tantoo-ext-cta-stats { grid-template-columns: 1fr 1fr; }

  /* Listagem */
  .tantoo-listing-layout { padding: 12px; }
  .tantoo-zone-title { font-size: 20px; }
  .tantoo-zone-hero { padding: 20px 16px; }

  /* Footer */
  .tantoo-footer { padding: 20px 16px; }
  .tantoo-footer-links { gap: 12px; }

  /* Navbar mobile — mostrar barra de pesquisa condensada */
  .tantoo-nav-search {
    display: flex;
    flex: 1;
    max-width: none;
  }
  .tantoo-nav-search-inner { height: 32px; border-width: 2px; }
  .tantoo-nav-neg-select { display: none; }
  .tantoo-nav-loc-input { font-size: 12px; }
  .tantoo-nav-search-btn { font-size: 11px; padding: 0 10px; border-radius: 0 6px 6px 0; }

  /* Breadcrumb */
  .tantoo-breadcrumb { font-size: 10px; }

  /* Paginação */
  .page-numbers { width: 30px; height: 30px; font-size: 12px; }

  /* SEO text */
  .tantoo-seo-text { margin: 0 0 16px; }
}

/* ── Muito pequeno (≤ 380px) ──────────────────────────────────── */
@media (max-width: 380px) {
  .tantoo-hero-logo { font-size: 32px; }
  .tantoo-hero-tagline { font-size: 16px; }
  .tantoo-chars { grid-template-columns: 1fr 1fr; }
  .tantoo-detail-price { font-size: 20px; }
  .tantoo-home-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PUBLICAR ANÚNCIO
   ================================================================ */
.tantoo-publish-page { max-width: 680px; margin: 0 auto; padding: 32px 20px 60px; }

/* Gate (não logado) */
.tantoo-publish-gate { text-align: center; padding: 60px 20px; }
.tantoo-publish-gate-icon { font-size: 48px; margin-bottom: 16px; }
.tantoo-publish-gate h1 { font-size: 28px; font-weight: 900; margin-bottom: 10px; }
.tantoo-publish-gate p { color: #666; margin-bottom: 24px; }
.tantoo-publish-gate-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Header */
.tantoo-publish-header { margin-bottom: 28px; }
.tantoo-publish-header h1 { font-size: 26px; font-weight: 900; margin-bottom: 6px; }
.tantoo-publish-header p { color: #888; }

/* Steps nav */
.tantoo-publish-steps { display: flex; gap: 0; margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }
.tantoo-step { flex: 1; text-align: center; padding: 10px 6px; font-size: 12px; font-weight: 700; color: #aaa; background: #fafafa; border-right: 1px solid var(--border); }
.tantoo-step:last-child { border-right: none; }
.tantoo-step span { display: inline-block; width: 20px; height: 20px; border-radius: 50%; background: #e0e0e0; color: #888; font-size: 11px; line-height: 20px; margin-right: 4px; }
.tantoo-step.active { background: var(--b); color: var(--y); }
.tantoo-step.active span { background: var(--y); color: var(--b); }

/* Fields */
.tantoo-publish-field { margin-bottom: 18px; }
.tantoo-publish-field label { display: block; font-size: 12px; font-weight: 700; color: #555; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .05em; }
.tantoo-publish-field input[type="text"],
.tantoo-publish-field input[type="number"],
.tantoo-publish-field input[type="email"],
.tantoo-publish-field input[type="tel"],
.tantoo-publish-field textarea,
.tantoo-publish-field select {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-s);
  font-size: 14px; padding: 10px 12px; outline: none; font-family: inherit;
  color: var(--b); background: var(--w);
}
.tantoo-publish-field input:focus,
.tantoo-publish-field textarea:focus,
.tantoo-publish-field select:focus { border-color: var(--b); }
.tantoo-publish-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tantoo-publish-row.three { grid-template-columns: 1fr 1fr 1fr; }
.tantoo-publish-hint { font-size: 13px; color: #888; margin-bottom: 16px; }

/* Radio groups */
.tantoo-radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.tantoo-radio { display: flex; align-items: center; gap: 7px; padding: 9px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-s); cursor: pointer; font-size: 13px; font-weight: 600; }
.tantoo-radio input { display: none; }
.tantoo-radio.active { border-color: var(--b); background: var(--b); color: var(--y); }

/* Chips */
.tantoo-chips-group { display: flex; flex-wrap: wrap; gap: 8px; }
.tantoo-chip { padding: 7px 14px; border: 1.5px solid var(--border); border-radius: 20px; cursor: pointer; font-size: 12px; font-weight: 700; }
.tantoo-chip input { display: none; }
.tantoo-chip.active { border-color: var(--b); background: var(--b); color: var(--y); }

/* Checkbox */
.tantoo-checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 13px; cursor: pointer; }
.tantoo-checkbox-label a { color: var(--b); }

/* Botões */
.tantoo-publish-btns { display: flex; gap: 10px; margin-top: 24px; }
.tantoo-publish-btns .tantoo-btn,
.tantoo-publish-btns .tantoo-btn-outline { flex: 1; justify-content: center; }

/* Upload fotos */
.tantoo-photo-upload { border: 2px dashed var(--border); border-radius: var(--radius); padding: 40px 20px; text-align: center; cursor: pointer; margin-bottom: 16px; transition: .2s; }
.tantoo-photo-upload:hover, .tantoo-photo-upload.dragover { border-color: var(--b); background: #f5f5f5; }
.tantoo-photo-upload-icon { font-size: 36px; margin-bottom: 10px; }
.tantoo-photo-upload-hint { font-size: 11px; color: #aaa; margin-top: 5px; }
.tantoo-photo-preview { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.tantoo-photo-thumb { position: relative; width: 100px; height: 80px; border-radius: 8px; overflow: hidden; }
.tantoo-photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tantoo-photo-remove { position: absolute; top: 4px; right: 4px; background: rgba(0,0,0,.6); color: #fff; border: none; border-radius: 50%; width: 20px; height: 20px; font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* Mensagens de sucesso/erro */
.tantoo-publish-success { background: #e8f5e9; border: 1.5px solid #4caf50; border-radius: var(--radius-s); padding: 14px 16px; margin-top: 16px; font-size: 14px; font-weight: 600; color: #2e7d32; }
.tantoo-publish-success a { color: #2e7d32; }
.tantoo-publish-error { background: #fce4ec; border: 1.5px solid #e53935; border-radius: var(--radius-s); padding: 14px 16px; margin-top: 16px; font-size: 14px; color: #c62828; }

@media (max-width: 600px) {
  .tantoo-publish-row { grid-template-columns: 1fr; }
  .tantoo-step { font-size: 10px; padding: 8px 4px; }
  .tantoo-publish-btns { flex-direction: column; }
}

/* ================================================================
   REGISTO / LOGIN
   ================================================================ */
.tantoo-auth-page {
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: calc(100vh - 52px);
}

/* Formulário */
.tantoo-auth-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 60px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

/* Tabs */
.tantoo-auth-tabs { display: flex; gap: 0; margin-bottom: 28px; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.tantoo-auth-tab { flex: 1; padding: 11px; font-size: 13px; font-weight: 700; border: none; background: #fafafa; color: #888; cursor: pointer; }
.tantoo-auth-tab.active { background: var(--b); color: var(--y); }

/* Panel */
.tantoo-auth-panel h1 { font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.tantoo-auth-sub { font-size: 13px; color: #888; margin-bottom: 24px; }

/* Fields */
.tantoo-auth-field { margin-bottom: 16px; position: relative; }
.tantoo-auth-field label { display: block; font-size: 11px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.tantoo-auth-field input[type="text"],
.tantoo-auth-field input[type="email"],
.tantoo-auth-field input[type="password"] {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-s);
  font-size: 14px; padding: 11px 14px; outline: none; font-family: inherit; color: var(--b);
}
.tantoo-auth-field input:focus { border-color: var(--b); }
.tantoo-auth-forgot { font-size: 11px; color: #888; position: absolute; right: 0; top: 0; }
.tantoo-auth-forgot:hover { color: var(--b); }
.tantoo-auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Submit */
.tantoo-auth-submit { width: 100%; justify-content: center; padding: 13px; font-size: 15px; margin-top: 4px; }

/* Divider */
.tantoo-auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: #ccc; font-size: 12px; }
.tantoo-auth-divider::before, .tantoo-auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Switch */
.tantoo-auth-switch { text-align: center; font-size: 13px; color: #888; margin-top: 16px; }
.tantoo-auth-switch a { color: var(--b); font-weight: 700; }

/* Msg */
.tantoo-auth-msg { padding: 12px 14px; border-radius: var(--radius-s); font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.tantoo-auth-msg--success { background: #e8f5e9; color: #2e7d32; border: 1px solid #4caf50; }
.tantoo-auth-msg--error { background: #fce4ec; color: #c62828; border: 1px solid #e53935; }

/* Benefícios (coluna direita) */
.tantoo-auth-benefits {
  background: var(--b);
  display: flex;
  align-items: center;
  padding: 48px 40px;
}
.tantoo-auth-benefits-logo {
  font-size: 28px; font-weight: 900; color: var(--y);
  letter-spacing: -1.5px; margin-bottom: 36px;
}
.tantoo-auth-benefits-logo span { color: var(--b); -webkit-text-stroke: 2px var(--y); }
.tantoo-auth-benefit { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }
.tantoo-auth-benefit-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.tantoo-auth-benefit strong { display: block; color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.tantoo-auth-benefit p { color: rgba(255,255,255,.45); font-size: 12px; line-height: 1.5; margin: 0; }

/* Mobile */
@media (max-width: 768px) {
  .tantoo-auth-page { grid-template-columns: 1fr; }
  .tantoo-auth-benefits { display: none; }
  .tantoo-auth-wrap { padding: 32px 20px; }
  .tantoo-auth-row { grid-template-columns: 1fr; }
}

/* ── Dropdowns em cascata ── */
.tantoo-publish-field select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-s);
  font-size: 14px;
  padding: 10px 12px;
  outline: none;
  font-family: inherit;
  color: var(--b);
  background: var(--w);
  appearance: auto;
}
.tantoo-publish-field select:focus { border-color: var(--b); }
.tantoo-publish-field select:disabled {
  background: #f5f5f5;
  color: #aaa;
  cursor: not-allowed;
}

/* ── Dados de mercado ── */
.tantoo-stats-block { background: #f9f9f9; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.tantoo-stats-header { margin-bottom: 14px; font-size: 13px; color: #555; }
.tantoo-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.tantoo-stats-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-s); padding: 12px 14px; }
.tantoo-stats-item.is-national { opacity: .7; }
.tantoo-stats-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #aaa; margin-bottom: 4px; }
.tantoo-stats-value { font-size: 20px; font-weight: 900; color: var(--b); }
.tantoo-stats-value span { font-size: 12px; font-weight: 600; color: #888; }
.tantoo-stats-diff { font-size: 11px; font-weight: 700; margin-top: 4px; }
.tantoo-stats-diff.up { color: #e53935; }
.tantoo-stats-diff.down { color: #43a047; }
.tantoo-stats-footer { font-size: 10px; color: #bbb; line-height: 1.5; }

/* ================================================================
   MINHA CONTA
   ================================================================ */
.tantoo-account-page { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 52px); }

/* Sidebar */
.tantoo-account-sidebar { background: var(--b); padding: 28px 20px; }
.tantoo-account-user { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.tantoo-account-avatar { width: 52px; height: 52px; background: var(--y); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 900; color: var(--b); margin-bottom: 10px; }
.tantoo-account-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.tantoo-account-email { font-size: 11px; color: rgba(255,255,255,.4); }
.tantoo-account-nav { display: flex; flex-direction: column; gap: 4px; }
.tantoo-account-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: var(--radius-s); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); text-decoration: none; }
.tantoo-account-nav-item:hover { background: rgba(255,255,255,.06); color: #fff; }
.tantoo-account-nav-item.active { background: rgba(255,255,255,.1); color: #fff; }
.tantoo-account-logout { margin-top: 16px; color: rgba(255,255,255,.3); }
.tantoo-account-logout:hover { color: #e53935; background: rgba(229,57,53,.1); }

/* Conteúdo */
.tantoo-account-content { padding: 32px 36px; background: #f7f7f7; }
.tantoo-account-section { max-width: 700px; }
.tantoo-account-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.tantoo-account-section-header h2 { font-size: 20px; font-weight: 900; margin: 0; }
.tantoo-account-section > h2 { font-size: 20px; font-weight: 900; margin-bottom: 20px; }

/* Empty state */
.tantoo-account-empty { text-align: center; padding: 48px 20px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); }
.tantoo-account-empty-icon { font-size: 40px; margin-bottom: 12px; }
.tantoo-account-empty p { color: #888; margin-bottom: 18px; }

/* Cards de imóveis */
.tantoo-account-imoveis { display: flex; flex-direction: column; gap: 12px; }
.tantoo-account-imovel-card { display: grid; grid-template-columns: 120px 1fr; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.tantoo-account-imovel-img { height: 100%; min-height: 90px; background: #e8e8e8 center/cover no-repeat; display: flex; align-items: center; justify-content: center; font-size: 28px; position: relative; }
.tantoo-account-imovel-status { position: absolute; top: 6px; left: 6px; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 20px; background: #e8f5e9; color: #2e7d32; }
.tantoo-account-imovel-status.is-draft { background: #fff3e0; color: #e65100; }
.tantoo-account-imovel-body { padding: 12px 14px; }
.tantoo-account-imovel-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.tantoo-account-imovel-meta { display: flex; gap: 10px; flex-wrap: wrap; font-size: 11px; color: #888; margin-bottom: 10px; }
.tantoo-account-imovel-actions { display: flex; gap: 8px; }
.tantoo-btn-sm { font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 6px; border: none; background: var(--b); color: var(--y); cursor: pointer; text-decoration: none; }
.tantoo-btn-sm-outline { background: #fff; color: var(--b); border: 1.5px solid var(--border); }
.tantoo-btn-sm-outline:hover { border-color: var(--b); }
.tantoo-btn-sm-danger { background: #fce4ec; color: #c62828; }
.tantoo-btn-sm-danger:hover { background: #e53935; color: #fff; }

@media (max-width: 768px) {
  .tantoo-account-page { grid-template-columns: 1fr; }
  .tantoo-account-sidebar { padding: 20px 16px; }
  .tantoo-account-nav { flex-direction: row; flex-wrap: wrap; }
  .tantoo-account-content { padding: 20px 16px; }
  .tantoo-account-imovel-card { grid-template-columns: 90px 1fr; }
}
