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

:root {
  --bg: #080b14; --bg2: #0d1221; --bg3: #111827;
  --gold: #c8a44e; --gold-l: #e8d5a0; --gold-d: #9a7a2e;
  --white: #f8f6f1; --dim: rgba(248,246,241,.7); --muted: rgba(248,246,241,.45);
  --glass: rgba(255,255,255,.04); --glass-b: rgba(200,164,78,.2);
  --green: #25d366; --ease: cubic-bezier(.22,1,.36,1);
  --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg); color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7; overflow-x: hidden;
}

/* === AMBIENT BACKGROUND === */
.ambient {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(200,164,78,.08), transparent),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(200,164,78,.05), transparent);
}

.grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === UTILS === */
.inner { max-width: 1140px; margin: 0 auto; width: 100%; padding: 0 24px; }
.serif { font-family: 'Playfair Display', serif; }
.gold { color: var(--gold); }
.dim { color: var(--dim); }

.rv { opacity: 0; transform: translateY(32px); transition: all .8s var(--ease); }
.rv.ok { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; } .rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; } .rv-d4 { transition-delay: .4s; }

/* === HEADER === */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; height: 80px; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between; padding: 0 5%;
  transition: all .4s var(--ease);
}
.hdr.scrolled { height: 64px; background: rgba(8,11,20,.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--glass-b); }
.hdr-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.hdr-logo img { height: 42px; }
.hdr-logo span { font-family: 'Playfair Display',serif; font-size: 22px; color: var(--gold); font-weight: 700; }

.nav { display: flex; gap: 32px; align-items: center; }
.nav a { color: var(--dim); text-decoration: none; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; transition: color .3s; position: relative; }
.nav a::after { content:''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease); }
.nav a:hover { color: var(--gold-l); }
.nav a:hover::after { width: 100%; }

.hdr-cta { padding: 10px 24px; background: linear-gradient(135deg, var(--gold), var(--gold-l)); color: var(--bg); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; border-radius: 99px; text-decoration: none; transition: transform .3s, box-shadow .3s; }
.hdr-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,164,78,.4); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--gold); transition: all .3s var(--ease); }
.burger.on span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mob-menu { position: fixed; top: 80px; left: 0; right: 0; background: var(--bg); padding: 24px 5%; display: none; flex-direction: column; gap: 20px; z-index: 999; box-shadow: 0 20px 40px rgba(0,0,0,.6); }
.mob-menu.on { display: flex; }
.mob-menu a { color: var(--white); text-decoration: none; font-size: 16px; padding: 12px 0; border-bottom: 1px solid var(--glass-b); }

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 5% 80px; position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; max-width: 1140px; margin: 0 auto; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px;
  border: 1px solid var(--gold); border-radius: 99px; color: var(--gold);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 20px;
  animation: pulse-border 3s ease-in-out infinite;
}
@keyframes pulse-border { 0%,100% { border-color: var(--gold); } 50% { border-color: var(--gold-l); box-shadow: 0 0 20px rgba(200,164,78,.15); } }

.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(40px,5.5vw,68px);
  line-height: 1.08; margin-bottom: 24px; font-weight: 700;
}
.hero h1 .hline { display: inline; }
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-sub { font-size: 18px; color: var(--dim); margin-bottom: 36px; max-width: 520px; line-height: 1.8; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { padding: 16px 32px; border-radius: 14px; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: all .3s var(--ease); border: none; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-l)); color: var(--bg); box-shadow: 0 12px 32px rgba(200,164,78,.3); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(200,164,78,.45); }
.btn-outline { border: 2px solid var(--glass-b); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.cta-note { color: var(--muted); font-size: 13px; line-height: 1.6; margin-top: 14px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo {
  width: 100%; max-width: 380px; aspect-ratio: 3/4; border-radius: 24px;
  overflow: hidden; position: relative; z-index: 2;
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
  border: 1px solid var(--glass-b);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,11,20,.6));
}

