:root{
  --font-title:'Montserrat', sans-serif;
  --font-body:'Montserrat', sans-serif;
  --primary:#60298B;
  --primary-2:#7B3BB0;
  --primary-3:#A46AD0;
  --accent:#D7CA2F;
  --accent-2:#F2E879;
  --ink:#251233;
  --bg:#F8F3FB;
  --white:#ffffff;
  --text:#251233;
  --muted:#6D6176;
  --line:#E9DFF0;
  --danger:#9f2d2d;
  --danger-2:#c54545;
  --success-bg:#eaf8ef;
  --success-text:#1f6b40;
  --error-bg:#fcebea;
  --error-text:#9f2d2d;
  --shadow:0 14px 40px rgba(0,0,0,.08);
  --radius:20px;
  --container:1200px;
}

*{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}

body{
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  font-weight:300;
  font-size:18px;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button,input,textarea{font:inherit}

h1,
h2,
h3,
.brand strong,
.auth-showcase h1,
.auth-form-head h2,
.owner-copy h2,
.cta-box h2,
.property-modal-copy h3{
  font-family:var(--font-title);
  font-weight:800;
  letter-spacing:-.035em;
}

.hero p.lead,
.section-head p,
.auth-lead,
.brand-copy > span,
.topbar-message,
.footer-brand p,
.owner-copy p,
.cta-box p{
  font-family:var(--font-body);
  font-weight:300;
  font-style:normal;
}

.container{
  width:min(92%, var(--container));
  margin:0 auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  transition:.25s ease;
  border:1px solid transparent;
  cursor:pointer;
}

.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:var(--shadow);
}

.btn-primary:hover{
  background:var(--primary-2);
  transform:translateY(-2px);
}

.btn-outline{
  background:transparent;
  color:var(--primary);
  border-color:rgba(96,41,139,.18);
}

.btn-outline:hover{
  background:#fff;
  transform:translateY(-2px);
}

.btn-danger{
  background:var(--danger);
  color:#fff;
}

.btn-danger:hover{
  background:var(--danger-2);
}

.topbar{
  background:#3C1659;
  color:#fff;
  font-size:13px;
  padding:9px 0;
}

.topbar-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  text-align:left;
}

.topbar-message{
  font-weight:700;
}

.topbar-indicators{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
  font-size:12px;
  color:rgba(255,255,255,.86);
}

.topbar-indicators span{
  display:inline-flex;
  align-items:center;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  white-space:nowrap;
}

header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(10px);
  background:rgba(248,243,251,.90);
  border-bottom:1px solid rgba(96,41,139,.08);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
}

.brand-logo{
  width:58px;
  height:58px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 10px 24px rgba(96,41,139,.16);
}

.brand-copy{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.brand strong{
  font-size:22px;
  color:var(--primary);
  line-height:1;
}

.brand span{
  display:flex;
}

.brand-copy > span{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.08em;
  text-transform:uppercase;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:26px;
  list-style:none;
}

.nav-links a{
  color:#374151;
  font-size:14px;
  font-weight:600;
}

.nav-links a:hover{
  color:var(--primary);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.admin-link{
  font-size:13px;
  font-weight:700;
  color:var(--primary);
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(96,41,139,.15);
  background:rgba(255,255,255,.72);
  white-space:nowrap;
}

.admin-link:hover{
  background:#fff;
}

.hero{
  padding:60px 0 34px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}

.hero-copy{
  padding-right:12px;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(96,41,139,.08);
  color:var(--primary);
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  margin-bottom:18px;
}

.hero h1{
  font-size:clamp(2rem, 4.35vw, 3.65rem);
  line-height:1.04;
  color:var(--primary);
  margin-bottom:18px;
  font-weight:800;
  letter-spacing:-0.03em;
}

.hero p.lead{
  font-size:17px;
  color:#4b5563;
  max-width:620px;
  margin-bottom:26px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:28px;
}

.hero-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:12px;
}

.hero-point{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow:0 8px 20px rgba(0,0,0,.03);
}

.hero-point strong{
  display:block;
  color:var(--primary);
  font-size:14px;
  margin-bottom:6px;
}

.hero-point span{
  display:block;
  font-size:13px;
  color:var(--muted);
}

.hero-visual{
  position:relative;
}

.hero-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.04);
}

