
:root {
  --primary: #7a2a76;
  --secondary: #ffdb52;
  --accent: #e23b8f;
  --teal: #00a5b5;
  --text: #3a3550;
  --muted: #6b6a7a;
  --bg: #fff;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display:block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 18px; }

.topbar { background: var(--primary); color: white; padding: 8px 0; font-weight: 700; font-size: 14px; text-align:center; }
.topbar a { color: white; text-decoration: underline; }

.navbar { position: sticky; top: 0; z-index: 40; background:white; border-bottom: 1px solid #eee; }
.navbar .wrap { display:flex; align-items:center; justify-content:space-between; height:72px; gap:12px; }
.brand { display:flex; align-items:center; gap:10px; }
.brand img { width: 180px; }
.menu-toggle { display:none; background:transparent; border:none; font-size:28px; }

.nav { display:flex; align-items:center; gap: 10px; }
.nav a { padding: 10px 12px; border-radius: 10px; font-weight:800; color:#4a4560; }
.nav a:hover { background:#f3ecf8; }
.btn { display:inline-block; padding: 12px 18px; border-radius: 12px; font-weight:900; border:2px solid transparent; cursor:pointer; transition: transform .15s ease, box-shadow .2s ease; }
.btn-primary { background: var(--secondary); color: #3a2c00; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 18px rgba(0,0,0,.15); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,.75); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-soft { background:#f6e7f2; color:#4a4560; }
.btn-soft:hover { transform: translateY(-1px); box-shadow: 0 10px 18px rgba(0,0,0,.08); }

@media (max-width: 900px) {
  .nav { display:none; position:absolute; top:72px; left:0; right:0; background:white; border-bottom:1px solid #eee; padding: 8px; }
  .nav.open { display:block; }
  .menu-toggle { display:inline-flex; }
}

.hero { background: linear-gradient(135deg, var(--accent), var(--primary)); color:white; padding: 90px 0 70px; }
.hero h1 { font-size: clamp(28px, 6vw, 60px); margin:0 0 8px; }
.hero p { font-size: clamp(16px, 2.5vw, 22px); margin:0 0 20px; max-width:900px; }
.badges { display:flex; gap:10px; flex-wrap:wrap; }
.badge { padding:6px 10px; border-radius:999px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.45); font-weight:800; font-size:12px; }

.section { padding: 70px 0; }
.section h2 { font-size: clamp(24px, 4vw, 40px); margin:0 0 10px; }
.section p.lead { color:#6e6783; margin-top:0; }

.grid { display:grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns:1fr; } .grid-2 { grid-template-columns:1fr; } }

.card { background:white; border:1px solid #eee4f3; border-radius: 16px; padding: 18px; box-shadow: 0 8px 20px rgba(122,42,118,.06); }
.card h3 { margin: 10px 0 8px; }
.card p { color:#6e6783; }

.ribbon { background: var(--accent); color:white; padding: 10px 0; text-align:center; font-weight:900; }

.services .icon { width:44px; height:44px; border-radius: 10px; display:grid; place-items:center; background: #fde4f1; color: var(--accent); font-weight:900; }

.property-card img { border-radius: 14px; border: 1px solid #f0e3f1; }
.property-card .meta { display:flex; flex-wrap:wrap; gap:10px; color:#6e6783; font-weight: 700; }
.property-card .actions { margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap; }

.cta { background: linear-gradient(135deg, var(--primary), var(--accent)); color:white; border-radius: 18px; padding: 24px; }
.cta .cta-actions { display:flex; gap:10px; flex-wrap:wrap; }

.footer { padding: 36px 0; color:#7f7890; border-top: 1px solid #eee; }

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white; display:grid; place-items:center;
  box-shadow: 0 12px 24px rgba(0,0,0,.18); z-index: 60;
}
.whatsapp-float:hover { transform: translateY(-2px); }

.form { display:grid; gap: 12px; }
.input, textarea { width: 100%; padding: 12px 14px; border: 1px solid #e7d9ef; border-radius: 12px; font: inherit; }
label { font-weight: 800; font-size: 14px; color:#5a506e; }
small.hint { color:#8b84a1; }

.notice { background: #fff9e8; border: 1px solid #ffe3a3; color: #7a5600; padding: 10px 12px; border-radius: 10px; font-size: 14px; }

/* Video */
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee4f3;
  box-shadow: 0 8px 20px rgba(122,42,118,.06);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Lightbox */
.lightbox-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.72);
  display: none; align-items: center; justify-content: center; z-index: 9999;
  padding: 18px;
}
.lightbox-backdrop.open { display: flex; }
.lightbox-content {
  max-width: min(1100px, 96vw);
  max-height: 92vh;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  overflow: hidden;
}
.lightbox-content img { width: 100%; height: auto; display: block; }
.lightbox-close {
  position: fixed; top: 14px; right: 14px;
  width: 44px; height: 44px; border-radius: 999px;
  border: none; background: rgba(255,255,255,.18); color: white;
  font-size: 26px; cursor: pointer; z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,.28); }
