/* ============================================================
   VIZO RESERVA — Design Premium v10
   Paleta: Deep Navy / Ivory / Copper-Gold / Stone
   Display: Playfair Display  |  Body: Inter
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,600;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── TOKENS ── */
:root {
  --navy:   #09142A;
  --navy2:  #0e1f3d;
  --navy3:  #172b50;
  --ivory:  #F7F3EC;
  --ivory2: #EDE8DF;
  --gold:   #C9942A;
  --gold2:  #E5B346;
  --gold-glow: rgba(201,148,42,.18);
  --copper: #B07A3A;
  --stone:  #3A342D;
  --text:   #1A1208;
  --muted:  #2F2A24;
  --line:   #DDD8CF;
  --line2:  rgba(255,255,255,.10);
  --ok:     #1A7A4A;
  --ok-bg:  #E8F7EF;
  --warn:   #92550E;
  --warn-bg:#FFF8ED;
  --err:    #9B1A23;
  --err-bg: #FFF0F1;
  --white:  #FFFFFF;
  --r-sm:   14px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   40px;
  --shadow-sm:  0 2px 8px rgba(9,20,42,.07);
  --shadow-md:  0 10px 32px rgba(9,20,42,.11);
  --shadow-lg:  0 28px 72px rgba(9,20,42,.18);
  --shadow-gold:0 16px 48px rgba(201,148,42,.20);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,20,42,.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line2);
}

.navin {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo svg,
.brand-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.navlinks { display: flex; align-items: center; gap: 6px; }

.navlinks > a:not(.btn) {
  color: rgba(247,243,236,.7);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
}

.navlinks > a:not(.btn):hover {
  color: var(--ivory);
  background: rgba(255,255,255,.07);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 20px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  letter-spacing: .01em;
  line-height: 1;
  text-align: center;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  box-shadow: 0 20px 56px rgba(201,148,42,.32);
}

.btn-outline {
  background: transparent;
  border-color: rgba(247,243,236,.3);
  color: var(--ivory);
}

.btn-outline:hover { background: rgba(255,255,255,.06); border-color: rgba(247,243,236,.5); }

.btn-ghost {
  background: var(--white);
  border-color: var(--line);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover { background: var(--ivory); box-shadow: var(--shadow-md); }

.btn-dark { background: var(--navy); border-color: var(--navy); color: var(--ivory); }
.btn-danger { background: var(--err-bg); border-color: #FECDCF; color: var(--err); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom,
      rgba(9,20,42,.20) 0%,
      rgba(9,20,42,.55) 45%,
      rgba(9,20,42,.96) 100%),
    url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1400&q=80&auto=format&fit=crop')
    center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold2);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold2);
  opacity: .6;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.025em;
  color: var(--ivory);
  margin: 0 0 22px;
  max-width: 820px;
}

.hero h1 em { font-style: italic; color: var(--gold2); }

.hero-lead {
  font-size: 1.06rem;
  color: rgba(247,243,236,.7);
  line-height: 1.72;
  max-width: 540px;
  margin: 0 0 34px;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 52px; }

.hero-proof {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hero-proof::-webkit-scrollbar { display: none; }

.hero-proof-item {
  display: flex;
  flex-direction: column;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
}
.hero-proof-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.hero-proof-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  letter-spacing: -.03em;
}

.hero-proof-item span {
  font-size: .76rem;
  color: rgba(247,243,236,.5);
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: .03em;
}

/* ── SEARCH BAR ── */
.search-bar-wrap { position: relative; z-index: 3; margin-top: -44px; }

.search-bar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 6px;
  display: flex;
  align-items: stretch;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  flex-wrap: wrap;
  gap: 0;
}

.search-field {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 10px 16px;
  border-right: 1px solid var(--line);
  min-width: 140px;
}

.search-field:last-of-type { border-right: none; }

.search-field label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text);
  margin-bottom: 3px;
}

.search-field input,
.search-field select {
  border: none; outline: none;
  font-family: inherit; font-size: .92rem;
  color: var(--muted); background: transparent;
  font-weight: 400; appearance: none; width: 100%;
}

.search-bar .btn-primary { flex-shrink: 0; padding: 14px 24px; font-size: .9rem; }

/* ── FILTER ── */
.filter {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px;
  display: grid;
  grid-template-columns: 1.3fr .8fr .7fr .7fr auto;
  gap: 10px;
  box-shadow: var(--shadow-md);
  margin-top: 22px;
}

.filter.location-filter { grid-template-columns: 1.15fr .58fr .95fr .75fr .62fr auto; }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-ivory { background: var(--ivory); }
.section-navy { background: var(--navy); color: var(--ivory); }
.section-navy .sub { color: rgba(247,243,236,.58); }
.section-navy .title { color: var(--ivory); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--copper);
  margin-bottom: 12px;
}

.title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.025em;
  color: var(--navy);
  margin: 0 0 16px;
}

.title em { font-style: italic; color: var(--gold); }

.sub {
  font-size: 1.04rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 680px;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}

.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--navy);
  letter-spacing: -.01em;
}

.card .sub { font-size: .92rem; }

.card-navy { background: var(--navy2); border-color: rgba(255,255,255,.06); color: var(--ivory); }
.card-navy h3 { color: var(--ivory); }
.card-navy .sub { color: rgba(247,243,236,.55); }

/* ── GRIDS ── */
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.grid2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 40px; }
.grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }

/* ── ICON ── */
.ico {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--ivory2);
  color: var(--copper);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* ── LISTINGS ── */
.listing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }

.listing {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .25s;
  position: relative;
}

.listing:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.listing-img-wrap { position: relative; overflow: hidden; }

.listing img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.listing:hover img { transform: scale(1.05); }

.listing-fav {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; border: none;
}

.listing-body { padding: 18px; }
.listing small { color: var(--muted); font-size: .8rem; }

.listing h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  margin: 6px 0 4px;
  color: var(--navy); line-height: 1.35;
}

.listing-price { display: flex; align-items: baseline; gap: 5px; margin-top: 10px; }
.listing-price b { font-size: 1.1rem; font-weight: 700; color: var(--navy); letter-spacing: -.02em; }
.listing-price small { color: var(--muted); font-size: .8rem; }

