:root{
  --brand: #FD1B02;
  --brand2:#365598;
  --bg0:#ffffff;
  --bg1:#ffffff;
  --card:#ffffff;
  --card2:#ffffff;
  --text:#111111;
  --muted:#555555;
  --border: rgba(0,0,0,.08);
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --radius: 16px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:#111111;
  background:#ffffff;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:26px}
::selection{background: rgba(253,27,2,.28)}

.topbar{
  border-bottom:1px solid var(--border);
  background: rgba(0,0,0,.30);
}
.topbar .inner{
  max-width:var(--max);
  margin:0 auto;
  padding:10px 26px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.topbar a{color:var(--muted);text-decoration:none}
.topbar a:hover{color:var(--text)}

.nav{
  position:sticky;top:0;z-index:20;
  background: #ffffff;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.nav .inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;align-items:center;gap:12px;
  text-decoration:none;
}
.logo{
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.logo img{width:100%;height:100%;object-fit:cover}
.brand .name{font-weight:900;letter-spacing:.2px}
.brand .tag{display:block;color:var(--muted);font-size:12px;margin-top:2px}

.links{display:flex;gap:8px;flex-wrap:wrap}
.links a{
  padding:10px 12px;border-radius:14px;
  color:var(--muted);
  text-decoration:none;
  border:1px solid transparent;
}
.links a:hover{color:var(--text);border-color:var(--border);background:rgba(255,255,255,.03)}
.links a.active{color:var(--text);border-color:rgba(54,85,152,.35);background:rgba(54,85,152,.12)}

.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  background: #ffffff;
}
.pad{padding:22px}

.kicker{
  margin:0 0 10px 0;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
}
.h1{font-size:40px;line-height:1.08;margin:0 0 10px 0}
.h2{font-size:26px;line-height:1.2;margin:0 0 10px 0}
.p{margin:0;color:var(--muted);line-height:1.7}

.divider{height:1px;background: var(--border);margin:18px 0;}

.btnrow{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 14px;border-radius:14px;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.btn.primary{
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}
.btn.primary:hover{
  background: #c51500;
}
.btn.ghost:hover{background: rgba(255,255,255,.08)}

.grid2{display:grid;grid-template-columns:1.2fr .8fr;gap:16px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media (max-width: 950px){ .grid2{grid-template-columns:1fr} .h1{font-size:34px} }
@media (max-width: 900px){ .grid3{grid-template-columns:1fr} }

.profile{display:grid;grid-template-columns:120px 1fr;gap:14px;align-items:center}
@media (max-width: 420px){ .profile{grid-template-columns:1fr} }
.avatar{
  width:120px;height:120px;border-radius:18px;
  border:1px solid var(--border);
  overflow:hidden;
  background:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.18), transparent 55%),
    linear-gradient(135deg, rgba(54,85,152,.22), rgba(253,27,2,.08));
  display:flex;align-items:center;justify-content:center;
}
.chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.chip{
  font-size:12px;
  padding:7px 10px;border-radius:999px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.18);
  color: rgba(243,245,255,.86);
}

.stat{
  padding:16px;border-radius:16px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.16);
}
.stat strong{display:block;font-size:18px}
.stat span{color:var(--muted)}

.review{
  padding:16px;border-radius:16px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.16);
}
.review p{margin:0;line-height:1.65}
.review small{display:block;margin-top:10px;color:var(--muted)}

.searchbar{display:flex;gap:10px;flex-wrap:wrap}
.searchbar input,.searchbar select{
  flex:1;min-width:230px;
  padding:12px 12px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
.searchbar input::placeholder{color:rgba(243,245,255,.55)}
.searchbar button{
  border:1px solid var(--brand);
  background: var(--brand);
  color:#ffffff;
}
.searchbar button:hover{
  background:#c51500;
}

.property-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:14px}
@media (max-width: 1000px){ .property-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width: 650px){ .property-grid{grid-template-columns:1fr} }

.property{
  border-radius:18px;border:1px solid var(--border);
  overflow:hidden;background: rgba(0,0,0,.16);
}
.property .img{
  height:170px;
  background:
    radial-gradient(600px 250px at 20% 20%, rgba(54,85,152,.28), transparent 60%),
    radial-gradient(600px 250px at 80% 0%, rgba(253,27,2,.14), transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border-bottom:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
}
.property img{width:100%;height:170px;object-fit:cover;display:block}
.property .body{padding:14px}
.property h4{margin:0 0 8px 0}
.meta{display:flex;gap:10px;flex-wrap:wrap;color:var(--muted);font-size:13px}
.pill{
  display:inline-flex;align-items:center;
  padding:6px 10px;border-radius:999px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.18);
}
.price{margin-top:10px;font-size:18px;font-weight:950;letter-spacing:.2px}

.form{display:grid;gap:12px}
.form label{font-weight:800}
.form input,.form textarea,.form select{
  width:100%;
  padding:12px 12px;border-radius:14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
.form textarea{min-height:120px;resize:vertical}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width: 700px){ .row2{grid-template-columns:1fr} }

.small{color:var(--muted);font-size:13px}

.footer{
  margin-top:22px;
  border-top:1px solid var(--border);
  background: rgba(0,0,0,.28);
}
.footer .inner{
  max-width:var(--max);
  margin:0 auto;
  padding:18px 26px;
  display:grid;gap:10px;
}
.footer .cols{display:grid;grid-template-columns:1.2fr .8fr;gap:14px}
@media (max-width: 800px){ .footer .cols{grid-template-columns:1fr} }
.footer a{color:var(--muted);text-decoration:none}
.footer a:hover{color:var(--text)}

.whatsapp{
  position:fixed;right:18px;bottom:18px;z-index:50;
  width:56px;height:56px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;font-size:22px;
  border:1px solid rgba(46,229,157,.55);
  background: rgba(46,229,157,.18);
  box-shadow: var(--shadow);
}
.whatsapp:hover{background: rgba(46,229,157,.26)}
/* FORCE LIGHT THEME OVERRIDE */
body{
  background:#ffffff !important;
  color:#111111 !important;
}

.nav, .topbar, .footer{
  background:#ffffff !important;
  border-color: rgba(0,0,0,.08) !important;
}

.card{
  background:#ffffff !important;
  border-color: rgba(0,0,0,.08) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,.08) !important;
}

.p, .small, .brand .tag, .topbar .inner{
  color:#555555 !important;
}

.links a.active{
  border-color: rgba(253,27,2,.35) !important;
  background: rgba(253,27,2,.10) !important;
  color:#111111 !important;
}

.btn.primary, .searchbar button{
  background:#FD1B02 !important;
  border-color:#FD1B02 !important;
  color:#ffffff !important;
}
.btn.primary:hover, .searchbar button:hover{
  background:#c51500 !important;
}