.hero-image{
  aspect-ratio:4/4.4;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position:relative;
}

.floating-card{
  position:absolute;
  left:-20px;
  bottom:24px;
  background:#fff;
  padding:18px;
  border-radius:18px;
  box-shadow:var(--shadow);
  width:min(290px, 85%);
  border:1px solid rgba(0,0,0,.05);
}

.floating-card small{
  display:block;
  color:var(--muted);
  margin-bottom:6px;
  font-size:12px;
}

.floating-card strong{
  display:block;
  color:var(--primary);
  font-size:17px;
  margin-bottom:10px;
}

.quick-links{
  padding:18px 0 30px;
}

.quick-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}

.quick-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:22px 14px;
  text-align:center;
  box-shadow:0 8px 24px rgba(0,0,0,.03);
  transition:.25s ease;
  min-height:150px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.quick-item:hover{
  transform:translateY(-4px);
}

.quick-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(96,41,139,.07);
}

.quick-item span{
  font-size:15px;
  font-weight:700;
  color:var(--primary);
}

section{
  padding:52px 0;
}

.section-head{
  text-align:center;
  margin-bottom:32px;
}

.section-head h2{
  font-size:clamp(1.9rem,4vw,3rem);
  color:var(--primary);
  line-height:1.1;
  margin-bottom:12px;
}

.section-head p{
  max-width:780px;
  margin:0 auto;
  color:#4b5563;
  font-size:16px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}

.property-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.service-card,
.property-card{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,.05);
  border:1px solid rgba(0,0,0,.04);
}

.service-card{
  padding:28px;
}

.service-card-featured{
  background:#fff;
  border-color:rgba(0,0,0,.04);
}

.service-card .num{
  width:48px;
  height:48px;
  border-radius:14px;
  background:rgba(96,41,139,.08);
  color:var(--primary);
  font-weight:800;
  display:grid;
  place-items:center;
  margin-bottom:18px;
}

.service-card h3{
  color:var(--primary);
  font-size:22px;
  margin-bottom:12px;
}

.service-card p{
  color:#4b5563;
  margin-bottom:16px;
}

.service-card ul{
  list-style:none;
  display:grid;
  gap:10px;
}

.service-card li{
  position:relative;
  padding-left:18px;
  color:#4b5563;
  font-size:14px;
}

.service-card li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--accent);
  font-size:18px;
  line-height:1;
}

.property-image{
  height:240px;
  background-size:cover;
  background-position:center;
}

.property-body{
  padding:22px;
}

.property-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-bottom:12px;
}

.property-tag{
  display:inline-block;
  background:rgba(96,41,139,.08);
  color:var(--primary);
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.property-chip{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  color:#7a5a19;
  background:rgba(215,202,47,.18);
}

.property-body h3{
  font-size:20px;
  color:var(--primary);
  margin-bottom:8px;
}

.property-body p{
  font-size:14px;
  color:var(--muted);
  margin-bottom:16px;
}

.property-location{
  font-weight:700;
  color:#475569;
  margin-bottom:6px;
}

.property-price{
  font-weight:800;
  color:var(--primary);
  margin-bottom:10px;
}

.catalog-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(96,41,139,.08);
  color:var(--primary);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.catalog-filters{
  display:grid;
  gap:18px;
  padding:24px;
  margin-bottom:24px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(252,250,246,.98) 100%);
  border:1px solid rgba(96,41,139,.08);
  box-shadow:0 12px 32px rgba(96,41,139,.05);
}

.catalog-filter-group{
  display:grid;
  gap:12px;
}

.catalog-filter-group span{
  color:var(--primary);
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.catalog-filter-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.catalog-filter{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(96,41,139,.12);
  background:#fff;
  color:#48606f;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
}

.catalog-filter:hover,
.catalog-filter.is-active{
  background:var(--primary);
  border-color:var(--primary);
  color:#fff;
  transform:translateY(-1px);
}

.property-grid-refined{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}

.property-card-refined{
  display:flex;
  flex-direction:column;
  min-height:100%;
  border-radius:22px;
  border:1px solid #dbe5f1;
  box-shadow:0 16px 36px rgba(16,36,52,.06);
  overflow:hidden;
}

.property-image-refined{
  position:relative;
  height:auto;
  aspect-ratio:1 / 1.05;
}

.property-image-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  padding:14px;
  background:linear-gradient(180deg, rgba(10,18,28,.26) 0%, rgba(10,18,28,0) 38%);
}