/* ── TAGS ── */
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  border-radius: 999px; padding: 4px 10px;
  font-weight: 600; font-size: .72rem; letter-spacing: .02em;
  background: var(--ivory2); color: var(--stone);
  border: 1px solid var(--line);
}

.tag.ok { background: var(--ok-bg); color: var(--ok); border-color: rgba(26,122,74,.18); }
.tag.hot { background: #FFF5E0; color: var(--copper); border-color: rgba(201,148,42,.25); }

.pill {
  display: inline-flex; border-radius: 999px; padding: 5px 12px;
  background: var(--ok-bg); color: var(--ok);
  font-weight: 700; font-size: .76rem;
  border: 1px solid rgba(26,122,74,.2);
}

/* ── PRICING ── */
.pricing { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 36px; }

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 460px;
  transition: box-shadow .2s;
}

.price-card:hover { box-shadow: var(--shadow-md); }

.price-card.hot {
  background: var(--navy);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  color: var(--ivory);
}

.price-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin: 12px 0 4px;
}

.price-card.hot h3 { color: var(--ivory); }

.price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  letter-spacing: -.04em;
  margin: 16px 0 8px;
  color: var(--navy); line-height: 1;
}

.price small { font-size: .85rem; font-weight: 500; color: var(--muted); font-family: inherit; letter-spacing: 0; }
.price-card.hot .price { color: var(--gold2); }
.price-card.hot .price small { color: rgba(247,243,236,.5); }

.features {
  list-style: none; padding: 0; margin: 16px 0 24px;
  display: grid; gap: 10px;
  color: var(--muted); font-size: .9rem;
}

.features li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.features li::before { content: '✓'; color: var(--ok); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-card.hot .features { color: rgba(247,243,236,.65); }
.price-card.hot .features li::before { color: var(--gold2); }

/* ── FORM ── */
.form { display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.full { grid-column: 1 / -1; }

label > small {
  display: block; font-size: .78rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--navy); margin-bottom: 6px;
}

.field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font: inherit;
  background: var(--white); color: var(--text);
  font-size: .95rem;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}

.field:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,148,42,.14); }
.field::placeholder { color: #B0A89A; }
.field[disabled] { background: var(--ivory); color: var(--muted); cursor: not-allowed; }

/* ── ALERTS ── */
.alert { border-radius: var(--r-sm); padding: 14px 16px; margin: 14px 0; font-weight: 600; font-size: .92rem; line-height: 1.5; }
.alert.ok { background: var(--ok-bg); color: var(--ok); border: 1px solid rgba(26,122,74,.18); }
.alert.err { background: var(--err-bg); color: var(--err); border: 1px solid rgba(155,26,35,.18); }
.alert.warn { background: var(--warn-bg); color: var(--warn); border: 1px solid rgba(146,85,14,.18); }

/* ── PROPERTY HERO ── */
.property-hero { padding: 32px 0; background: var(--white); }

.gallery {
  display: grid; grid-template-columns: 1.4fr .8fr .8fr;
  gap: 8px; border-radius: var(--r-lg); overflow: hidden; margin-top: 20px;
}

.gallery img { width: 100%; height: 220px; object-fit: cover; transition: opacity .2s; }
.gallery img:first-child { height: 448px; grid-row: span 2; }
.gallery img:hover { opacity: .9; }

.property-layout { display: grid; grid-template-columns: 1fr 380px; gap: 36px; align-items: start; }

.sticky-card { position: sticky; top: 88px; border: 1.5px solid var(--gold); box-shadow: var(--shadow-gold), var(--shadow-md); }

.stats { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

.stat {
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 10px 14px; background: var(--ivory);
  color: var(--navy); font-weight: 600; font-size: .85rem;
}

.amenities { display: flex; flex-wrap: wrap; gap: 8px; }

.amenities span {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 12px; background: var(--white);
  font-weight: 500; color: var(--muted); font-size: .85rem;
}

.unit {
  display: grid; grid-template-columns: 180px 1fr; gap: 18px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px; background: var(--white); margin-bottom: 14px;
  transition: box-shadow .2s;
}

.unit:hover { box-shadow: var(--shadow-md); }
.unit img { width: 180px; height: 130px; border-radius: var(--r-sm); object-fit: cover; }

/* ── DASHBOARD ── */
.sidebar {
  width: 260px; background: var(--navy); color: rgba(247,243,236,.65);
  min-height: 100vh; position: fixed; left: 0; top: 0;
  padding: 24px; border-right: 1px solid var(--line2);
}

.main { margin-left: 260px; min-height: 100vh; background: var(--ivory); padding: 28px; }

.sidebrand { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.sidebrand img { max-width: 180px; height: auto; display: block; filter: brightness(0) invert(1); background: none; border-radius: 0; padding: 0; }

.side a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(247,243,236,.62); padding: 11px 14px;
  border-radius: var(--r-sm); margin: 3px 0;
  font-weight: 500; font-size: .9rem;
  transition: background .15s, color .15s;
}

.side a.active, .side a:hover { background: rgba(255,255,255,.09); color: var(--ivory); }
.side a.active { color: var(--gold2); }

.dashbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 24px; }

.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }

.metric { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; transition: box-shadow .2s; }
.metric:hover { box-shadow: var(--shadow-md); }
.metric small { color: var(--muted); font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; }

.metric b {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2rem; margin-top: 8px;
  letter-spacing: -.04em; color: var(--navy); font-weight: 700;
}

.table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); font-size: .9rem; }
.table th, .table td { padding: 13px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table th { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); background: var(--ivory); font-weight: 700; }
.table tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: var(--ivory); }

/* ── CTA ── */
.cta {
  background: var(--navy); color: var(--ivory);
  border-radius: var(--r-xl); padding: 56px 52px;
  margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  position: relative; overflow: hidden;
}

.cta::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,148,42,.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; letter-spacing: -.03em;
  margin: 0 0 10px; line-height: 1.1; font-weight: 700;
}

.cta p { margin: 0; color: rgba(247,243,236,.58); font-size: 1rem; }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(247,243,236,.52); padding: 56px 0 32px; border-top: 1px solid var(--line2); }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }

.footer-brand img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 14px; }

.footer p { font-size: .88rem; line-height: 1.65; margin: 0; }

.footer h4 { color: var(--ivory); font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 14px; }

