/* ============================================
   TUDO LEILÃO — Design profissional (Santoro style)
   Navy + Orange + Light gray  |  Clean & trustworthy
   ============================================ */

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html,body { height:100%; }
body {
  font-family:'Inter','Segoe UI',system-ui,-apple-system,Roboto,Arial,sans-serif;
  font-size:15px;
  line-height:1.55;
  color:#1f2937;
  background:#f4f5f7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
input,textarea,select { font-family:inherit; }
ul { list-style:none; }
h1,h2,h3,h4,h5,h6 { font-weight:700; color:#0f1d33; line-height:1.2; }

.wrap { max-width:1280px; margin:0 auto; padding:0 20px; }

/* ============================================
   TOPBAR (light gray gradient, logo + login)
   ============================================ */
.topbar {
  background:linear-gradient(to bottom,#eef0f2 0%,#cfd3d8 100%);
  border-bottom:1px solid #b8bcc2;
}
.topbar-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 0;
  min-height:90px;
}

/* Logo */
.logo-tl {
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.logo-tl-ico {
  width:54px; height:54px;
  border-radius:50%;
  background:#fff;
  border:2px solid #1a2e4a;
  color:#1a2e4a;
  font-weight:800;
  font-size:22px;
  display:flex; align-items:center; justify-content:center;
  letter-spacing:.5px;
}
.logo-tl-text { display:flex; flex-direction:column; line-height:1; }
.logo-tl-text .tl-cima {
  font-size:11px;
  letter-spacing:2.5px;
  color:#475569;
  font-weight:600;
  text-transform:uppercase;
}
.logo-tl-text .tl-baixo {
  font-size:24px;
  font-weight:800;
  color:#1a2e4a;
  letter-spacing:.5px;
  margin-top:2px;
}

/* Login form on the right */
.auth-box-top {
  display:flex;
  align-items:center;
  gap:14px;
}
.btn-cad {
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 16px;
  background:#fff;
  border:2px solid #1a2e4a;
  color:#1a2e4a;
  border-radius:6px;
  font-weight:700;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.6px;
  transition:all .15s;
}
.btn-cad:hover { background:#1a2e4a; color:#fff; }

.auth-input {
  display:flex; flex-direction:column;
  position:relative;
}
.auth-input small {
  font-size:10px;
  font-weight:600;
  letter-spacing:1px;
  color:#475569;
  text-transform:uppercase;
  margin-bottom:4px;
}
.auth-input input {
  width:160px;
  padding:7px 10px;
  border:1px solid #94a3b8;
  border-radius:4px;
  background:#fff;
  font-size:13px;
  color:#1f2937;
  outline:none;
  transition:border-color .15s;
}
.auth-input input:focus { border-color:#1a2e4a; }
.auth-input .esqueci {
  position:absolute;
  top:100%; right:0;
  font-size:10px;
  color:#475569;
  margin-top:3px;
}
.auth-input .esqueci:hover { color:#1a2e4a; text-decoration:underline; }

.btn-entrar {
  background:#f57c00;
  color:#fff;
  padding:10px 22px;
  border-radius:4px;
  font-weight:700;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  transition:background .15s;
  align-self:flex-end;
}
.btn-entrar:hover { background:#e56b00; }

.btn-compras {
  display:inline-flex; align-items:center; gap:6px;
  background:#1a2e4a;
  color:#fff;
  padding:9px 16px;
  border-radius:4px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.6px;
}
.btn-compras:hover { background:#0f1d33; }

/* ============================================
   MENU BAR (navy)
   ============================================ */
.menu-bar {
  background:#1a2e4a;
  border-bottom:3px solid #f57c00;
}
.menu-bar .wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.menu-nav {
  display:flex;
  align-items:center;
  gap:4px;
}
.menu-nav a {
  display:inline-block;
  padding:16px 20px;
  color:#cbd5e1;
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
  transition:all .15s;
  position:relative;
}
.menu-nav a:hover { color:#fff; background:rgba(255,255,255,.06); }
.menu-nav a.active {
  color:#fff;
  background:rgba(245,124,0,.15);
}
.menu-nav a.active::after {
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height:3px;
  background:#f57c00;
}

.social-icons { display:flex; align-items:center; gap:6px; }
.social-icons a {
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  color:#cbd5e1;
  border-radius:50%;
  transition:all .15s;
}
.social-icons a:hover { color:#f57c00; background:rgba(255,255,255,.06); }
.social-icons svg { width:16px; height:16px; }

/* ============================================
   HOME BANNER (hero with orange CTA)
   ============================================ */
.hero-banner {
  background:linear-gradient(to right, #fff 0%, #fff 45%, #e8edf3 100%);
  border-bottom:3px solid #f57c00;
  overflow:hidden;
}
.hero-banner .wrap {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
  min-height:340px;
  padding-top:40px;
  padding-bottom:40px;
}
.hero-text h1 {
  font-size:52px;
  font-weight:900;
  color:#1a2e4a;
  line-height:1.05;
  letter-spacing:-1px;
  text-transform:uppercase;
}
.hero-text .orange-line {
  width:90px; height:5px;
  background:#f57c00;
  margin:18px 0 22px;
  border-radius:3px;
}
.hero-text p {
  font-size:18px;
  color:#475569;
  margin-bottom:28px;
  max-width:440px;
  line-height:1.5;
}
.hero-cta {
  display:inline-flex; align-items:center; gap:8px;
  background:#f57c00;
  color:#fff;
  padding:18px 36px;
  font-size:15px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1.5px;
  border-radius:4px;
  box-shadow:0 4px 14px rgba(245,124,0,.35);
  transition:all .15s;
}
.hero-cta:hover { background:#e56b00; transform:translateY(-1px); box-shadow:0 6px 18px rgba(245,124,0,.45); }
.hero-image {
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 8px 30px rgba(15,29,51,.18);
  aspect-ratio:16/10;
  background:#1a2e4a center/cover no-repeat;
  position:relative;
}
.hero-image::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(135deg,transparent 0%,rgba(26,46,74,.45) 100%);
  pointer-events:none;
}

/* ============================================
   TRUST STRIP (3 columns under banner)
   ============================================ */
.trust-strip {
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}
.trust-strip .wrap {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  padding:22px 20px;
}
.trust-item {
  display:flex;
  align-items:center;
  gap:14px;
  position:relative;
}
.trust-item + .trust-item::before {
  content:'';
  position:absolute; left:-12px; top:50%;
  width:1px; height:34px;
  background:#e5e7eb;
  transform:translateY(-50%);
}
.trust-icon {
  width:48px; height:48px;
  border-radius:50%;
  background:#f4f5f7;
  display:flex; align-items:center; justify-content:center;
  font-size:22px;
  flex-shrink:0;
}
.trust-text strong {
  display:block;
  color:#1a2e4a;
  font-size:14px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.trust-text span { font-size:12px; color:#64748b; }

/* ============================================
   SECTIONS — generic
   ============================================ */
.section-title {
  font-size:24px;
  font-weight:800;
  color:#1a2e4a;
  text-transform:uppercase;
  letter-spacing:.5px;
  position:relative;
  padding-bottom:12px;
  margin-bottom:22px;
}
.section-title::after {
  content:''; position:absolute;
  left:0; bottom:0;
  width:50px; height:3px;
  background:#f57c00;
  border-radius:2px;
}

/* ============================================
   CATEGORIAS GRID
   ============================================ */
.cat-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.cat-card {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:22px 12px 16px;
  text-align:center;
  transition:all .15s;
  display:block;
}
.cat-card:hover {
  border-color:#1a2e4a;
  transform:translateY(-2px);
  box-shadow:0 6px 18px rgba(15,29,51,.08);
}
.cat-card .ico {
  width:56px; height:56px;
  border-radius:50%;
  background:#1a2e4a;
  color:#fff;
  margin:0 auto 12px;
  display:flex; align-items:center; justify-content:center;
  font-size:18px;
  font-weight:800;
  letter-spacing:1px;
  transition:all .15s;
}
.cat-card:hover .ico { background:#f57c00; }
.cat-card .nome {
  font-weight:700;
  color:#1a2e4a;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.cat-card .qtd {
  font-size:11px;
  color:#64748b;
  margin-top:4px;
  font-weight:500;
}

/* ============================================
   LOTE CARD (grid item)
   ============================================ */
.lotes-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.lote-card {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:8px;
  overflow:hidden;
  transition:all .2s;
  display:flex;
  flex-direction:column;
}
.lote-card:hover {
  transform:translateY(-3px);
  box-shadow:0 10px 28px rgba(15,29,51,.12);
  border-color:#1a2e4a;
}
.lote-card > a { display:block; flex:1; }

.lote-img {
  position:relative;
  aspect-ratio:4/3;
  background:#e8edf3 center/cover no-repeat;
  border-bottom:1px solid #e5e7eb;
}
.lote-img-placeholder {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  color:#94a3b8;
  background:linear-gradient(135deg,#f4f5f7 0%,#e8edf3 100%);
}
.lote-img-placeholder svg { width:70px; height:70px; }
.lote-badge {
  position:absolute; top:10px; left:10px;
  padding:5px 12px;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
  border-radius:4px;
  color:#fff;
  background:#64748b;
}
.lote-badge.aberto    { background:#16a34a; }
.lote-badge.aguardando{ background:#64748b; }
.lote-badge.encerrado { background:#ef4444; }
.lote-badge.arrematado{ background:#1a2e4a; }
.lote-numero {
  position:absolute; top:10px; right:10px;
  padding:5px 10px;
  background:rgba(15,29,51,.85);
  color:#fff;
  font-size:11px;
  font-weight:700;
  border-radius:4px;
  letter-spacing:.5px;
}

.lote-info { padding:16px 18px; }
.lote-cat {
  font-size:11px;
  color:#f57c00;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:6px;
}
.lote-titulo {
  font-size:15px;
  font-weight:700;
  color:#1a2e4a;
  line-height:1.3;
  margin-bottom:6px;
  min-height:38px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.lote-marca {
  font-size:12px;
  color:#64748b;
  margin-bottom:12px;
}
.lote-divider {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  border-top:1px solid #f1f5f9;
  padding-top:12px;
}
.lote-valor .label {
  display:block;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.8px;
  color:#64748b;
  font-weight:600;
  margin-bottom:2px;
}
.lote-valor .v {
  font-size:20px;
  font-weight:800;
  color:#f57c00;
}
.lote-timer {
  font-size:12px;
  font-weight:700;
  color:#16a34a;
  background:#f0fdf4;
  padding:6px 10px;
  border-radius:4px;
  white-space:nowrap;
}
.lote-timer.warn   { color:#f57c00; background:#fff7ed; }
.lote-timer.danger { color:#dc2626; background:#fef2f2; }
.lote-timer.flash  { animation:pulse 1s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

.lote-actions { padding:0 18px 16px; }
.btn-block {
  display:block;
  width:100%;
  padding:12px;
  text-align:center;
  border-radius:4px;
  font-weight:700;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.8px;
  transition:all .15s;
}
.btn-block.primary {
  background:#1a2e4a;
  color:#fff;
}
.btn-block.primary:hover { background:#0f1d33; }

/* lote-row (list-style fallback used by index) */
.lote-row {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:16px;
  margin-bottom:12px;
  display:grid;
  grid-template-columns:140px 1fr auto;
  gap:18px;
  align-items:center;
  transition:all .15s;
}
.lote-row:hover { border-color:#1a2e4a; box-shadow:0 4px 14px rgba(15,29,51,.08); }
.lote-row .row-img {
  width:140px; height:100px;
  border-radius:6px;
  background:#e8edf3 center/cover no-repeat;
  position:relative;
}
.lote-row h3 { font-size:16px; margin-bottom:4px; }
.lote-row .row-meta { font-size:12px; color:#64748b; }
.lote-row .row-price { text-align:right; }
.lote-row .row-price .v { font-size:22px; font-weight:800; color:#f57c00; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-de-lance {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:#f57c00;
  color:#fff;
  padding:14px 28px;
  border-radius:4px;
  font-weight:800;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1px;
  box-shadow:0 4px 12px rgba(245,124,0,.3);
  transition:all .15s;
}
.btn-de-lance:hover { background:#e56b00; transform:translateY(-1px); }

.btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent;
  color:#1a2e4a;
  border:2px solid #1a2e4a;
  padding:11px 22px;
  border-radius:4px;
  font-weight:700;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.8px;
  transition:all .15s;
}
.btn-outline:hover { background:#1a2e4a; color:#fff; }

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background:#0f1d33;
  color:#cbd5e1;
  padding:50px 0 0;
  margin-top:60px;
  border-top:4px solid #f57c00;
}
.main-footer .grid {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:36px;
}
.main-footer .logo-tl-ico { background:#fff; }
.main-footer .logo-tl-text .tl-cima { color:#94a3b8; }
.main-footer .logo-tl-text .tl-baixo { color:#fff; }
.main-footer p { color:#94a3b8; font-size:13px; line-height:1.6; }
.main-footer h4 {
  color:#fff;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:16px;
  padding-bottom:10px;
  border-bottom:2px solid #1a2e4a;
}
.main-footer ul li {
  padding:6px 0;
  font-size:13px;
}
.main-footer ul li a {
  color:#cbd5e1;
  transition:color .15s;
}
.main-footer ul li a:hover { color:#f57c00; }
.main-footer .bottom {
  border-top:1px solid #1a2e4a;
  padding:20px 0;
  text-align:center;
}
.main-footer .bottom p { font-size:12px; color:#64748b; }

/* ============================================
   FORM ELEMENTS (login, cadastro, contato)
   ============================================ */
.form-card {
  background:#fff;
  border-radius:8px;
  padding:36px;
  max-width:480px;
  margin:40px auto;
  border-top:4px solid #f57c00;
  box-shadow:0 4px 20px rgba(15,29,51,.08);
}
.form-card h1 {
  font-size:24px;
  color:#1a2e4a;
  text-align:center;
  margin-bottom:8px;
}
.form-card .subtitle {
  text-align:center;
  color:#64748b;
  margin-bottom:28px;
  font-size:14px;
}
.form-group { margin-bottom:18px; }
.form-group label {
  display:block;
  font-size:12px;
  font-weight:700;
  color:#1a2e4a;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%;
  padding:12px 14px;
  border:1px solid #cbd5e1;
  border-radius:4px;
  font-size:14px;
  color:#1f2937;
  background:#fff;
  transition:border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:none;
  border-color:#1a2e4a;
  box-shadow:0 0 0 3px rgba(26,46,74,.08);
}

/* ============================================
   FLASH MESSAGES
   ============================================ */
.flash {
  padding:14px 18px;
  border-radius:6px;
  margin-bottom:18px;
  font-size:14px;
  font-weight:500;
}
.flash.success { background:#f0fdf4; color:#166534; border-left:4px solid #16a34a; }
.flash.error   { background:#fef2f2; color:#991b1b; border-left:4px solid #dc2626; }
.flash.info    { background:#eff6ff; color:#1e40af; border-left:4px solid #2563eb; }
.flash.warning { background:#fff7ed; color:#9a3412; border-left:4px solid #f57c00; }

/* ============================================
   WhatsApp float
   ============================================ */
.wa-float {
  position:fixed;
  bottom:24px; right:24px;
  width:60px; height:60px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 20px rgba(37,211,102,.4);
  z-index:1000;
  transition:transform .2s;
}
.wa-float:hover { transform:scale(1.1); }
.wa-float svg { width:32px; height:32px; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display:flex; justify-content:center; gap:6px;
  margin:30px 0;
}
.pagination a, .pagination span {
  padding:10px 14px;
  border:1px solid #e5e7eb;
  border-radius:4px;
  color:#1a2e4a;
  font-size:13px;
  font-weight:600;
  background:#fff;
  transition:all .15s;
}
.pagination a:hover { border-color:#1a2e4a; background:#1a2e4a; color:#fff; }
.pagination .current { background:#f57c00; color:#fff; border-color:#f57c00; }

/* ============================================
   LOTE DETAIL PAGE
   ============================================ */
.lote-detail {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:32px;
  margin:30px 0;
}
.lote-gallery {
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  border:1px solid #e5e7eb;
}
.lote-gallery .main-img {
  aspect-ratio:4/3;
  background:#e8edf3 center/cover no-repeat;
}
.lote-side {
  background:#fff;
  border-radius:8px;
  padding:28px;
  border:1px solid #e5e7eb;
  border-top:4px solid #f57c00;
}
.lote-side h1 { font-size:22px; color:#1a2e4a; margin-bottom:6px; }
.lote-side .lote-cat { margin-bottom:10px; }
.lance-box {
  background:#f4f5f7;
  border:2px solid #1a2e4a;
  border-radius:8px;
  padding:20px;
  margin:20px 0;
  text-align:center;
}
.lance-box .label {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:1.2px;
  color:#64748b;
  font-weight:700;
}
.lance-box .valor {
  font-size:36px;
  font-weight:900;
  color:#f57c00;
  margin:6px 0;
}
.lance-box .timer-big {
  font-size:18px;
  font-weight:700;
  color:#16a34a;
  padding:8px 14px;
  background:#fff;
  border-radius:6px;
  display:inline-block;
  margin-top:8px;
}

/* ============================================
   ADMIN STYLES (minimal, clean)
   ============================================ */
.admin-shell { display:grid; grid-template-columns:240px 1fr; min-height:100vh; }
.admin-sidebar {
  background:#0f1d33;
  color:#cbd5e1;
  padding:24px 0;
}
.admin-sidebar h2 {
  color:#fff;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:1.5px;
  padding:0 24px 18px;
  border-bottom:1px solid #1a2e4a;
  margin-bottom:14px;
}
.admin-sidebar a {
  display:block;
  padding:11px 24px;
  color:#cbd5e1;
  font-size:13px;
  font-weight:500;
  transition:all .15s;
  border-left:3px solid transparent;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
  background:#1a2e4a;
  color:#fff;
  border-left-color:#f57c00;
}
.admin-main { padding:30px 36px; background:#f4f5f7; }
.admin-main h1 { font-size:24px; color:#1a2e4a; margin-bottom:20px; }

.admin-card {
  background:#fff;
  border-radius:8px;
  padding:24px;
  border:1px solid #e5e7eb;
  margin-bottom:20px;
}
.admin-table {
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  border:1px solid #e5e7eb;
}
.admin-table th {
  background:#f4f5f7;
  color:#1a2e4a;
  padding:12px 16px;
  text-align:left;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.6px;
  font-weight:700;
  border-bottom:2px solid #e5e7eb;
}
.admin-table td {
  padding:12px 16px;
  border-bottom:1px solid #f1f5f9;
  font-size:14px;
}
.admin-table tr:hover { background:#f9fafb; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:1024px) {
  .lotes-grid { grid-template-columns:repeat(3,1fr); }
  .cat-grid { grid-template-columns:repeat(4,1fr); }
  .main-footer .grid { grid-template-columns:1fr 1fr; }
  .hero-text h1 { font-size:40px; }
}
@media (max-width:768px) {
  .topbar-inner { flex-direction:column; gap:14px; padding:14px 0; }
  .auth-box-top { flex-wrap:wrap; justify-content:center; }
  .auth-input input { width:140px; }
  .menu-bar .wrap { flex-direction:column; }
  .menu-nav { flex-wrap:wrap; justify-content:center; }
  .menu-nav a { padding:12px 14px; font-size:12px; }
  .hero-banner .wrap { grid-template-columns:1fr; }
  .hero-text h1 { font-size:32px; }
  .lote-detail { grid-template-columns:1fr; }
  .lotes-grid { grid-template-columns:repeat(2,1fr); }
  .cat-grid { grid-template-columns:repeat(3,1fr); }
  .trust-strip .wrap { grid-template-columns:1fr; }
  .trust-item + .trust-item::before { display:none; }
  .main-footer .grid { grid-template-columns:1fr; gap:24px; }
}
@media (max-width:480px) {
  .lotes-grid { grid-template-columns:1fr; }
  .cat-grid { grid-template-columns:repeat(2,1fr); }
  .hero-text h1 { font-size:26px; }
  .form-card { padding:24px; }
}

/* ============================================
   ADMIN LAYOUT (full)
   ============================================ */
.admin-layout {
  display:grid;
  grid-template-columns:240px 1fr;
  min-height:calc(100vh - 90px);
  background:#f4f5f7;
}
.admin-sidebar {
  background:#0f1d33;
  color:#cbd5e1;
  padding:20px 0;
  position:sticky;
  top:0;
  align-self:start;
  min-height:calc(100vh - 90px);
}
.admin-sidebar h3 {
  color:#94a3b8;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  padding:18px 22px 10px;
  border-bottom:1px solid #1a2e4a;
  margin-bottom:6px;
}
.admin-sidebar h3:first-child { margin-top:0; padding-top:6px; }
.admin-sidebar a {
  display:flex;
  align-items:center;
  gap:12px;
  padding:11px 22px;
  color:#cbd5e1;
  font-size:13px;
  font-weight:500;
  transition:all .15s;
  border-left:3px solid transparent;
  text-decoration:none;
}
.admin-sidebar a svg { width:17px; height:17px; flex-shrink:0; opacity:.8; }
.admin-sidebar a:hover {
  background:rgba(255,255,255,.04);
  color:#fff;
}
.admin-sidebar a.active {
  background:#1a2e4a;
  color:#fff;
  border-left-color:#f57c00;
}
.admin-sidebar a.active svg { opacity:1; color:#f57c00; }

.admin-content {
  padding:32px 36px;
  background:#f4f5f7;
}
.admin-content h1 {
  font-size:24px;
  font-weight:800;
  color:#1a2e4a;
  margin-bottom:6px;
  letter-spacing:-.3px;
}
.admin-content h2 {
  font-size:18px;
  font-weight:700;
  color:#1a2e4a;
  margin:24px 0 14px;
}

/* Stats grid */
.admin-stats {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin:20px 0 30px;
}
.stat-card {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:18px 20px;
  border-left:4px solid #f57c00;
}
.stat-card .ico { display:none; }
.stat-card .n {
  font-size:28px;
  font-weight:800;
  color:#1a2e4a;
  line-height:1.1;
  margin-bottom:4px;
}
.stat-card .l {
  font-size:11px;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:600;
}

/* Admin buttons */
.btn-primary {
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:#f57c00;
  color:#fff;
  padding:10px 18px;
  border-radius:4px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  text-decoration:none;
  border:none;
  cursor:pointer;
}
.btn-primary:hover { background:#e56b00; }
.btn-secondary {
  background:#1a2e4a;
  color:#fff;
  padding:10px 18px;
  border-radius:4px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  text-decoration:none;
}
.btn-secondary:hover { background:#0f1d33; }
.btn-submit {
  background:#f57c00;
  color:#fff;
  padding:11px 22px;
  border-radius:4px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  border:none;
  cursor:pointer;
}
.btn-submit:hover { background:#e56b00; }
.btn-sm {
  display:inline-block;
  padding:6px 12px;
  border-radius:4px;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  text-decoration:none;
}

/* Admin tables already styled — refine */
.admin-table th {
  font-size:11px;
  letter-spacing:.8px;
}
.admin-table td { font-size:13px; }

/* responsive admin */
@media (max-width:900px) {
  .admin-layout { grid-template-columns:1fr; }
  .admin-sidebar {
    position:relative;
    min-height:auto;
    padding:10px 0;
  }
  .admin-sidebar a { padding:10px 18px; }
  .admin-stats { grid-template-columns:repeat(2,1fr); }
  .admin-content { padding:20px; }
}

/* ============================================
   LOTES LISTING PAGE
   ============================================ */
.page-header {
  background:linear-gradient(135deg,#1a2e4a 0%,#0f1d33 100%);
  color:#fff;
  padding:40px 0 36px;
  border-bottom:4px solid #f57c00;
}
.page-header h1 {
  font-size:28px;
  font-weight:800;
  letter-spacing:-.5px;
  margin-bottom:6px;
}
.page-header p {
  color:#cbd5e1;
  font-size:14px;
}
.lotes-page { padding:30px 0 60px; background:#f4f5f7; min-height:60vh; }

.filtros-bar {
  display:flex; gap:10px; flex-wrap:wrap;
  background:#fff;
  padding:14px;
  border-radius:8px;
  box-shadow:0 2px 6px rgba(15,29,51,.05);
  margin-bottom:18px;
}
.filtro-busca {
  flex:1; min-width:240px;
  padding:10px 14px;
  border:1px solid #e5e7eb;
  border-radius:4px;
  font-size:14px;
}
.filtro-sel {
  padding:10px 14px;
  border:1px solid #e5e7eb;
  border-radius:4px;
  font-size:14px;
  background:#fff;
  min-width:170px;
}
.lotes-resultado {
  display:flex; justify-content:space-between;
  font-size:13px; color:#64748b;
  margin-bottom:18px;
  padding:0 4px;
}
.lotes-resultado strong { color:#1a2e4a; }
.empty-state {
  background:#fff;
  padding:50px 20px;
  text-align:center;
  border-radius:8px;
  border:1px solid #e5e7eb;
}
.empty-state p { color:#64748b; margin-bottom:20px; font-size:15px; }

.paginacao {
  display:flex; justify-content:center; gap:6px;
  margin-top:30px; flex-wrap:wrap;
}
.pag-link {
  padding:9px 14px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:4px;
  color:#1a2e4a;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  transition:all .15s;
}
.pag-link:hover { border-color:#f57c00; color:#f57c00; }
.pag-link.active {
  background:#f57c00; color:#fff; border-color:#f57c00;
}

/* ============================================
   LOTE DETAIL — Specs panel
   ============================================ */
.lote-detalhe .specs {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:8px;
  padding:18px 20px;
}
.specs-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
  border-bottom:1px solid #f1f5f9;
  font-size:14px;
}
.specs-row:last-child { border-bottom:none; }
.specs-row .k {
  color:#64748b;
  font-weight:500;
}
.specs-row .v {
  color:#1a2e4a;
  font-weight:700;
  text-align:right;
}
.lote-detalhe { padding:24px 0 50px; background:#f4f5f7; min-height:60vh; }
.lote-detalhe .wrap > p:first-of-type { font-size:13px; color:#64748b; }

/* ============================================
   CONTATO PAGE
   ============================================ */
.contato-page { padding:30px 0 50px; background:#f4f5f7; }
.contato-grid {
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap:24px;
  margin-bottom:30px;
}
.contato-info-card {
  background:linear-gradient(160deg,#1a2e4a 0%,#0f1d33 100%);
  color:#fff;
  padding:28px;
  border-radius:10px;
  box-shadow:0 4px 14px rgba(15,29,51,.12);
}
.contato-info-card h3 {
  color:#f57c00;
  font-size:18px;
  font-weight:700;
  margin-bottom:22px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.info-item {
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:12px 0;
  font-size:14px;
  line-height:1.5;
}
.info-item strong {
  display:block;
  color:#f57c00;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:3px;
  font-weight:700;
}
.info-item span { color:#e2e8f0; }
.info-ico {
  flex-shrink:0;
  width:36px; height:36px;
  background:rgba(245,124,0,.15);
  color:#f57c00;
  border-radius:8px;
  display:flex; align-items:center; justify-content:center;
}
.info-item-empresa { border-top:1px solid rgba(255,255,255,.1); margin-top:6px; padding-top:18px; }

.btn-whatsapp-full {
  display:flex; align-items:center; justify-content:center; gap:10px;
  background:#25D366;
  color:#fff;
  font-weight:700;
  padding:14px 20px;
  border-radius:8px;
  margin-top:22px;
  text-decoration:none;
  font-size:15px;
  transition:background .15s;
}
.btn-whatsapp-full:hover { background:#20bc5a; }

.contato-form {
  background:#fff;
  padding:28px;
  border-radius:10px;
  box-shadow:0 4px 14px rgba(15,29,51,.05);
}
.contato-form h3 {
  color:#1a2e4a;
  font-size:18px;
  margin-bottom:22px;
  padding-bottom:12px;
  border-bottom:2px solid #f57c00;
  display:inline-block;
}
.contato-form .form-row { margin-bottom:16px; }
.contato-form .form-row-2 {
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
.contato-form label {
  display:block;
  font-size:12px;
  color:#64748b;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.3px;
  margin-bottom:6px;
}
.contato-form input,
.contato-form textarea {
  width:100%;
  padding:11px 14px;
  border:1px solid #e5e7eb;
  border-radius:4px;
  font-size:14px;
  font-family:inherit;
  transition:border-color .15s;
}
.contato-form input:focus,
.contato-form textarea:focus {
  outline:none;
  border-color:#f57c00;
}
.btn-large { padding:14px 28px !important; font-size:15px !important; width:100%; }

/* MAPA */
.mapa-wrapper {
  background:#fff;
  padding:24px;
  border-radius:10px;
  box-shadow:0 4px 14px rgba(15,29,51,.05);
}
.mapa-wrapper h3 {
  color:#1a2e4a;
  font-size:18px;
  margin-bottom:6px;
  padding-bottom:10px;
  border-bottom:2px solid #f57c00;
  display:inline-block;
}
.mapa-endereco {
  color:#64748b;
  font-size:14px;
  margin: 10px 0 16px;
}
.mapa-frame {
  border-radius:8px;
  overflow:hidden;
  border:1px solid #e5e7eb;
}
.mapa-link {
  text-align:right;
  margin-top:14px;
  font-size:13px;
}
.mapa-link a {
  color:#f57c00;
  font-weight:600;
  text-decoration:none;
}
.mapa-link a:hover { text-decoration:underline; }

@media (max-width: 768px) {
  .contato-grid { grid-template-columns: 1fr; }
  .contato-form .form-row-2 { grid-template-columns: 1fr; }
}

/* ============================================
   LOTE DETALHE - ESTILO SANTORO
   ============================================ */
.lote-detalhe-page { padding:24px 0 60px; background:#f4f5f7; }
.breadcrumb-lote {
  font-size:13px; color:#64748b; margin-bottom:16px;
}
.breadcrumb-lote a { color:#1a2e4a; text-decoration:none; }
.breadcrumb-lote a:hover { text-decoration:underline; }
.breadcrumb-lote strong { color:#1a2e4a; }

.lote-top-bar {
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:16px;
  background:#fff;
  padding:14px 20px;
  border-radius:6px;
  border:1px solid #e5e7eb;
  margin-bottom:14px;
}
.badges-grupo { display:flex; gap:8px; }
.badge-tipo {
  font-size:11px;
  font-weight:700;
  padding:6px 14px;
  border-radius:3px;
  letter-spacing:.5px;
}
.badge-judicial { background:#16a34a; color:#fff; }
.badge-online   { background:#fff; color:#1a2e4a; border:1.5px solid #1a2e4a; }
.badge-praca    { background:#fff; color:#64748b; border:1.5px solid #cbd5e1; }

.stats-grupo {
  display:flex; gap:24px; justify-content:center;
  color:#64748b; font-size:13px;
}
.stat-item { display:flex; align-items:center; gap:6px; }
.stat-item strong { color:#1a2e4a; }

.nav-grupo { display:flex; align-items:center; gap:8px; background:#f4f5f7; border-radius:4px; padding:4px; }
.nav-btn {
  width:32px; height:32px;
  display:flex; align-items:center; justify-content:center;
  background:#fff; border:1px solid #cbd5e1;
  border-radius:3px;
  color:#1a2e4a; font-size:18px; font-weight:700;
  text-decoration:none;
}
.nav-btn:hover:not(.disabled) { background:#1a2e4a; color:#fff; border-color:#1a2e4a; }
.nav-btn.disabled { opacity:.4; pointer-events:none; }
.nav-label { font-size:13px; color:#1a2e4a; font-weight:600; padding:0 8px; }

.lote-titulo-principal {
  font-size:22px;
  color:#1a2e4a;
  margin:0 0 14px;
  font-weight:700;
}

.lote-main-grid {
  display:grid;
  grid-template-columns: 1.2fr 1fr 320px;
  gap:14px;
  margin-bottom:20px;
}

/* COLUNA 1 — foto principal */
.col-foto-principal { background:#fff; padding:12px; border-radius:6px; border:1px solid #e5e7eb; }
.foto-principal-box {
  width:100%;
  height:340px;
  background:#1a2e4a center/cover no-repeat;
  border-radius:4px;
  position:relative;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.foto-principal-box .sem-foto { font-size:80px; color:rgba(255,255,255,.3); }
.foto-watermark {
  position:absolute;
  bottom:14px; left:14px;
  background:rgba(26,46,74,.7);
  color:#fff;
  padding:4px 10px;
  font-size:11px;
  font-weight:600;
  border-radius:3px;
  letter-spacing:.5px;
  pointer-events:none;
}
.thumbs-strip {
  display:flex; gap:6px; margin-top:10px;
  overflow-x:auto;
}
.thumb-item {
  width:74px; height:56px;
  object-fit:cover;
  border-radius:3px;
  cursor:pointer;
  border:2px solid transparent;
  flex-shrink:0;
}
.thumb-item.active { border-color:#f57c00; }
.thumb-item:hover { border-color:#1a2e4a; }

/* COLUNA 2 — zoom + lances */
.col-lances { background:#fff; padding:12px; border-radius:6px; border:1px solid #e5e7eb; }
.foto-zoom-box {
  width:100%;
  height:140px;
  background:#f4f5f7 center/cover no-repeat;
  border-radius:4px;
  margin-bottom:12px;
  border:1px solid #e5e7eb;
  position:relative;
}
.foto-zoom-box.sem-foto-zoom {
  background:#1a2e4a;
  display:flex; align-items:center; justify-content:center;
  border-color:#1a2e4a;
}
.foto-zoom-box .zoom-icon { font-size:48px; opacity:.35; }
.foto-zoom-box .zoom-watermark {
  position:absolute;
  bottom:8px; left:8px;
  background:rgba(0,0,0,.35);
  color:#fff;
  padding:3px 8px;
  font-size:10px;
  font-weight:600;
  border-radius:3px;
  letter-spacing:.5px;
}
.form-lance-santoro {}
.quick-bids { display:flex; flex-direction:column; gap:6px; margin-bottom:10px; }
.quick-bid-btn {
  background:#fff;
  color:#1a2e4a;
  border:1.5px solid #cbd5e1;
  padding:9px 12px;
  font-size:13px;
  font-weight:700;
  border-radius:3px;
  cursor:pointer;
  text-align:left;
  display:flex; justify-content:space-between; align-items:center;
  transition:all .15s;
}
.quick-bid-btn small { font-weight:500; color:#64748b; font-size:11px; }
.quick-bid-btn:hover { background:#1a2e4a; color:#fff; border-color:#1a2e4a; }
.quick-bid-btn:hover small { color:#cbd5e1; }
.custom-bid { margin-bottom:10px; }
.custom-bid label { display:block; font-size:12px; color:#64748b; margin-bottom:5px; font-weight:600; }
.custom-bid input {
  width:100%;
  padding:10px 12px;
  border:1.5px solid #cbd5e1;
  border-radius:3px;
  font-size:14px;
}
.custom-bid input:focus { outline:none; border-color:#f57c00; }
.btn-confirmar-lance {
  width:100%;
  background:#dc2626;
  color:#fff;
  border:none;
  padding:14px;
  font-size:15px;
  font-weight:700;
  border-radius:3px;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center; gap:8px;
  letter-spacing:.5px;
  transition:background .15s;
}
.btn-confirmar-lance:hover { background:#b91c1c; }
.lance-msg { margin-top:10px; font-size:13px; text-align:center; min-height:18px; }
.lance-msg.ok  { color:#16a34a; }
.lance-msg.err { color:#dc2626; }

.login-para-dar-lance, .lote-encerrado-msg {
  background:#fff7ed; border:1.5px solid #f57c00;
  padding:18px; border-radius:6px; text-align:center;
}
.login-para-dar-lance p { color:#9a3412; margin-bottom:12px; }
.login-para-dar-lance .btn-primary,
.login-para-dar-lance .btn-ghost { display:inline-block; margin:0 4px; }
.lote-encerrado-msg { background:#fef2f2; border-color:#dc2626; color:#991b1b; }

/* COLUNA 3 — timer preto + lance atual */
.col-timer { display:flex; flex-direction:column; gap:12px; }
.timer-preto {
  background:#0a0a0a;
  color:#fff;
  padding:18px 16px;
  border-radius:6px;
  text-align:center;
}
.timer-titulo {
  font-size:12px;
  letter-spacing:1px;
  color:#cbd5e1;
  margin-bottom:12px;
  font-weight:600;
}
.timer-digits { display:flex; align-items:flex-start; justify-content:center; gap:4px; }
.td-bloco { display:flex; flex-direction:column; align-items:center; min-width:42px; }
.td-num {
  font-size:26px;
  font-weight:700;
  line-height:1;
  font-variant-numeric:tabular-nums;
  font-family: 'Courier New', monospace;
}
.td-lbl { font-size:9px; color:#94a3b8; letter-spacing:1px; margin-top:4px; }
.td-sep { font-size:24px; font-weight:700; padding-top:0; }
.timer-digits.encerrado .td-num { color:#dc2626; }

.lance-atual-box {
  background:#fff;
  border:2px dashed #dc2626;
  padding:18px 16px;
  border-radius:6px;
  text-align:center;
}
.la-label { font-size:12px; color:#64748b; font-weight:600; letter-spacing:.5px; margin-bottom:6px; }
.la-valor { font-size:24px; font-weight:700; color:#dc2626; margin-bottom:6px; }
.la-user { font-size:13px; color:#1a2e4a; }
.la-user strong { color:#f57c00; }
.la-user-empty { color:#94a3b8; font-style:italic; }

.btn-fav {
  background:#fff; color:#1a2e4a;
  border:1.5px solid #f57c00;
  padding:11px;
  border-radius:4px;
  font-weight:700;
  cursor:pointer;
  font-size:14px;
}
.btn-fav.ativo { background:#f57c00; color:#fff; }
.btn-wpp-lote {
  display:block;
  background:#25D366;
  color:#fff;
  text-align:center;
  padding:11px;
  border-radius:4px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
}
.btn-wpp-lote:hover { background:#20bc5a; }

/* INFO PANEL */
.info-panel {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:6px;
  padding:18px 22px;
  margin-bottom:20px;
}
.info-panel h3 {
  color:#1a2e4a; font-size:16px;
  margin-bottom:14px;
  padding-bottom:10px;
  border-bottom:2px solid #f57c00;
  display:inline-block;
}
.info-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px 30px;
}
.info-cell { display:flex; flex-direction:column; gap:2px; }
.ic-label { font-size:11px; color:#64748b; text-transform:uppercase; letter-spacing:.5px; font-weight:600; }
.ic-val { font-size:14px; color:#1a2e4a; font-weight:600; }

/* TABS */
.tabs-lote {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:6px;
  overflow:hidden;
}
.tabs-nav {
  display:flex;
  border-bottom:1px solid #e5e7eb;
  background:#f4f5f7;
}
.tab-btn {
  flex:1;
  background:transparent;
  border:none;
  padding:14px 16px;
  cursor:pointer;
  font-size:13px;
  font-weight:700;
  color:#64748b;
  letter-spacing:.5px;
  border-bottom:3px solid transparent;
  transition:all .15s;
}
.tab-btn:hover { color:#1a2e4a; background:#fff; }
.tab-btn.active {
  color:#1a2e4a;
  background:#fff;
  border-bottom-color:#f57c00;
}
.tab-panel { display:none; padding:24px; line-height:1.7; color:#334155; }
.tab-panel.active { display:block; }
.tab-panel .vazio { color:#94a3b8; font-style:italic; }
.ficha-tecnica { margin-top:22px; padding-top:18px; border-top:1px solid #e5e7eb; }
.ficha-tecnica h4 { color:#1a2e4a; font-size:14px; margin-bottom:12px; text-transform:uppercase; letter-spacing:.5px; }
.ft-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:8px 20px; }
.ft-grid > div { font-size:13px; display:flex; justify-content:space-between; padding:6px 0; border-bottom:1px dashed #e5e7eb; }
.ft-grid span { color:#64748b; }
.ft-grid strong { color:#1a2e4a; }

.tabela-lances { width:100%; border-collapse:collapse; font-size:13px; }
.tabela-lances th, .tabela-lances td {
  padding:10px 14px; text-align:left;
  border-bottom:1px solid #e5e7eb;
}
.tabela-lances th { background:#f4f5f7; color:#64748b; font-weight:700; text-transform:uppercase; font-size:11px; letter-spacing:.5px; }
.tabela-lances tr.vencedor { background:#f0fdf4; }
.tabela-lances tr.vencedor td:nth-child(3) strong { color:#16a34a; }

.obs-list { list-style:disc; padding-left:22px; }
.obs-list li { margin-bottom:10px; }
.visita-info p { margin-bottom:14px; }
.visita-info a { color:#f57c00; text-decoration:none; font-weight:600; }

@media (max-width: 1000px) {
  .lote-main-grid { grid-template-columns: 1fr; }
  .info-grid, .ft-grid { grid-template-columns: 1fr 1fr; }
  .lote-top-bar { grid-template-columns: 1fr; text-align:center; }
  .stats-grupo, .nav-grupo, .badges-grupo { justify-content:center; }
  .tabs-nav { overflow-x:auto; }
  .tab-btn { white-space:nowrap; }
}

/* HOME — Onde Estamos */
.home-mapa { padding: 20px 0 60px; background:#f4f5f7; }
.home-mapa-grid {
  display:grid;
  grid-template-columns: 1fr 1.6fr;
  gap:20px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:8px;
  overflow:hidden;
}
.home-mapa-info {
  padding:30px;
  background:linear-gradient(160deg,#1a2e4a 0%,#0f1d33 100%);
  color:#fff;
}
.home-mapa-info h3 {
  color:#f57c00;
  font-size:20px;
  margin-bottom:16px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.home-mapa-info p { margin-bottom:14px; line-height:1.6; font-size:14px; color:#e2e8f0; }
.home-mapa-info p strong { color:#f57c00; display:inline-block; margin-bottom:2px; }
.home-mapa-info small { color:#94a3b8; }
.home-mapa-info a { color:#f57c00; text-decoration:none; font-weight:600; }
.home-mapa-frame { background:#000; min-height:380px; }
.home-mapa-frame iframe { display:block; width:100%; height:100%; min-height:380px; }
@media (max-width:900px) {
  .home-mapa-grid { grid-template-columns:1fr; }
}

/* ============================================
   HERO BANNER NOVO (estilo Santoro)
   ============================================ */
.hero-banner-novo { background:#fff; }
.hero-banner-img {
  width:100%;
  min-height:340px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
}
.hero-banner-overlay {
  background:linear-gradient(90deg, rgba(26,46,74,.92) 0%, rgba(26,46,74,.55) 45%, transparent 70%);
  min-height:340px;
  display:flex; align-items:center;
}
.hero-banner-text {
  max-width:1280px;
  margin:0 auto;
  padding:50px 24px;
  width:100%;
  color:#fff;
}
.hero-banner-text h1 {
  font-size:54px;
  font-weight:900;
  letter-spacing:-1px;
  line-height:1;
  text-transform:uppercase;
  margin-bottom:18px;
  max-width:520px;
  color:#ffffff !important;
  text-shadow:0 2px 12px rgba(0,0,0,.35);
}
.hero-banner-text p { color:#ffffff !important; }
.hero-orange-line {
  width:60px; height:4px;
  background:#f57c00;
  margin-bottom:18px;
}
.hero-banner-text p {
  font-size:18px;
  margin-bottom:24px;
  max-width:480px;
  color:#e2e8f0;
}
.hero-cta-btn {
  display:inline-block;
  background:#f57c00;
  color:#fff;
  padding:14px 28px;
  font-weight:700;
  font-size:15px;
  text-transform:uppercase;
  border-radius:3px;
  text-decoration:none;
  letter-spacing:.5px;
  transition:background .15s;
}
.hero-cta-btn:hover { background:#e06c00; }

.hero-strip {
  background:#1a2e4a;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  border-top:3px solid #f57c00;
}
.strip-item {
  display:flex; align-items:center; gap:12px;
  padding:16px 18px;
  color:#fff;
  border-right:1px solid rgba(255,255,255,.08);
  text-decoration:none;
  transition:background .15s;
}
.strip-item:hover { background:rgba(245,124,0,.15); }
.strip-item:last-child { border-right:none; }
.strip-icon {
  font-size:28px;
  flex-shrink:0;
  opacity:.85;
}
.strip-txt { display:flex; flex-direction:column; line-height:1.1; }
.strip-txt small { font-size:11px; color:#cbd5e1; letter-spacing:.5px; }
.strip-txt strong { font-size:18px; color:#fff; font-weight:700; margin-top:2px; }

@media (max-width:900px) {
  .hero-banner-text h1 { font-size:36px; }
  .hero-banner-text p { font-size:15px; }
  .hero-banner-overlay { background:linear-gradient(180deg, rgba(26,46,74,.92) 0%, rgba(26,46,74,.7) 100%); }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2n) { border-right:none; }
}

/* ============================================
   LIGHTBOX (zoom da foto do lote)
   ============================================ */
.foto-principal-box.clicavel { cursor: zoom-in; }
.foto-principal-box.zoomable { overflow:hidden; }
.zoom-hint {
  position:absolute;
  top:12px; right:12px;
  background:rgba(0,0,0,.6);
  color:#fff;
  padding:6px 11px;
  font-size:11px;
  font-weight:600;
  border-radius:3px;
  letter-spacing:.3px;
  pointer-events:none;
  opacity:0;
  transition:opacity .2s;
  z-index:3;
}
.foto-principal-box.clicavel:hover .zoom-hint { opacity:1; }

/* Garante que a coluna da foto seja referência pro popup */
.col-foto-principal { position:relative; }

/* Lupinha quadrada que segue o cursor (proporcional à área visível no popup) */
.zoom-lens {
  position:absolute;
  border:2px solid var(--cor-destaque, #f57c00);
  background:rgba(245,124,0,.22);
  pointer-events:none;
  opacity:0;
  transition:opacity .15s;
  z-index:5;
  left:0; top:0;
  width:120px; height:120px;
  box-sizing:border-box;
}

/* Popup grande de zoom (aparece do lado direito da foto, sem distorção) */
.zoom-popup {
  position:absolute;
  top:0;
  left:calc(100% + 14px);
  width:540px; height:420px;
  background-color:#fff;
  background-repeat:no-repeat;
  background-position:0 0;
  border:1px solid #e5e7eb;
  border-radius:8px;
  box-shadow:0 12px 36px rgba(0,0,0,.22);
  pointer-events:none;
  opacity:0;
  visibility:hidden;
  transition:opacity .18s;
  z-index:50;
}
.zoom-popup.show { opacity:1; visibility:visible; }

/* Em telas menores, esconde o popup (o lightbox por clique resolve) */
@media (max-width:1100px) {
  .zoom-popup, .zoom-lens { display:none !important; }
}

/* Dica do quadro do meio (continua mostrando foto principal estática) */
.foto-zoom-box .zoom-default-hint {
  position:absolute; bottom:8px; left:50%;
  transform:translateX(-50%);
  font-size:10px; color:#fff;
  background:rgba(0,0,0,.55);
  padding:3px 9px; border-radius:3px;
  font-weight:600; letter-spacing:.3px;
  pointer-events:none;
  white-space:nowrap;
}

.lightbox {
  display:none;
  position:fixed; inset:0;
  background:rgba(0,0,0,.92);
  z-index:9999;
  align-items:center; justify-content:center;
}
.lightbox.aberto { display:flex; }
.lightbox img {
  max-width:92vw;
  max-height:88vh;
  border-radius:4px;
  box-shadow:0 8px 40px rgba(0,0,0,.6);
}
.lb-close, .lb-prev, .lb-next {
  position:absolute;
  background:rgba(255,255,255,.12);
  color:#fff;
  border:none;
  width:54px; height:54px;
  border-radius:50%;
  font-size:32px;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .15s;
}
.lb-close { top:20px; right:24px; font-size:36px; line-height:1; }
.lb-prev  { left:24px;  top:50%; transform:translateY(-50%); }
.lb-next  { right:24px; top:50%; transform:translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background:rgba(255,255,255,.25); }
.lb-counter {
  position:absolute;
  bottom:24px; left:50%; transform:translateX(-50%);
  color:#fff;
  background:rgba(0,0,0,.5);
  padding:8px 16px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

/* ============================================
   UPLOADER FÁCIL (arrasta-e-solta) — Admin
   ============================================ */
.uploader-zona {
  border:2.5px dashed #cbd5e1;
  background:#f8fafc;
  border-radius:10px;
  padding:30px 20px;
  text-align:center;
  cursor:pointer;
  transition:all .15s;
}
.uploader-zona:hover,
.uploader-zona.drag-over {
  border-color:#f57c00;
  background:#fff7ed;
}
.uploader-zona .up-icon { font-size:48px; margin-bottom:10px; }
.uploader-zona .up-titulo { font-weight:700; color:#1a2e4a; font-size:16px; margin-bottom:4px; }
.uploader-zona .up-sub { color:#64748b; font-size:13px; }
.uploader-zona input[type=file] { display:none; }
.uploader-previews {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
  gap:10px;
  margin-top:16px;
}
.uploader-preview {
  position:relative;
  aspect-ratio:1;
  border-radius:8px;
  overflow:hidden;
  background:#e2e8f0;
}
.uploader-preview img { width:100%; height:100%; object-fit:cover; display:block; }
.uploader-preview .rem {
  position:absolute; top:4px; right:4px;
  background:#dc2626; color:#fff;
  width:24px; height:24px;
  border:none; border-radius:50%;
  cursor:pointer; font-size:14px;
  display:flex; align-items:center; justify-content:center;
}

/* ============================================
   PAINEL DE LANCE estilo Santoro (cores navy + laranja)
   ============================================ */
.painel-lance {
  margin-top:14px;
  border-radius:6px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 1px 3px rgba(0,0,0,.08);
  border:1px solid #e5e7eb;
}
.painel-lance-header {
  background:var(--cor-primaria, #1a2e4a);
  color:#fff;
  text-align:center;
  font-weight:800;
  letter-spacing:1px;
  padding:11px 12px;
  font-size:13px;
  border-bottom:3px solid var(--cor-destaque, #f57c00);
}
.painel-lance-body { padding:16px 14px 14px; }
.painel-lance-titulo {
  font-size:16px;
  font-weight:800;
  color:var(--cor-primaria, #1a2e4a);
  margin:0 0 12px;
}

/* Grid de lances rápidos */
.quick-bids {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-bottom:14px;
}
.quick-bid-btn {
  background:var(--cor-primaria, #1a2e4a);
  color:#fff;
  border:none;
  border-radius:4px;
  padding:10px 8px 8px;
  cursor:pointer;
  text-align:center;
  font-family:inherit;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  transition:all .15s;
  line-height:1.15;
}
.quick-bid-btn:hover {
  background:var(--cor-primaria-escura, #0f1d33);
  transform:translateY(-1px);
  box-shadow:0 3px 8px rgba(0,0,0,.15);
}
.qb-mais {
  color:var(--cor-destaque, #f57c00);
  font-weight:800;
  font-size:15px;
  margin-right:2px;
  display:inline;
}
.qb-valor {
  color:#fff;
  font-weight:700;
  font-size:13px;
  text-decoration:underline;
  text-underline-offset:2px;
}
.qb-total {
  color:#cbd5e1;
  font-size:10.5px;
  font-weight:500;
  margin-top:2px;
}
.quick-bid-btn:hover .qb-valor { color:var(--cor-destaque, #f57c00); }

/* Input "outros valores" */
.custom-bid label {
  display:block;
  font-size:12px;
  font-weight:600;
  color:#475569;
  margin-bottom:5px;
}
.custom-bid input {
  width:100%;
  padding:9px 11px;
  border:1px solid #d1d5db;
  border-radius:4px;
  font-size:13px;
  background:#f9fafb;
  box-sizing:border-box;
}
.custom-bid input:focus {
  outline:none;
  border-color:var(--cor-destaque, #f57c00);
  background:#fff;
}

/* Botão confirmar */
.btn-confirmar-lance {
  width:100%;
  margin-top:12px;
  background:var(--cor-destaque, #f57c00);
  color:#fff;
  border:none;
  padding:13px;
  border-radius:4px;
  font-weight:800;
  font-size:13px;
  letter-spacing:1px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:background .15s;
  font-family:inherit;
}
.btn-confirmar-lance:hover { background:var(--cor-destaque-escura, #e06c00); }

.lance-msg { margin-top:10px; font-size:13px; }
.lance-msg.ok  { color:#16a34a; font-weight:600; }
.lance-msg.err { color:#dc2626; font-weight:600; }

/* Login pra dar lance */
.login-para-dar-lance { text-align:center; padding:14px 6px; }
.login-para-dar-lance p {
  font-weight:700;
  color:var(--cor-primaria, #1a2e4a);
  margin:0 0 14px;
  font-size:14px;
}
.login-btns { display:flex; gap:12px; align-items:center; justify-content:center; }
.login-para-dar-lance .btn-primary {
  background:var(--cor-destaque, #f57c00);
  color:#fff;
  padding:10px 26px;
  border-radius:4px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.5px;
  font-size:13px;
}
.login-para-dar-lance .btn-primary:hover { background:var(--cor-destaque-escura, #e06c00); }
.link-cadastro {
  color:var(--cor-primaria, #1a2e4a);
  text-decoration:underline;
  font-weight:600;
  font-size:13px;
}

/* ============================================
   DEPOIMENTOS HOME
   ============================================ */
.home-depoimentos {
  background:#fff;
  padding:60px 0;
  border-top:1px solid #e5e7eb;
}
.home-secao-titulo {
  text-align:center;
  color:var(--cor-primaria, #1a2e4a);
  font-size:28px;
  font-weight:800;
  margin:0 0 6px;
}
.home-secao-sub {
  text-align:center;
  color:#64748b;
  font-size:14px;
  margin:0 0 36px;
}
.home-secao-sub strong { color:var(--cor-destaque, #f57c00); }

.depo-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:20px;
  margin-bottom:36px;
}
.depo-card {
  background:#f9fafb;
  border:1px solid #e5e7eb;
  border-radius:10px;
  padding:22px 20px;
  display:flex;
  flex-direction:column;
  transition:transform .15s, box-shadow .15s;
}
.depo-card:hover { transform:translateY(-3px); box-shadow:0 6px 16px rgba(0,0,0,.08); }
.depo-stars {
  color:#fbbf24;
  letter-spacing:2px;
  font-size:16px;
  margin-bottom:10px;
}
.depo-texto {
  color:#334155;
  font-size:14px;
  line-height:1.55;
  font-style:italic;
  margin:0 0 18px;
  flex:1;
}
.depo-rodape {
  display:flex;
  gap:12px;
  align-items:center;
  padding-top:14px;
  border-top:1px solid #e5e7eb;
}
.depo-avatar {
  width:46px; height:46px;
  border-radius:50%;
  color:#fff;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  letter-spacing:.5px;
  flex-shrink:0;
}
.depo-info { display:flex; flex-direction:column; line-height:1.3; }
.depo-info strong { color:var(--cor-primaria, #1a2e4a); font-size:14px; }
.depo-info span { color:#64748b; font-size:12px; }
.depo-info em { color:var(--cor-destaque, #f57c00); font-size:11px; font-style:normal; font-weight:600; margin-top:2px; }

.depo-selos {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
  gap:14px;
  padding:24px;
  background:var(--cor-primaria, #1a2e4a);
  border-radius:10px;
}
.selo-item { text-align:center; color:#fff; }
.selo-item strong { display:block; font-size:13px; margin-bottom:3px; letter-spacing:.3px; }
.selo-item span { font-size:11px; color:#cbd5e1; }

/* ============================================
   TOAST DE ARREMATE (notificação flutuante)
   ============================================ */
.toast-arremate {
  position:fixed;
  bottom:24px; left:24px;
  z-index:9000;
  background:#fff;
  border:1px solid #e5e7eb;
  border-left:4px solid var(--cor-destaque, #f57c00);
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  padding:14px 38px 14px 14px;
  display:flex;
  gap:12px;
  align-items:center;
  width:340px;
  max-width:calc(100vw - 48px);
  transform:translateX(-130%);
  transition:transform .45s cubic-bezier(.2,.9,.3,1.1);
}
.toast-arremate.show { transform:translateX(0); }
.toast-arremate .toast-avatar {
  width:44px; height:44px;
  border-radius:50%;
  background:var(--cor-primaria, #1a2e4a);
  color:#fff;
  font-weight:800;
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
  flex-shrink:0;
}
.toast-corpo { flex:1; min-width:0; }
.toast-titulo {
  font-size:11px;
  font-weight:800;
  color:var(--cor-destaque, #f57c00);
  letter-spacing:.5px;
  margin-bottom:3px;
  text-transform:uppercase;
}
.toast-texto {
  font-size:13px;
  color:#1f2937;
  line-height:1.35;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.toast-texto strong { color:var(--cor-primaria, #1a2e4a); }
.toast-meta { font-size:11px; color:#94a3b8; margin-top:2px; }
.toast-x {
  position:absolute;
  top:8px; right:10px;
  background:none; border:none;
  color:#94a3b8;
  font-size:18px;
  cursor:pointer;
  line-height:1;
  padding:2px 6px;
}
.toast-x:hover { color:#1f2937; }

@media (max-width:480px) {
  .toast-arremate { bottom:90px; left:12px; right:12px; width:auto; }
}

/* ============================================
   HERO CARROSSEL (3 banners rotativos)
   ============================================ */
.hero-carousel {
  position:relative;
  width:100%;
  overflow:hidden;
}
.hero-slide {
  display:none;
  width:100%;
  animation:none;
}
.hero-slide.active {
  display:block;
  animation:slideFade .7s ease;
}
@keyframes slideFade {
  from { opacity:0; transform:scale(1.02); }
  to   { opacity:1; transform:scale(1);    }
}

/* Setas */
.hero-nav {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.85);
  color:var(--cor-primaria, #1a2e4a);
  border:none;
  width:46px; height:46px;
  border-radius:50%;
  font-size:30px;
  font-weight:700;
  cursor:pointer;
  z-index:10;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 14px rgba(0,0,0,.18);
  transition:background .15s, transform .15s;
  line-height:1;
}
.hero-nav:hover { background:#fff; transform:translateY(-50%) scale(1.08); }
.hero-prev { left:18px; }
.hero-next { right:18px; }

/* Dots */
.hero-dots {
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:9px;
  z-index:10;
}
.hero-dot {
  width:11px; height:11px;
  border-radius:50%;
  background:rgba(255,255,255,.55);
  border:1.5px solid rgba(255,255,255,.85);
  cursor:pointer;
  padding:0;
  transition:all .2s;
}
.hero-dot:hover { background:rgba(255,255,255,.85); }
.hero-dot.active {
  background:var(--cor-destaque, #f57c00);
  border-color:var(--cor-destaque, #f57c00);
  width:30px;
  border-radius:6px;
}

@media (max-width:640px) {
  .hero-nav { width:36px; height:36px; font-size:22px; }
  .hero-prev { left:8px; }
  .hero-next { right:8px; }
  .hero-dots { bottom:10px; }
}

/* ============================================
   CATEGORIAS LUXE (foto real + glassmorphism)
   ============================================ */
.cat-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card.luxe {
  position: relative;
  background: #fff;
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, border-color .2s;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.cat-card.luxe:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 29, 51, .15);
  border-color: #f57c00;
}
.cat-foto {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2e4a, #0f1d33);
}
.cat-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.cat-card.luxe:hover .cat-foto img { transform: scale(1.08); }
.cat-emoji {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
}
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,29,51,.55) 100%);
  pointer-events: none;
}
.cat-body {
  padding: 12px 14px 14px;
}
.cat-card.luxe .nome {
  font-weight: 800;
  color: #1a2e4a;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
  line-height: 1.25;
}
.cat-card.luxe .qtd {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.cat-card.luxe .qtd-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  background: #f57c00;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  min-width: 22px;
  height: 19px;
  padding: 0 6px;
  border-radius: 9px;
}
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .cat-card.luxe .nome { font-size: 12px; } }

/* ============================================
   DEPOIMENTOS CARROSSEL (15 cards passando)
   ============================================ */
.depo-carrossel {
  position: relative;
  margin-bottom: 36px;
}
.depo-viewport {
  overflow: hidden;
  padding: 8px 4px;
}
.depo-track {
  display: flex;
  gap: 20px;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}
.depo-card.luxe {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 2px 10px rgba(15,29,51,.04);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.depo-card.luxe:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(15,29,51,.10);
}
.depo-foto {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f57c00;
  flex-shrink: 0;
}
.depo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #1a2e4a;
  font-size: 26px;
  font-weight: 700;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 6px 18px rgba(15,29,51,.12);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: all .15s;
}
.depo-nav:hover { background: #f57c00; color: #fff; border-color: #f57c00; transform: translateY(-50%) scale(1.08); }
.depo-nav.prev { left: -10px; }
.depo-nav.next { right: -10px; }
@media (max-width: 980px) { .depo-card.luxe { flex: 0 0 calc((100% - 20px) / 2); } }
@media (max-width: 640px) {
  .depo-card.luxe { flex: 0 0 100%; }
  .depo-nav { width: 36px; height: 36px; font-size: 22px; }
  .depo-nav.prev { left: 0; } .depo-nav.next { right: 0; }
}

/* Toast: avatar agora é foto */
img.toast-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f57c00;
  flex-shrink: 0;
}

/* ============================================
   FOOTER MAPA (em todas as páginas)
   ============================================ */
.footer-mapa {
  background: linear-gradient(180deg, #f8f9fb, #eef0f4);
  padding: 50px 0;
  border-top: 1px solid #e5e7eb;
}
.footer-mapa-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 32px;
  align-items: center;
}
.footer-mapa-info .fm-eyebrow {
  display: inline-block;
  background: #f57c00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.footer-mapa-info h3 {
  font-size: 28px;
  color: #1a2e4a;
  margin: 0 0 18px;
  font-weight: 800;
}
.footer-mapa-info .fm-end p {
  margin: 4px 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.45;
}
.footer-mapa-info .fm-end p strong { color: #1a2e4a; font-size: 16px; }
.footer-mapa-info .fm-btn {
  display: inline-block;
  margin-top: 18px;
  background: #1a2e4a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.footer-mapa-info .fm-btn:hover { background: #f57c00; transform: translateY(-2px); }
.footer-mapa-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15,29,51,.12);
  border: 1px solid #e5e7eb;
}
@media (max-width: 880px) {
  .footer-mapa-grid { grid-template-columns: 1fr; }
  .footer-mapa-info h3 { font-size: 22px; }
}
