:root {
  --bg: #0d0e12;
  --surface: #1a1c23;
  --surface-soft: #252831;
  --primary: #cba135;
  --primary-glow: rgba(203, 161, 53, 0.35);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: #2d313d;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* PROMO BAR */
.promo-bar {
  background: linear-gradient(90deg, rgba(203,161,53,0.18), rgba(26,28,35,1), rgba(203,161,53,0.18));
  color: var(--primary);
  text-align: center;
  padding: 12px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}

/* HEADER */
.main-header {
  background: rgba(13, 14, 18, 0.88);
  backdrop-filter: blur(12px);
  height: 70px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(45,49,61,0.65);
}
.header-flex { display: flex; justify-content: space-between; width: 100%; align-items: center; gap: 16px; }

.logo { font-size: 1.45rem; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: 0.2px; }
.logo span { color: var(--primary); }

.desktop-nav { display: flex; gap: 18px; align-items: center; }
.desktop-nav a { text-decoration: none; color: var(--text); font-size: 0.92rem; font-weight: 500; opacity: 0.92; }
.desktop-nav a:hover { opacity: 1; }

.btn-login {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 9px 14px;
  border-radius: 10px;
}
.btn-publish {
  background: var(--primary);
  color: #000 !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 800 !important;
  box-shadow: 0 10px 28px rgba(203,161,53,0.22);
}

/* MOBILE NAV */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
  width: 44px; height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  background: #e5e7eb;
  border-radius: 2px;
}
.mobile-toggle span:nth-child(1){ width: 18px; }
.mobile-toggle span:nth-child(2){ width: 22px; }
.mobile-toggle span:nth-child(3){ width: 14px; }

.mobile-nav {
  border-top: 1px solid rgba(45,49,61,0.65);
  background: rgba(13,14,18,0.94);
  backdrop-filter: blur(12px);
  padding: 14px 20px 18px;
}
.mobile-nav a {
  display: block;
  text-decoration: none;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.07);
}
.mobile-nav a.btn-login, .mobile-nav a.btn-publish {
  display: inline-block;
  margin-top: 12px;
  border-bottom: none;
}

/* HERO */
.hero {
  padding: 82px 0 70px;
  text-align: center;
  background:
    radial-gradient(900px 420px at 50% 10%, rgba(203,161,53,0.18), transparent 55%),
    radial-gradient(circle at center, #1a1c23 0%, #0d0e12 65%);
}
.hero-content h1 { font-size: clamp(2.0rem, 3.6vw, 3.0rem); margin-bottom: 14px; letter-spacing: -0.5px; }
.hero-content h1 span { color: var(--primary); text-shadow: 0 0 28px rgba(203,161,53,0.18); }
.hero-content h2 {
  color: var(--text-muted);
  font-size: 1.08rem;
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto 34px;
  line-height: 1.5;
}

.search-box {
  background: rgba(26,28,35,0.75);
  padding: 10px;
  border-radius: 999px;
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid rgba(45,49,61,0.8);
  box-shadow: var(--shadow);
}
.search-form { display: flex; align-items: center; gap: 0; }
.input-field { flex: 1; padding: 0 18px; }
.border-left { border-left: 1px solid rgba(45,49,61,0.75); }
.search-form input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 14px 0;
  outline: none;
  font-size: 0.98rem;
}
.search-form input::placeholder { color: rgba(148,163,184,0.9); }

.btn-search {
  background: var(--primary);
  border: none;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.6px;
}

.hero-badges { margin-top: 18px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.pill {
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(26,28,35,0.55);
  color: rgba(226,232,240,0.92);
}

/* MAP SECTION */
.map-container {
  background: linear-gradient(180deg, rgba(26,28,35,0.90), rgba(26,28,35,0.70));
  border-radius: 24px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 26px;
  align-items: stretch;
  border: 1px solid rgba(45,49,61,0.85);
  margin: 44px 0 20px;
  box-shadow: var(--shadow);
}

.map-info h3 { font-size: 1.2rem; margin-bottom: 10px; }
.map-info p { color: var(--text-muted); line-height: 1.6; }

.pulse-container {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(226,232,240,0.92);
}
.pulse-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(34,197,94,0.55);
}

.map-actions { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.btn-ghost {
  background: rgba(13,14,18,0.35);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(226,232,240,0.95);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(203,161,53,0.35); }

.map-note {
  margin-top: 12px;
  font-size: 0.86rem;
  color: rgba(148,163,184,0.92);
}

.map-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 320px;
}