.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-links a { font-size: .88rem; color: rgba(247,243,236,.48); transition: color .15s; }
.footer-links a:hover { color: var(--ivory); }

.footer-bottom { border-top: 1px solid var(--line2); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: .8rem; flex-wrap: wrap; }

/* ── MISC ── */
.checks { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }

.check {
  display: flex; gap: 10px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 11px 13px; background: var(--white);
  color: var(--muted); font-weight: 500; font-size: .88rem;
}

.progress { height: 8px; border-radius: 999px; background: var(--ivory2); overflow: hidden; }
.progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold2)); border-radius: 999px; }

.badge-line { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

.mobile-book-btn {
  display: none;
  position: fixed; left: 14px; right: 14px; bottom: 16px;
  z-index: 9998; text-align: center; border-radius: 999px;
  padding: 16px 20px; background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow-gold), 0 8px 24px rgba(9,20,42,.25);
}

.divider { display: flex; align-items: center; gap: 16px; margin: 20px 0; color: var(--muted); font-size: .8rem; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.logo-img { height: 38px; width: auto; display: block; }
.brand-inline { display: inline-flex; align-items: center; gap: 8px; }
.brand-inline img { height: 34px; width: auto; }
.brand-board { width: 100%; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); display: block; }

.location-help { display: block; margin-top: 6px; color: var(--muted); font-size: .78rem; line-height: 1.35; }

.pwa-install {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 9999; display: flex; align-items: center; gap: 14px;
  max-width: 680px; margin: auto;
  padding: 16px;
  border: 1px solid rgba(201,148,42,.25);
  border-radius: var(--r-md);
  background: rgba(9,20,42,.97); color: var(--ivory);
  box-shadow: 0 20px 60px rgba(9,20,42,.35);
  backdrop-filter: blur(14px);
}

.pwa-install strong { display: block; font-size: 1rem; line-height: 1.2; font-weight: 700; }
.pwa-install small { display: block; margin-top: 2px; color: rgba(247,243,236,.6); line-height: 1.4; font-size: .85rem; }

.pwa-install-btn {
  margin-left: auto; flex-shrink: 0; border: 0; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-weight: 700; padding: 11px 18px; cursor: pointer;
  font-size: .88rem; font-family: inherit;
}

.pwa-close { border: 0; background: transparent; color: var(--ivory); font-size: 26px; line-height: 1; cursor: pointer; padding: 4px 6px; opacity: .6; flex-shrink: 0; }
.pwa-close:hover { opacity: 1; }