.property-badge{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  background:#ffffff;
  color:var(--primary);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.property-badge-soft{
  background:rgba(255,255,255,.86);
  color:#58697a;
}

.property-body-refined{
  display:flex;
  flex-direction:column;
  gap:16px;
  flex:1;
  padding:18px;
}

.property-copy-top{
  display:grid;
  gap:8px;
}

.property-overline{
  color:#6a7a91;
  font-size:13px;
}

.property-price-large{
  font-size:2rem;
  line-height:1;
  letter-spacing:-.04em;
  margin-top:2px;
}

.property-description{
  color:#667085;
  font-size:13px;
  line-height:1.5;
}

.property-feature-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.property-feature-row span{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  background:#f1f5f9;
  color:#48606f;
  font-size:12px;
  font-weight:700;
}

.property-actions-refined{
  margin-top:auto;
}

.property-actions-double{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.property-btn{
  width:100%;
  background:#edf3ff;
  color:#3d5e94;
  border-color:#d7e4fb;
}

.property-btn-primary{
  width:100%;
  box-shadow:none;
}

.property-btn:hover{
  background:#dfeafd;
}

.property-modal{
  position:fixed;
  inset:0;
  z-index:320;
}

.property-modal[hidden]{
  display:none !important;
}

.property-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(9,20,28,.58);
  backdrop-filter:blur(8px);
}

.property-modal-panel{
  position:relative;
  width:min(1100px, calc(100% - 30px));
  max-height:calc(100vh - 30px);
  margin:15px auto;
  overflow:auto;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(250,247,241,.98) 100%);
  box-shadow:0 28px 80px rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.45);
}

.property-modal-close{
  position:absolute;
  top:18px;
  right:18px;
  width:44px;
  height:44px;
  border:1px solid rgba(96,41,139,.12);
  border-radius:50%;
  background:#fff;
  color:var(--primary);
  font-size:24px;
  line-height:1;
  cursor:pointer;
  z-index:2;
}

.property-modal-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  padding:28px;
}

.property-gallery{
  display:grid;
  gap:14px;
}

.property-gallery-main{
  min-height:440px;
  border-radius:24px;
  background:#dde6f0 center/cover no-repeat;
  box-shadow:0 18px 34px rgba(16,36,52,.10);
}

.property-gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(84px, 1fr));
  gap:10px;
}

.property-gallery-thumb{
  aspect-ratio:1/1;
  border-radius:18px;
  border:2px solid transparent;
  background:#dde6f0 center/cover no-repeat;
  cursor:pointer;
  transition:.2s ease;
}

.property-gallery-thumb.is-active{
  border-color:var(--primary);
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(96,41,139,.12);
}

.property-modal-copy{
  display:grid;
  align-content:start;
  gap:16px;
  padding-top:10px;
}

.property-modal-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(96,41,139,.08);
  color:var(--primary);
  font-size:12px;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.property-modal-copy h3{
  margin:0;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.02;
  letter-spacing:-.04em;
  color:var(--primary);
}

.property-modal-location{
  margin:0;
  color:#516173;
  font-size:16px;
  font-weight:700;
}

.property-modal-price{
  margin:0;
  color:var(--primary);
  font-size:2.15rem;
  line-height:1;
  letter-spacing:-.04em;
  font-weight:800;
}

.property-modal-features{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.property-modal-features span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#eef3f8;
  color:#48606f;
  font-size:13px;
  font-weight:700;
}

.property-modal-description{
  display:grid;
  gap:8px;
  padding:18px 20px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(96,41,139,.08);
}