.hero-ring {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  border: 1px solid rgba(200,164,78,.15); top: 50%; left: 50%;
  transform: translate(-50%,-50%); z-index: 1;
  animation: spin 30s linear infinite;
}
.hero-ring::before {
  content: ''; position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* === STATS RIBBON === */
.stats {
  padding: 48px 5%; background: var(--bg2);
  border-top: 1px solid var(--glass-b); border-bottom: 1px solid var(--glass-b);
}
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; text-align: center; }
.stats-row > div { padding: 20px; position: relative; }
.stats-row > div:not(:last-child)::after { content:''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--glass-b); }
.stats-row .n { font-family: 'Playfair Display',serif; font-size: clamp(32px,4vw,48px); color: var(--gold); }
.stats-row .l { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* === SERVICES === */
.services { padding: 100px 5%; }
.sec-label { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: 16px; }
.sec-title { font-family: 'Playfair Display',serif; font-size: clamp(32px,4.5vw,48px); margin-bottom: 12px; line-height: 1.15; }
.sec-desc { color: var(--dim); max-width: 600px; margin-bottom: 48px; }

.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.svc-card {
  background: var(--glass); border: 1px solid var(--glass-b); border-radius: var(--radius);
  padding: 36px 28px; transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l)); transform: scaleX(0);
  transform-origin: left; transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(200,164,78,.05); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(200,164,78,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gold); font-size: 22px; }
.svc-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 600; }
.svc-card p { color: var(--dim); font-size: 14px; line-height: 1.7; }
.svc-links { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.svc-link { display: inline-flex; margin-top: 18px; color: var(--gold-l); font-size: 12px; font-weight: 800; letter-spacing: .8px; text-decoration: none; text-transform: uppercase; }
.svc-links .svc-link { margin-top: 0; }
.svc-link:hover { color: var(--gold); }
.section-cta { display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: 40px; }
.section-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* === ABOUT (Split layout) === */
.about { padding: 100px 5%; background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; max-width: 400px; border-radius: var(--radius); border: 1px solid var(--glass-b); }
.about-badge {
  position: absolute; bottom: -16px; right: 0; background: var(--gold);
  color: var(--bg); padding: 16px 24px; border-radius: 16px; text-align: center;
}
.about-badge .n { font-family: 'Playfair Display',serif; font-size: 36px; font-weight: 700; line-height: 1; }
.about-badge .l { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.about-text h2 { font-family: 'Playfair Display',serif; font-size: clamp(30px,4vw,44px); margin-bottom: 20px; }
.about-text p { color: var(--dim); margin-bottom: 16px; }
.about-list { list-style: none; margin: 24px 0; }
.about-list li { padding: 8px 0; padding-left: 28px; position: relative; color: var(--dim); }
.about-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* === HIGHLIGHTS === */
.highlights { padding: 100px 5%; }
.highlight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.highlight-card {
  background: linear-gradient(180deg, rgba(200,164,78,.08), var(--glass));
  border: 1px solid var(--glass-b); border-radius: var(--radius);
  padding: 32px; position: relative; overflow: hidden;
}
.highlight-card::after {
  content: ''; position: absolute; right: -32px; bottom: -32px;
  width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid rgba(200,164,78,.16);
}
.highlight-card span {
  display: inline-flex; margin-bottom: 18px; color: var(--gold);
  font-family: 'Playfair Display',serif; font-size: 34px; line-height: 1;
}
.highlight-card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 600; }
.highlight-card p { color: var(--dim); font-size: 14px; line-height: 1.7; }

/* === AREA MAP === */
.area { padding: 100px 5%; background: var(--bg2); }
.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.area-map {
  background: linear-gradient(135deg, var(--bg3), var(--bg));
  border: 1px solid var(--glass-b); border-radius: var(--radius); padding: 40px;
  position: relative; min-height: 360px; overflow: hidden;
}
.area-map::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 200px; height: 200px;
  border-radius: 50%; border: 2px dashed rgba(200,164,78,.2);
  transform: translate(-50%,-50%); animation: spin 20s linear infinite;
}
.map-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 20px rgba(200,164,78,.5); }
.map-dot::after { content:''; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid rgba(200,164,78,.3); animation: ping 2s ease-out infinite; }
@keyframes ping { to { transform: scale(2.5); opacity: 0; } }
.map-dot.d1 { top: 30%; left: 40%; } .map-dot.d2 { top: 50%; left: 55%; }
.map-dot.d3 { top: 40%; left: 30%; } .map-dot.d4 { top: 60%; left: 45%; }
.map-dot.d5 { top: 35%; left: 60%; animation-delay: .5s; }
.map-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; z-index: 2; }
.map-center span { display: block; font-family: 'Playfair Display',serif; font-size: 48px; color: var(--gold); }
.map-center small { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 2px; }