/* ─────── RESPONSIVE ─────── */
@media (max-width: 1080px) {
  .grid2, .property-layout { grid-template-columns: 1fr; }
  .grid3, .listing-grid, .pricing { grid-template-columns: repeat(2,1fr); }
  .filter, .filter.location-filter { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar { position: relative; width: auto; min-height: auto; }
  .main { margin-left: 0; }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .sticky-card { position: relative; top: auto; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img:first-child { height: 300px; grid-row: auto; grid-column: 1/-1; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .navlinks a:not(.btn) { display: none; }
  .navin { height: 64px; }
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 2.4rem; letter-spacing: -.02em; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .grid3, .grid2, .listing-grid, .pricing, .filter, .form-grid, .metric-grid, .checks { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .unit { grid-template-columns: 1fr; }
  .unit img { width: 100%; height: 200px; }
  .gallery { display: block; }
  .gallery img, .gallery img:first-child { height: 250px; margin-bottom: 8px; border-radius: var(--r-md); }
  .cta { display: block; padding: 32px 24px; }
  .cta h2 { font-size: 1.7rem; }
  .main { padding: 16px; }
  .sidebar { padding: 16px; }
  .mobile-book-btn { display: block; }
  .property-layout { padding-bottom: 80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .search-bar-wrap { margin-top: -20px; }
}

.chip-scroll::-webkit-scrollbar { display: none; }

/* ── HOW IT WORKS responsive ── */
@media (max-width:640px) {
  .how-grid { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
}
@media (max-width:400px) {
  .how-grid { grid-template-columns: 1fr !important; }
}

/* ── NAV LIGHT (pages without dark hero) ── */
.nav-light,
nav.nav[style*="background:rgba(255,255,255"] {
  color: var(--text) !important;
}
.nav-light .navlinks > a:not(.btn),
nav.nav[style*="background:rgba(255,255,255"] .navlinks > a:not(.btn) {
  color: rgba(26,18,8,.65) !important;
}
.nav-light .navlinks > a:not(.btn):hover,
nav.nav[style*="background:rgba(255,255,255"] .navlinks > a:not(.btn):hover {
  color: var(--text) !important;
  background: var(--ivory2) !important;
}

/* ============================================================
   VIZO RESERVA v11 — acabamento premium de app + mobile first
   ============================================================ */
html { -webkit-text-size-adjust: 100%; }
body {
  background:
    radial-gradient(circle at 15% -10%, rgba(212,175,55,.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #F8F5EF 58%, #F7F3EC 100%);
}
button, .btn, input, select, textarea { -webkit-tap-highlight-color: transparent; }
.btn { min-height: 42px; }
.btn-primary { background: linear-gradient(135deg, var(--gold2), var(--gold)); }
.card, .price-card, .listing, .filter, .search-card, .metric, .unit, .review, .faq-item {
  box-shadow: 0 18px 55px rgba(9,20,42,.08);
}
.card, .price-card, .listing, .filter, .search-card, .unit, .review {
  border-color: rgba(9,20,42,.08);
}
.field, input, select, textarea {
  max-width: 100%;
}
.field, .form input, .form select, .form textarea {
  min-height: 46px;
  border-radius: 16px;
}
textarea.field, .form textarea { min-height: 108px; }
.table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table tbody, .table thead, .table tr { min-width: 680px; }
.navlinks .nav-download,
.nav-download {
  color: var(--gold2) !important;
  background: rgba(212,175,55,.10) !important;
  border: 1px solid rgba(212,175,55,.20) !important;
}
.pwa-install {
  left: max(14px, env(safe-area-inset-left));
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  border-radius: 24px;
  padding: 14px;
  border: 1px solid rgba(212,175,55,.28);
  background: linear-gradient(135deg, rgba(14,31,61,.98), rgba(9,20,42,.98));
  box-shadow: 0 24px 70px rgba(9,20,42,.38);
}
.pwa-install-copy { display:flex; align-items:center; gap:12px; flex:1; min-width:0; }
.pwa-help { font-size:.76rem; line-height:1.45; color:rgba(247,243,236,.68); margin-top:4px; }
.pwa-help b { color: var(--gold2); }
.pwa-help.ok { color:#BFE8CF; }
.pwa-help.warn { color:#F7DCA5; }

@media (max-width: 900px) {
  .wrap { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
  .nav { position: sticky; top: 0; }
  .navlinks { gap: 6px; overflow-x: auto; scrollbar-width: none; justify-content: flex-end; }
  .navlinks::-webkit-scrollbar { display:none; }
  .navlinks .btn { padding: 10px 14px; }
  .grid3, .listing-grid, .pricing, .metric-grid { gap: 14px; }
  .section { padding: 58px 0; }
  .title { letter-spacing: -.035em; }
  .card { border-radius: 24px; padding: 22px; }
  .form-grid { gap: 12px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .navin { height: 62px; }
  .brand-logo svg, .brand-logo img, .logo-img { max-width: 154px; height: 32px; }
  .navlinks { flex: 1; min-width: 0; }
  .navlinks a:not(.btn):not(.nav-download) { display: none !important; }
  .navlinks .nav-download { display: inline-flex !important; white-space: nowrap; font-size: .78rem; padding: 8px 10px; border-radius: 999px; }
  .navlinks .btn { font-size: .78rem; padding: 10px 12px; min-height: 38px; }
  .hero { min-height: 82vh; border-radius: 0 0 28px 28px; }
  .hero-actions, .actions, .badge-line { width: 100%; }
  .hero-actions .btn, .actions .btn, .badge-line .btn { width: 100%; justify-content: center; min-height: 48px; }
  .filter, .search-card { border-radius: 24px; }
  .footer { padding-bottom: calc(30px + env(safe-area-inset-bottom)); }
  .pwa-install { flex-direction: column; align-items: stretch; max-width: none; }
  .pwa-install-copy { align-items:flex-start; }
  .pwa-install-btn { width: 100%; min-height: 46px; }
  .pwa-close { position:absolute; top:6px; right:10px; }
}

@media (max-width: 420px) {
  .wrap { padding-left: 14px; padding-right: 14px; }
  .card { padding: 18px; border-radius: 22px; }
  .title { font-size: clamp(1.72rem, 9vw, 2.1rem) !important; }
  .btn { width: 100%; justify-content:center; }
  .navlinks .btn { width:auto; }
  .table th, .table td { padding: 11px 12px; }
}


/* ============================================================
   VIZO RESERVA v12 — página pública premium + banner install
   ============================================================ */
.property-hero{
  padding:96px 0 34px;
  background:
    radial-gradient(circle at 8% -10%, rgba(212,175,55,.12), transparent 28%),
    linear-gradient(180deg,#FFFFFF 0%,#FBF8F2 100%);
}
.property-trust-row{
  display:grid;grid-template-columns:repeat(3,1fr);gap:10px;
  margin:18px 0 6px;
}
.property-trust-row>div{
  background:#fff;border:1px solid rgba(9,20,42,.08);border-radius:18px;
  padding:14px 16px;box-shadow:0 16px 42px rgba(9,20,42,.06);
}
.property-trust-row small{display:block;font-size:.68rem;text-transform:uppercase;letter-spacing:.08em;font-weight:800;color:var(--copper);margin-bottom:4px}
.property-trust-row b{display:block;color:var(--navy);font-size:.9rem;line-height:1.25}
.gallery-premium{
  box-shadow:0 30px 90px rgba(9,20,42,.18);
  border:1px solid rgba(9,20,42,.08);
}
.gallery-item::after{content:'';position:absolute;inset:0;background:linear-gradient(to bottom,transparent 55%,rgba(9,20,42,.16));pointer-events:none}
.premium-unit{
  border-radius:26px;border-color:rgba(9,20,42,.08);
  box-shadow:0 18px 54px rgba(9,20,42,.08);
  background:linear-gradient(180deg,#fff 0%,#FFFEFB 100%);
}
.premium-unit img{box-shadow:0 16px 34px rgba(9,20,42,.10)}
.booking-card-premium{
  border:1px solid rgba(212,175,55,.36)!important;
  background:linear-gradient(180deg,#fff 0%,#FFFBF1 100%);
  box-shadow:0 26px 78px rgba(201,148,42,.18),0 18px 58px rgba(9,20,42,.12)!important;
  border-radius:28px!important;
}
.booking-card-premium::before{
  content:'Reserva direta pelo WhatsApp';display:block;margin:-4px 0 12px;
  color:var(--copper);font-size:.68rem;font-weight:900;text-transform:uppercase;letter-spacing:.12em;
}
.mobile-book-btn{bottom:max(16px,env(safe-area-inset-bottom));}
.pwa-install{bottom:max(86px,calc(16px + env(safe-area-inset-bottom)))!important;}
@media(max-width:1080px){.property-hero{padding-top:86px}.property-trust-row{grid-template-columns:1fr}.pwa-install{bottom:max(82px,calc(76px + env(safe-area-inset-bottom)))!important}}
@media(max-width:640px){.property-hero{padding-top:76px}.gallery-premium{border-radius:24px}.premium-unit{padding:14px}.property-trust-row{margin-top:14px}.booking-card-premium{border-radius:24px!important}}


/* ============================================================
   VIZO RESERVA v13 — vitrines premium, anunciar premium e logo sempre visível
   ============================================================ */
.nav{box-shadow:0 14px 42px rgba(9,20,42,.22)}
.brand-logo{
  min-width:174px;
  max-width:220px;
  height:48px;
  padding:6px 10px;
  border-radius:16px;
  background:linear-gradient(135deg,rgba(255,255,255,.105),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 10px 26px rgba(0,0,0,.16);
  overflow:visible;
}
.brand-logo svg,.brand-logo img{height:34px!important;width:auto!important;max-width:100%;object-fit:contain;filter:none!important;opacity:1!important;visibility:visible!important;flex-shrink:0}
.sidebrand img,.sidebar-logo svg,.footer-brand img{opacity:1!important;visibility:visible!important;filter:none!important;background:transparent!important}
.navlinks{min-width:0}.navlinks a{white-space:nowrap}.nav-download{display:inline-flex!important;align-items:center;gap:7px}.nav-download::before{content:'↓';display:inline-grid;place-items:center;width:18px;height:18px;border-radius:999px;background:rgba(212,175,55,.18);color:var(--gold2);font-weight:900}
.btn-download{background:rgba(255,255,255,.10);border-color:rgba(212,175,55,.34);color:var(--gold2);box-shadow:inset 0 1px 0 rgba(255,255,255,.08)}
.btn-download:hover{background:rgba(212,175,55,.14);border-color:rgba(212,175,55,.52);color:#FFD36B}
.page-premium-hero{position:relative;overflow:hidden;background:var(--navy);color:var(--ivory)}
.premium-kicker{display:inline-flex;align-items:center;gap:10px;color:var(--gold2);font-size:.74rem;font-weight:900;text-transform:uppercase;letter-spacing:.15em;margin-bottom:18px}.premium-kicker span{width:34px;height:1px;background:linear-gradient(90deg,var(--gold2),transparent)}
.inline-install-card{display:flex;align-items:center;gap:16px;position:relative;margin-top:26px;padding:16px;border-radius:28px;border:1px solid rgba(212,175,55,.28);background:linear-gradient(135deg,rgba(255,255,255,.12),rgba(255,255,255,.045));box-shadow:0 24px 72px rgba(0,0,0,.24),inset 0 1px 0 rgba(255,255,255,.08);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px);color:var(--ivory)}
.install-icon-wrap{width:56px;height:56px;border-radius:18px;background:rgba(255,255,255,.10);display:grid;place-items:center;flex-shrink:0;box-shadow:inset 0 1px 0 rgba(255,255,255,.10)}.install-icon-wrap img{width:42px;height:42px;border-radius:13px}.inline-install-card strong{display:block;font-size:1rem;line-height:1.25}.inline-install-card small{display:block;color:rgba(247,243,236,.68);font-size:.86rem;line-height:1.45;margin-top:3px}.inline-install-card .pwa-inline-btn{margin-left:auto;flex-shrink:0}.pwa-inline-close{border:0;background:rgba(255,255,255,.08);color:rgba(247,243,236,.82);width:34px;height:34px;border-radius:999px;font-size:22px;line-height:1;cursor:pointer;flex-shrink:0}
.market-hero{padding:96px 0 44px;background:radial-gradient(circle at 84% 14%,rgba(212,175,55,.20),transparent 30%),radial-gradient(circle at 12% 0%,rgba(255,255,255,.10),transparent 24%),linear-gradient(135deg,#071126 0%,#0E2144 52%,#09142A 100%)}
.market-hero-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);gap:44px;align-items:center}.market-hero .title{color:var(--ivory);font-size:clamp(2.25rem,5vw,4.85rem);max-width:820px}.market-hero .sub{color:rgba(247,243,236,.72);max-width:650px}.market-proof-row{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:28px}.market-proof-row>div{border:1px solid rgba(255,255,255,.11);border-radius:22px;padding:16px;background:rgba(255,255,255,.065);box-shadow:inset 0 1px 0 rgba(255,255,255,.08)}.market-proof-row small{display:block;color:var(--gold2);font-size:.68rem;text-transform:uppercase;letter-spacing:.1em;font-weight:900}.market-proof-row b{display:block;color:var(--ivory);margin-top:4px;font-size:.95rem;line-height:1.25}.market-app-preview{border:1px solid rgba(255,255,255,.13);border-radius:36px;padding:18px;background:linear-gradient(180deg,rgba(255,255,255,.13),rgba(255,255,255,.045));box-shadow:0 34px 100px rgba(0,0,0,.32),inset 0 1px 0 rgba(255,255,255,.12);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}.market-app-top{display:flex;align-items:center;gap:12px}.market-app-top img{width:44px;height:44px;border-radius:14px}.market-app-top div{flex:1}.market-app-top small,.market-app-card small{display:block;color:rgba(247,243,236,.56);font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.market-app-top b,.market-app-card b{display:block;color:var(--ivory)}.market-app-top span{color:var(--gold2);font-size:.68rem;font-weight:900;border:1px solid rgba(212,175,55,.35);border-radius:999px;padding:5px 9px;background:rgba(212,175,55,.12)}.market-app-card{margin-top:18px;border-radius:26px;overflow:hidden;background:rgba(9,20,42,.42);border:1px solid rgba(255,255,255,.10)}.market-app-card .app-img{height:188px;background:linear-gradient(to bottom,transparent,rgba(9,20,42,.72)),url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=700&q=80&auto=format&fit=crop') center/cover}.market-app-card>div:last-child{padding:16px}.market-app-card em{display:block;color:var(--gold2);font-size:.78rem;font-style:normal;margin-top:3px}.market-app-list{display:grid;gap:10px;margin-top:12px}.market-app-list>div{display:flex;gap:10px;align-items:center;border:1px solid rgba(255,255,255,.10);border-radius:18px;padding:12px;background:rgba(255,255,255,.055)}.market-app-list span{width:32px;height:32px;border-radius:11px;background:linear-gradient(135deg,var(--gold2),var(--gold));box-shadow:0 10px 22px rgba(212,175,55,.22)}.market-app-list p{margin:0}.market-app-list b{display:block;color:var(--ivory);font-size:.9rem}.market-app-list small{display:block;color:rgba(247,243,236,.55);font-size:.78rem}.market-search-premium{max-width:none;margin-top:34px;border-radius:30px;border-color:rgba(212,175,55,.24);box-shadow:0 26px 80px rgba(0,0,0,.22),0 0 0 1px rgba(255,255,255,.08);padding:8px;background:rgba(255,255,255,.96)}.market-search-premium .search-field label{color:var(--copper)}.market-search-premium .search-field input,.market-search-premium .search-field select{color:var(--navy);font-weight:650}.market-chips-bar{display:flex;gap:10px;overflow-x:auto;padding:18px 2px 2px;scrollbar-width:none;-webkit-overflow-scrolling:touch}.market-chips-bar::-webkit-scrollbar{display:none}.market-chips-bar .chip{border-color:rgba(255,255,255,.16);background:rgba(255,255,255,.10);color:rgba(247,243,236,.80);box-shadow:inset 0 1px 0 rgba(255,255,255,.08)}.market-chips-bar .chip:hover{color:var(--ivory);border-color:rgba(212,175,55,.38)}.market-chips-bar .chip-active{background:linear-gradient(135deg,var(--gold2),var(--gold));border-color:transparent;color:var(--navy)}.market-chips-bar .chip span{font-size:.7rem;opacity:.75}.market-install-card{margin-top:18px}.market-results-section{background:linear-gradient(180deg,#F7F3EC 0%,#FFFFFF 58%,#F8F5EF 100%);padding-top:64px}.market-results-head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:20px}.market-results-head .title{margin-bottom:0}.market-results-head p{margin:0;color:var(--muted);font-weight:800}.market-listing-grid{align-items:stretch}.premium-listing-card{border-radius:30px;background:linear-gradient(180deg,#fff 0%,#FFFCF6 100%);border:1px solid rgba(9,20,42,.08);box-shadow:0 22px 70px rgba(9,20,42,.09);transform:translateZ(0)}.premium-listing-card::before{content:'';position:absolute;inset:0;border-radius:30px;pointer-events:none;box-shadow:inset 0 1px 0 rgba(255,255,255,.9)}.premium-listing-card:hover{box-shadow:0 30px 92px rgba(9,20,42,.16);transform:translateY(-5px)}.premium-listing-card .listing-img-wrap{border-radius:24px;margin:10px 10px 0;overflow:hidden}.premium-listing-card img{height:235px}.premium-listing-card .listing-body{padding:18px 20px 20px}.listing-action-line{margin-top:14px;padding-top:14px;border-top:1px solid rgba(9,20,42,.08);display:flex;align-items:center;justify-content:space-between;gap:12px}.listing-action-line span{color:var(--muted);font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.listing-action-line strong{color:var(--navy);font-size:.86rem;background:var(--ivory);border:1px solid var(--line);border-radius:999px;padding:8px 12px}.host-landing-hero{padding:104px 0 44px;background:linear-gradient(135deg,#071126 0%,#0F2346 55%,#09142A 100%)}.host-landing-bg{position:absolute;inset:0;background:radial-gradient(circle at 15% 12%,rgba(212,175,55,.22),transparent 28%),linear-gradient(to bottom,rgba(9,20,42,.30),rgba(9,20,42,.92)),url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1500&q=80&auto=format&fit=crop') center/cover;opacity:.92}.host-landing-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.08fr) minmax(330px,.92fr);gap:46px;align-items:center}.host-landing-copy h1{font-family:'Playfair Display',Georgia,serif;font-size:clamp(2.45rem,5.7vw,5.55rem);line-height:.96;letter-spacing:-.035em;color:var(--ivory);margin:0 0 22px;max-width:900px}.host-landing-copy p{color:rgba(247,243,236,.72);font-size:1.07rem;line-height:1.72;max-width:650px;margin:0 0 30px}.host-landing-actions{display:flex;gap:12px;flex-wrap:wrap}.host-metrics-premium{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:34px}.host-metrics-premium>div{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.08);border-radius:20px;padding:14px}.host-metrics-premium b{font-family:'Playfair Display',serif;font-size:1.42rem;color:var(--gold2);display:block;letter-spacing:-.04em}.host-metrics-premium span{font-size:.76rem;color:rgba(247,243,236,.58);line-height:1.3;display:block}.host-dashboard-preview{position:relative;z-index:1;border-radius:38px;padding:18px;background:linear-gradient(180deg,rgba(255,255,255,.14),rgba(255,255,255,.05));border:1px solid rgba(255,255,255,.14);box-shadow:0 40px 110px rgba(0,0,0,.36),inset 0 1px 0 rgba(255,255,255,.12);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}.dashboard-glass-top{display:flex;align-items:center;gap:12px}.dashboard-glass-top img{width:46px;height:46px;border-radius:15px}.dashboard-glass-top div{flex:1}.dashboard-glass-top small{display:block;color:rgba(247,243,236,.56);font-size:.7rem;text-transform:uppercase;letter-spacing:.09em;font-weight:900}.dashboard-glass-top b{display:block;color:var(--ivory)}.dashboard-glass-top span{border-radius:999px;background:rgba(212,175,55,.16);border:1px solid rgba(212,175,55,.34);color:var(--gold2);padding:6px 10px;font-size:.68rem;font-weight:900}.dash-cover-card{height:220px;margin-top:18px;border-radius:28px;background:linear-gradient(to bottom,transparent,rgba(9,20,42,.78)),url('https://images.unsplash.com/photo-1510798831971-661eb04b3739?w=800&q=80&auto=format&fit=crop') center/cover;display:flex;align-items:flex-end;padding:20px;border:1px solid rgba(255,255,255,.10);box-shadow:inset 0 -60px 80px rgba(0,0,0,.22)}.dash-cover-card small{color:var(--gold2);font-size:.68rem;text-transform:uppercase;letter-spacing:.1em;font-weight:900}.dash-cover-card strong{display:block;color:var(--ivory);font-family:'Playfair Display',serif;font-size:1.5rem;line-height:1.05}.dash-cover-card em{display:block;color:rgba(247,243,236,.68);font-style:normal;font-size:.82rem;margin-top:4px}.dash-mini-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:12px}.dash-mini-grid>div{background:rgba(255,255,255,.075);border:1px solid rgba(255,255,255,.10);border-radius:18px;padding:13px}.dash-mini-grid small{display:block;color:rgba(247,243,236,.54);font-size:.68rem;text-transform:uppercase;letter-spacing:.08em;font-weight:900}.dash-mini-grid b{display:block;color:var(--ivory);font-family:'Playfair Display',serif;font-size:1.45rem;line-height:1;margin-top:5px}.dash-task-list{display:grid;gap:8px;margin-top:12px}.dash-task-list p{display:flex;align-items:center;gap:9px;margin:0;color:rgba(247,243,236,.72);font-size:.84rem;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.09);padding:11px 12px;border-radius:15px}.dash-task-list span{width:9px;height:9px;border-radius:99px;background:var(--gold2);box-shadow:0 0 0 4px rgba(212,175,55,.12)}.host-install-card{position:relative;z-index:2}.premium-feature-card{background:linear-gradient(180deg,#fff 0%,#FFFCF7 100%);border-color:rgba(9,20,42,.08);box-shadow:0 22px 70px rgba(9,20,42,.08)}.premium-feature-card .ico{background:linear-gradient(135deg,var(--navy),var(--navy2));color:var(--gold2);box-shadow:0 16px 36px rgba(9,20,42,.16)}.premium-price-card{box-shadow:0 22px 70px rgba(9,20,42,.09);border-color:rgba(9,20,42,.08)}
@media(max-width:1050px){.market-hero-grid,.host-landing-grid{grid-template-columns:1fr}.market-app-preview,.host-dashboard-preview{max-width:560px}.host-metrics-premium,.market-proof-row{grid-template-columns:repeat(2,1fr)}.market-search-premium{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}.market-search-premium .search-field{border-right:0;border:1px solid var(--line);border-radius:20px}.market-search-premium .btn{grid-column:1/-1}}
@media(max-width:760px){.brand-logo{min-width:152px;max-width:178px;height:44px;padding:6px 8px}.brand-logo svg,.brand-logo img{height:31px!important}.navlinks{justify-content:flex-end}.navlinks a:not(.btn):not(.nav-download){display:none!important}.navlinks .btn{display:inline-flex}.navlinks .nav-download{font-size:.78rem;padding:8px 10px}.market-hero,.host-landing-hero{padding:78px 0 32px}.market-hero .title,.host-landing-copy h1{font-size:clamp(2rem,11vw,3.05rem)!important}.market-proof-row,.host-metrics-premium{grid-template-columns:1fr 1fr}.market-search-premium{grid-template-columns:1fr;border-radius:26px}.market-search-premium .btn{width:100%}.market-results-head{display:block}.market-results-head p{margin-top:8px}.inline-install-card{align-items:flex-start;flex-direction:column;border-radius:24px}.inline-install-card .pwa-inline-btn{width:100%;margin-left:0}.pwa-inline-close{position:absolute;top:10px;right:10px}.market-app-preview,.host-dashboard-preview{border-radius:28px}.dash-mini-grid{grid-template-columns:1fr 1fr 1fr}.premium-listing-card img{height:210px}.listing-action-line strong{padding:8px 10px}}
@media(max-width:430px){.navin{gap:8px}.brand-logo{min-width:142px;max-width:152px}.brand-logo svg,.brand-logo img{height:29px!important}.navlinks .btn{display:none!important}.navlinks .nav-download{display:inline-flex!important}.market-proof-row,.host-metrics-premium,.dash-mini-grid{grid-template-columns:1fr}.market-hero,.host-landing-hero{padding-top:70px}.host-landing-actions .btn{width:100%}}

/* Mobile menu premium */
.mobile-menu-toggle{display:none;align-items:center;justify-content:center;gap:4px;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.08);color:#fff;border-radius:999px;min-height:42px;padding:9px 12px;font:inherit;font-size:.78rem;font-weight:800;cursor:pointer;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}
.mobile-menu-toggle span{display:block;width:15px;height:2px;background:currentColor;border-radius:999px}.mobile-menu-toggle b{margin-left:4px;font-size:.75rem}.nav.mobile-open .mobile-menu-toggle{background:var(--gold2);color:var(--navy);border-color:transparent}.nav.mobile-open .mobile-menu-toggle span:nth-child(1){transform:translateY(4px) rotate(45deg)}.nav.mobile-open .mobile-menu-toggle span:nth-child(2){opacity:0}.nav.mobile-open .mobile-menu-toggle span:nth-child(3){transform:translateY(-4px) rotate(-45deg)}
@media(max-width:980px){.mobile-menu-toggle{display:inline-flex;order:2}.nav .navin{position:relative}.nav .navlinks{display:none!important}.nav.mobile-open .navlinks{display:flex!important;position:fixed;left:14px;right:14px;top:72px;z-index:999;flex-direction:column;align-items:stretch;gap:8px;padding:16px;background:linear-gradient(180deg,rgba(9,20,42,.98),rgba(14,33,68,.98));border:1px solid rgba(255,255,255,.12);border-radius:24px;box-shadow:0 28px 80px rgba(0,0,0,.38);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}.nav.mobile-open .navlinks a{display:flex!important;width:100%;justify-content:center;color:#fff!important;padding:13px 14px;border-radius:16px;background:rgba(255,255,255,.06);font-weight:800}.nav.mobile-open .navlinks a.btn,.nav.mobile-open .navlinks .btn{background:var(--gold2)!important;color:var(--navy)!important}.nav.mobile-open .nav-download{border:1px solid rgba(212,175,55,.24)}body.mobile-menu-open{overflow:hidden}}
@media(max-width:480px){.nav.mobile-open .navlinks{top:66px;left:10px;right:10px;border-radius:20px}.mobile-menu-toggle b{display:none}.mobile-menu-toggle{padding:9px 10px}}
.nav[style*="255,255,255"] .mobile-menu-toggle,.nav[style*="background:#fff"] .mobile-menu-toggle,.nav[style*="background:rgba(255"] .mobile-menu-toggle{color:var(--navy);background:#fff;border-color:rgba(9,20,42,.14);box-shadow:0 10px 28px rgba(9,20,42,.08)}

/* V19 — mobile menu robusto para menu claro/escuro */
.nav .mobile-menu-toggle{position:relative;z-index:1001;flex-shrink:0}
.nav.nav-light .mobile-menu-toggle,.nav.nav-light:not(.mobile-open) .mobile-menu-toggle{color:var(--navy)!important;background:#fff!important;border-color:rgba(9,20,42,.14)!important;box-shadow:0 10px 28px rgba(9,20,42,.10)!important}
.nav.nav-light .navlinks a:not(.btn){color:var(--navy)}
.nav.mobile-open.nav-light .mobile-menu-toggle{background:var(--gold2)!important;color:var(--navy)!important;border-color:transparent!important}
@media(max-width:980px){.nav.mobile-open .navlinks{max-height:calc(100vh - 92px);overflow:auto}.nav.mobile-open.nav-light .navlinks{background:rgba(255,255,255,.98)!important;border-color:rgba(9,20,42,.10)!important;box-shadow:0 28px 80px rgba(9,20,42,.22)}.nav.mobile-open.nav-light .navlinks a{background:#F7F3EC!important;color:var(--navy)!important}.nav.mobile-open.nav-light .navlinks a.btn{background:var(--gold2)!important;color:var(--navy)!important}}


/* ============================================================
   VIZO RESERVA v27 — correção global de contraste e leitura
   ============================================================ */
/* Contextos claros: texto forte e legível */
body,
.section,
.section-ivory,
.card,
.price-card,
.premium-feature-card,
.premium-price-card,
.premium-listing-card,
.listing,
.search-card,
.dest-hero,
.dest-search-card,
.dest-state-card,
.city-pill-premium,
.cta,
.inline-install-card,
.market-search-premium,
.market-results-section,
.report-box-premium {
  color: var(--text);
}
h1,h2,h3,h4,h5,h6,
.title,
.section .title,
.section-ivory .title,
.card h1,.card h2,.card h3,.card h4,
.premium-listing-card h3,
.dest-state-card h3,
.city-pill-premium b,
.cta h2,
.market-results-head .title,
.section-head-premium .title {
  color: var(--navy) !important;
}
p,
.sub,
.section p,
.card p,
.section-ivory p,
.market-results-head p,
.dest-state-card p,
.city-pill-premium span,
.cta p,
label,
small {
  color: var(--muted);
}
.eyebrow,
.section .eyebrow,
.section-ivory .eyebrow,
.hero-eyebrow,
.premium-kicker,
.section-eyebrow {
  color: var(--copper) !important;
}
.field,
input,
select,
textarea {
  color: var(--navy) !important;
}
input::placeholder,
textarea::placeholder {
  color: #8A7E70 !important;
  opacity: 1;
}

/* Contextos escuros: texto claro e contraste alto */
.nav,
.footer,
.page-premium-hero,
.market-hero,
.host-landing-hero,
.dest-stats-card,
.card-navy,
.market-app-preview,
.market-app-card,
.host-dashboard-preview,
.host-card-premium,
.booking-card-v2,
.hero,
.app-bar,
.desktop-sidebar {
  color: var(--ivory);
}
.nav a:not(.btn),
.footer,
.footer span,
.page-premium-hero p,
.market-hero p,
.market-hero .sub,
.host-landing-copy p,
.dest-stats-card p,
.dest-stats-card small,
.card-navy p,
.card-navy .sub,
.market-app-preview small,
.market-app-card small,
.host-dashboard-preview small,
.host-card-premium p,
.booking-card-v2 small,
.hero p,
.hero .sub,
.app-bar,
.desktop-sidebar {
  color: rgba(247,243,236,.82) !important;
}
.page-premium-hero .title,
.market-hero .title,
.host-landing-copy h1,
.dest-stats-card b,
.market-app-preview b,
.market-app-card b,
.host-dashboard-preview b,
.host-card-premium h3,
.booking-card-v2 .booking-price-main,
.hero h1,
.hero h2,
.hero h3,
.app-bar .title,
.desktop-sidebar .title {
  color: var(--ivory) !important;
}
.page-premium-hero .eyebrow,
.market-hero .eyebrow,
.host-landing-copy .eyebrow,
.dest-stats-card .eyebrow,
.hero .eyebrow-pill,
.hero-eyebrow,
.premium-kicker,
.market-proof-row small,
.host-metrics-premium b {
  color: var(--gold2) !important;
}

/* Hero principal: reforço da leitura */
.hero-bg {
  background:
    linear-gradient(to bottom,
      rgba(9,20,42,.36) 0%,
      rgba(9,20,42,.62) 42%,
      rgba(9,20,42,.92) 100%),
    url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1400&q=80&auto=format&fit=crop')
    center/cover no-repeat !important;
}
.hero h1,
.hero p,
.hero .proof-item,
.hero .eyebrow-pill,
.hero .app-install-ribbon {
  text-shadow: 0 12px 30px rgba(0,0,0,.34);
}
.hero p,
.hero .sub,
.hero .proof-item small,
.hero .proof-item span {
  color: rgba(247,243,236,.88) !important;
}
.hero .proof-item b,
.hero .proof-item strong {
  color: var(--ivory) !important;
}

/* Navegação clara */
.nav-light .navlinks > a:not(.btn),
nav.nav[style*="background:rgba(255,255,255"] .navlinks > a:not(.btn) {
  color: rgba(9,20,42,.72) !important;
  font-weight: 700 !important;
}
.nav-light .navlinks > a:not(.btn):hover,
nav.nav[style*="background:rgba(255,255,255"] .navlinks > a:not(.btn):hover {
  color: var(--navy) !important;
}

/* Cards e painéis premium */
.market-proof-row > div,
.host-metrics-premium > div,
.dash-mini-grid > div,
.premium-benefit-card,
.property-meta-card,
.quote-estimate-card,
.review,
.review p {
  color: inherit;
}
.quote-estimate-card b,
.property-meta-card b,
.premium-benefit-card b,
.review-name,
.review-stars,
.listing-action-line strong {
  color: var(--navy) !important;
}

/* Rodapé */
.footer,
.footer a:not(.btn),
.footer-bottom span {
  color: rgba(247,243,236,.82) !important;
}

/* Responsivo */
@media (max-width: 760px) {
  .hero p,
  .market-hero .sub,
  .host-landing-copy p,
  .dest-hero .sub {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }
  .proof-item,
  .market-proof-row > div,
  .city-pill-premium,
  .dest-state-card,
  .premium-listing-card .listing-body {
    color: inherit !important;
  }
}


/* ============================================================
   VIZO RESERVA v29 — cinza mais escuro / preto
   ============================================================ */
body, p, .sub, label, small, li, td, th, .muted, .mini-note, .helper, .field-help { color: #2F2A24; }
.section p, .section-ivory p, .card p, .price-card p, .listing p, .dest-state-card p, .city-pill-premium span, .market-results-head p, .hero-lead { color:#2F2A24 !important; }
input::placeholder, textarea::placeholder { color:#4A433B !important; }
.page-premium-hero p, .market-hero p, .hero p, .hero .sub, .host-landing-copy p, .dest-stats-card p, .footer, .footer span, .footer a:not(.btn) { color: rgba(247,243,236,.9) !important; }