.property-modal-description h4{
  margin:0;
  color:var(--primary);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.property-modal-description p{
  margin:0;
  color:#556579;
  font-size:15px;
  line-height:1.7;
}

.property-modal-summary{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.property-modal-summary div{
  display:grid;
  gap:6px;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(96,41,139,.08);
}

.property-modal-summary strong{
  color:var(--primary);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.property-modal-summary span{
  color:#4c5b6a;
  font-size:15px;
}

.property-modal-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.catalog-empty-hidden{
  display:none;
}

.catalog-more{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.catalog-more-btn{
  min-width:260px;
}

.empty-state{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  box-shadow:0 8px 24px rgba(0,0,0,.03);
  text-align:center;
  color:var(--muted);
}

.testimonials{
  position:relative;
  background:
    radial-gradient(circle at left 8% top 18%, rgba(215,202,47,.16), transparent 24%),
    radial-gradient(circle at right 10% bottom 12%, rgba(96,41,139,.12), transparent 26%);
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:18px;
}

.testimonial-card{
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:100%;
  padding:24px;
  border-radius:26px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(96,41,139,.10);
  box-shadow:0 16px 34px rgba(96,41,139,.07);
}

.testimonial-stars{
  color:#B29F10;
  letter-spacing:.08em;
  font-size:14px;
}

.testimonial-card p{
  color:#4b5563;
  font-size:14px;
  line-height:1.65;
  margin:0;
  flex:1;
}

.testimonial-card strong{
  color:var(--primary);
  font-size:16px;
}

.testimonial-card span{
  color:var(--muted);
  font-size:13px;
  font-weight:600;
}

.testimonial-card-featured{
  background:linear-gradient(145deg, #60298B 0%, #7B3BB0 100%);
  color:#fff;
}

.testimonial-card-featured p,
.testimonial-card-featured span{
  color:rgba(255,255,255,.82);
}

.testimonial-card-featured strong{
  color:#fff;
}

.testimonial-card-featured .testimonial-stars{
  color:var(--accent-2);
}

.owner-block{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.owner-copy{
  background:#fff;
  border-radius:28px;
  padding:40px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}

.owner-copy h2{
  font-size:clamp(1.9rem, 3vw, 2.8rem);
  color:var(--primary);
  margin-bottom:14px;
  line-height:1.12;
}

.owner-copy p{
  color:#4b5563;
  margin-bottom:20px;
  font-size:16px;
}

.owner-copy ul{
  list-style:none;
  display:grid;
  gap:12px;
  margin-bottom:24px;
}

.owner-copy li{
  color:#4b5563;
  padding-left:20px;
  position:relative;
  font-size:15px;
}

.owner-copy li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--primary-2);
  font-weight:700;
}

.owner-image{
  min-height:520px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.cta-final{
  padding:80px 0 100px;
}

.cta-box{
  background:linear-gradient(135deg, #4A1E6F 0%, #7B3BB0 100%);
  color:#fff;
  padding:48px;
  border-radius:30px;
  box-shadow:var(--shadow);
  text-align:center;
}

.cta-box h2{
  font-size:clamp(2rem,4vw,3.1rem);
  margin-bottom:14px;
  line-height:1.08;
}

.cta-box p{
  max-width:760px;
  margin:0 auto 26px;
  color:rgba(255,255,255,.86);
  font-size:16px;
}

.cta-box .actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.cta-box .btn-outline{
  border-color:rgba(255,255,255,.3);
  color:#fff;
}

.cta-box .btn-outline:hover{
  background:rgba(255,255,255,.08);
}

.site-footer{
  position:relative;
  padding:54px 0 28px;
  color:rgba(255,255,255,.82);
  font-size:14px;
  text-align:left;
  background:
    radial-gradient(circle at top left, rgba(215,202,47,.16), transparent 28%),
    linear-gradient(135deg, #28123B 0%, #60298B 58%, #7B3BB0 100%);
  overflow:hidden;
}

.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:42px 42px;
  opacity:.28;
  pointer-events:none;
}

.site-footer .container{
  position:relative;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.35fr .75fr .9fr;
  gap:34px;
  align-items:start;
}

.footer-brand{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

.footer-brand img{
  width:86px;
  height:86px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 18px 34px rgba(0,0,0,.16);
}

.footer-brand strong,
.footer-links strong,
.footer-contact strong{
  display:block;
  color:#fff;
  font-size:17px;
  margin-bottom:10px;
}

.footer-brand p{
  max-width:420px;
  color:rgba(255,255,255,.76);
  margin:0;
}

.footer-links,
.footer-contact{
  display:grid;
  gap:9px;
}

.footer-links a,
.footer-contact a,
.footer-contact span{
  color:rgba(255,255,255,.74);
  font-weight:600;
}

.footer-links a:hover,
.footer-contact a:hover{
  color:var(--accent-2);
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-top:28px;
  margin-top:34px;
  border-top:1px solid rgba(255,255,255,.16);
  color:rgba(255,255,255,.68);
  font-size:13px;
}

.whatsapp-float,
.instagram-float{
  position:fixed;
  right:18px;
  width:62px;
  height:62px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  z-index:200;
  font-size:28px;
}

.whatsapp-float{
  bottom:18px;
  background:#25D366;
  box-shadow:0 12px 28px rgba(37,211,102,.35);
}

.instagram-float{
  bottom:92px;
  background:linear-gradient(135deg,#833AB4 0%,#E1306C 48%,#FCAF45 100%);
  box-shadow:0 12px 28px rgba(225,48,108,.32);
}

.whatsapp-float:hover,
.instagram-float:hover{
  transform:scale(1.05);
}

.app-shell main{
  padding-bottom:90px;
}

.auth-section,
.admin-section{
  padding:48px 0 40px;
}

.auth-container{
  display:flex;
  justify-content:center;
}

.auth-card,
.admin-panel{
  background:#fff;
  border-radius:28px;
  padding:32px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}

.auth-card{
  width:min(100%, 560px);
}

.auth-page{
  background:
    radial-gradient(circle at top left, rgba(215,202,47,.22), transparent 28%),
    radial-gradient(circle at right 12% top 16%, rgba(123,59,176,.16), transparent 24%),
    linear-gradient(180deg, #f8f5ee 0%, #f1ece3 100%);
}

.auth-page header{
  background:rgba(248,245,238,.82);
}

.auth-section{
  position:relative;
  overflow:hidden;
}

.auth-section::before,
.auth-section::after{
  content:"";
  position:absolute;
  border-radius:50%;
  filter:blur(10px);
  pointer-events:none;
}

.auth-section::before{
  width:320px;
  height:320px;
  left:-90px;
  top:26px;
  background:rgba(215,202,47,.12);
}

.auth-section::after{
  width:260px;
  height:260px;
  right:-80px;
  bottom:10px;
  background:rgba(96,41,139,.10);
}

.auth-card.auth-card-split{
  width:min(100%, 1120px);
  padding:0;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  overflow:hidden;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(14px);
}

.auth-showcase{
  position:relative;
  padding:44px;
  background:
    linear-gradient(145deg, rgba(74,30,111,.96) 0%, rgba(123,59,176,.92) 55%, rgba(215,202,47,.72) 140%);
  color:#fff;
}

.auth-showcase::after{
  content:"";
  position:absolute;
  inset:auto -50px -70px auto;
  width:240px;
  height:240px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
}

.auth-kicker,
.auth-form-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:8px 14px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.auth-kicker{
  color:#f8f3e6;
  background:rgba(255,255,255,.12);
  margin-bottom:18px;
}

.auth-showcase h1{
  font-size:clamp(2.5rem, 5vw, 4.4rem);
  line-height:1;
  margin-bottom:18px;
  letter-spacing:-.04em;
}

.auth-lead{
  max-width:440px;
  color:rgba(255,255,255,.86);
  font-size:17px;
  margin-bottom:28px;
}

.auth-feature-list{
  display:grid;
  gap:14px;
  margin-bottom:28px;
}

.auth-feature{
  padding:16px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(8px);
}

.auth-feature strong{
  display:block;
  font-size:15px;
  margin-bottom:4px;
}

.auth-feature span{
  color:rgba(255,255,255,.76);
  font-size:14px;
}

.auth-showcase-note{
  display:inline-flex;
  max-width:360px;
  padding:12px 16px;
  border-radius:18px;
  background:rgba(42,20,62,.22);
  color:rgba(255,255,255,.82);
  font-size:13px;
}

.auth-form-panel{
  padding:44px;
  display:grid;
  align-content:center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(252,251,248,.96) 100%);
}

.auth-form-head{
  margin-bottom:26px;
}

.auth-form-eyebrow{
  color:var(--primary);
  background:rgba(96,41,139,.08);
  margin-bottom:14px;
}

.auth-form-head h2{
  margin-bottom:10px;
}

.auth-form{
  gap:18px;
}

.admin-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:24px;
  align-items:start;
}

.section-head-left{
  text-align:left;
  margin-bottom:24px;
}

.section-head-left p{
  margin-left:0;
}

.stack-form{
  display:grid;
  gap:16px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.form-field{
  display:grid;
  gap:8px;
}

.form-field span{
  font-size:14px;
  font-weight:700;
  color:var(--primary);
}

.form-field input,
.form-field textarea{
  width:100%;
  border:1px solid #d8d5cc;
  border-radius:16px;
  padding:14px 16px;
  background:#fcfbf8;
  color:var(--text);
}

.form-field textarea{
  resize:vertical;
  min-height:130px;
}

.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color:rgba(96,41,139,.45);
  box-shadow:0 0 0 4px rgba(96,41,139,.08);
}

.check-field{
  display:flex;
  align-items:center;
  gap:12px;
  color:#475569;
  font-size:14px;
  font-weight:600;
}

.alert{
  border-radius:16px;
  padding:14px 16px;
  font-weight:600;
  margin-bottom:18px;
}

.alert-success{
  background:var(--success-bg);
  color:var(--success-text);
}

.alert-error{
  background:var(--error-bg);
  color:var(--error-text);
}

.admin-actions,
.admin-inline-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.admin-list{
  display:grid;
  gap:16px;
}

.admin-property-card{
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  display:grid;
  gap:16px;
  background:#fcfbf8;
}

.admin-property-copy h3{
  color:var(--primary);
  margin-bottom:8px;
  font-size:20px;
}

.admin-property-copy p{
  color:var(--muted);
  font-size:14px;
}

@media (max-width: 1100px){
  .hero-grid,
  .owner-block,
  .admin-grid,
  .auth-card.auth-card-split{
    grid-template-columns:1fr;
  }

  .quick-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .services-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .testimonial-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

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

  .footer-brand{
    grid-column:1 / -1;
  }

  .services-grid,
  .property-grid,
  .property-grid-refined,
  .property-modal-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .hero-points{
    grid-template-columns:1fr;
  }

  .owner-image{
    min-height:380px;
  }

  .auth-showcase,
  .auth-form-panel{
    padding:34px;
  }
}

@media (max-width: 820px){
  .nav-links{
    display:none;
  }

  .navbar{
    padding:16px 0;
    flex-wrap:wrap;
  }

  .brand-logo{
    width:52px;
    height:52px;
    border-radius:16px;
  }

  .header-actions{
    width:100%;
    justify-content:flex-end;
  }

  .hero{
    padding:38px 0 18px;
  }

  .hero h1{
    font-size:2.05rem;
  }

  .quick-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .floating-card{
    position:static;
    width:100%;
    margin-top:16px;
  }

  .owner-copy{
    padding:28px;
  }

  .cta-box{
    padding:34px 22px;
  }

  .auth-showcase h1{
    font-size:2.8rem;
  }

  .catalog-filters{
    padding:20px;
  }

  .topbar-content{
    justify-content:center;
    text-align:center;
    flex-direction:column;
    gap:8px;
  }

  .topbar-indicators{
    justify-content:center;
  }

  .property-actions-double,
  .property-modal-summary{
    grid-template-columns:1fr;
  }

  .property-gallery-main{
    min-height:280px;
  }

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

  .footer-grid,
  .footer-bottom{
    grid-template-columns:1fr;
    flex-direction:column;
  }

  .footer-grid{
    gap:26px;
  }
}

@media (max-width: 560px){
  .quick-grid{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .quick-item{
    min-height:132px;
    padding:18px 10px;
  }

  .quick-item span{
    font-size:14px;
  }

  .quick-icon{
    width:58px;
    height:58px;
  }

  .catalog-filter-chips{
    gap:8px;
  }

  .catalog-filter{
    width:100%;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .header-actions,
  .admin-actions,
  .admin-inline-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .brand{
    width:100%;
  }

  .brand strong{
    font-size:19px;
  }

  .footer-brand{
    flex-direction:column;
  }

  .auth-card,
  .admin-panel{
    padding:22px;
  }

  .auth-card.auth-card-split{
    padding:0;
  }

  .auth-showcase,
  .auth-form-panel{
    padding:24px;
  }

  .auth-lead{
    font-size:16px;
  }
}