/* Leaflet map */
.leaflet-map {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

/* Overlay premium */
.map-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  z-index: 500; /* sobre tiles */
  pointer-events: none;
}
.overlay-chip {
  font-size: 0.78rem;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(13,14,18,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(226,232,240,0.94);
}
.overlay-chip.muted { color: rgba(148,163,184,0.95); }

/* Bubble markers (Leaflet divIcon) */
.map-bubble .bubble {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(203,161,53,0.90);
  color: #0b0c10;
  font-weight: 900;
  border: 2px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 40px rgba(203,161,53,0.25);
}

/* User pin */
.me-pin .meDot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,0.18), 0 0 18px rgba(34,197,94,0.50);
  border: 2px solid rgba(255,255,255,0.35);
}

/* CITIES */
.section-subtitle { font-size: 1.1rem; font-weight: 800; margin: 20px 0; }
.text-amber { color: var(--primary); }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 15px;
  margin-bottom: 60px;
}

.city-card {
  height: 130px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
  transition: transform 160ms ease, border-color 160ms ease;
}
.city-card:hover { transform: translateY(-2px); border-color: rgba(203,161,53,0.35); }

.city-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transform: scale(1.02); }
.city-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-align: center;
  font-size: 0.95rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.55));
}

/* TAGS */
.bg-dark-soft { background: #15171d; padding: 60px 0; }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tags-cloud a {
  background: rgba(26,28,35,0.82);
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.86rem;
  text-decoration: none;
  color: rgba(148,163,184,0.98);
  border: 1px solid rgba(45,49,61,0.85);
  transition: 160ms ease;
}
.tags-cloud a:hover { border-color: rgba(203,161,53,0.40); color: #fff; transform: translateY(-1px); }

/* FAQ CARDS */
.faq { padding: 74px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-card {
  background: rgba(26,28,35,0.85);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(45,49,61,0.85);
  box-shadow: 0 16px 44px rgba(0,0,0,0.35);
}
.accent-card { border-color: rgba(203,161,53,0.32); box-shadow: 0 18px 55px rgba(203,161,53,0.08); }

.faq-body { display: flex; align-items: center; padding: 30px; gap: 20px; }
.faq-text { flex: 1; }
.faq-text h3 { margin-bottom: 8px; }
.faq-text p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 15px; line-height: 1.5; }

.link-more { color: rgba(203,161,53,0.95); text-decoration: none; font-weight: 700; }
.link-more:hover { text-decoration: underline; }

.faq-img-wrapper { position: relative; width: 122px; height: 122px; }
.faq-img-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; opacity: 0.95; }

.badge {
  position: absolute;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}
.badge-primary { background: var(--primary); color: #000; top: -7px; right: -7px; }
.badge-turbo { background: #ff4757; bottom: 10px; left: -10px; }
.badge-pro { background: #2f3542; border: 1px solid rgba(203,161,53,0.55); bottom: -7px; right: 6px; }
.badge-privacy { background: #22c55e; color: #07130a; top: -7px; right: -7px; }
.badge-security { background: #3b82f6; color: #071122; bottom: -7px; right: 6px; }

/* FOOTER */
.main-footer { background: #090a0d; padding: 80px 0 20px; border-top: 1px solid rgba(45,49,61,0.85); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { color: rgba(148,163,184,0.95); margin-top: 10px; max-width: 360px; line-height: 1.6; }
.footer-links h4 { margin-bottom: 16px; color: #fff; }
.footer-links a { display: block; margin-bottom: 10px; color: rgba(148,163,184,0.95); text-decoration: none; font-size: 0.92rem; }
.footer-links a:hover { color: #fff; }
.rta-logo { margin-top: 14px; height: 36px; opacity: 0.92; }

.footer-bottom { text-align: center; border-top: 1px solid rgba(45,49,61,0.85); padding-top: 26px; font-size: 0.85rem; color: rgba(148,163,184,0.95); }

/* MOBILE */
@media (max-width: 900px) {
  .map-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .mobile-toggle { display: inline-flex; }

  .hero { padding: 62px 0 52px; }
  .search-form { flex-direction: column; gap: 10px; padding: 10px; }
  .search-box { border-radius: 20px; }
  .border-left { border-left: none; }

  .faq-grid { grid-template-columns: 1fr; }
  .faq-body { flex-direction: column; align-items: flex-start; }
  .faq-img-wrapper { width: 100%; height: 160px; }
  .faq-img-wrapper img { border-radius: 16px; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .btn-search { width: 100%; }
}