.area-info h2 { font-family: 'Playfair Display',serif; font-size: clamp(28px,3.5vw,40px); margin-bottom: 16px; }
.area-info > p { color: var(--dim); margin-bottom: 28px; }
.bairro-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.bairro-tag { padding: 8px 18px; border: 1px solid var(--glass-b); border-radius: 99px; font-size: 13px; color: var(--dim); transition: all .3s; }
.bairro-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,164,78,.08); }

/* === CONTACT === */
.contact { padding: 100px 5%; }
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.contact-main { background: var(--glass); border: 1px solid var(--glass-b); border-radius: var(--radius); padding: 48px; text-align: center; }
.contact-main h3 { font-family: 'Playfair Display',serif; font-size: 28px; margin-bottom: 12px; }
.contact-main p { color: var(--dim); margin-bottom: 24px; }
.contact-main .btn { width: 100%; justify-content: center; }
.contact-main .cta-note { margin: 14px 0 0; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-card { background: var(--glass); border: 1px solid var(--glass-b); border-radius: 16px; padding: 24px; }
.ci-card h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 8px; }
.ci-card p { color: var(--dim); font-size: 14px; margin: 0; }

/* === FOOTER === */
.footer {
  padding: 48px 5% 32px; border-top: 1px solid var(--glass-b);
  background: var(--bg2);
}
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 36px; }
.footer-logo span { font-family: 'Playfair Display',serif; font-size: 18px; color: var(--gold); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 24px; justify-content: flex-end; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--glass-b); color: var(--muted); font-size: 13px; }

/* === WHATSAPP FLOAT === */
.wa-btn {
  position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px;
  background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4); z-index: 2000; text-decoration: none;
  transition: transform .3s; animation: wa-pulse 2s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.1); }
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.4); } 50% { box-shadow: 0 8px 36px rgba(37,211,102,.6); } }

/* === RESPONSIVE === */
@media (max-width:1024px) {
  .hero-grid, .about-grid, .area-layout, .contact-layout { grid-template-columns: 1fr; }
  .svc-grid, .highlight-grid { grid-template-columns: repeat(2,1fr); }
  .nav { display: none; } .burger { display: flex; }
  .hero { text-align: center; } .hero-sub { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stats-row > div:nth-child(2)::after { display: none; }
}

@media (max-width:640px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .hdr { height: 72px; }
  .hdr-logo span { font-size: 18px; }
  .hdr-logo img { height: 36px; }
  .hdr-cta { display: none; }
  .mob-menu { top: 72px; max-height: calc(100vh - 72px); overflow-y: auto; }
  .hero { min-height: auto; padding: 104px 6% 64px; overflow: hidden; }
  .hero-grid { width: 100%; max-width: 100%; gap: 40px; }
  .hero h1 { font-size: clamp(31px,8.6vw,40px); overflow-wrap: break-word; }
  .hero h1 .hline { display: block; }
  .hero-sub { font-size: 16px; line-height: 1.7; }
  .hero-btns { max-width: 340px; width: 100%; margin: 0 auto; }
  .section-actions { width: 100%; max-width: 340px; }
  .btn { padding-inline: 20px; }
  .cta-note { max-width: 320px; margin-left: auto; margin-right: auto; font-size: 12px; }
  .hero-photo { max-width: 300px; }
  .hero-ring { width: 320px; height: 320px; }
  .svc-grid, .highlight-grid, .stats-row { grid-template-columns: 1fr; }
  .stats-row > div::after { display: none !important; }
  .hero-btns { flex-direction: column; } .btn { width: 100%; justify-content: center; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .wa-btn { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}
