:root{
  --bg:#121013;
  --bg-deep:#0A090B;
  --panel:#F5EFE4;
  --panel-line:#E4D8C2;
  --card:#1B181B;
  --card-line:rgba(216,179,114,0.16);
  --gold:#C79A4B;
  --gold-soft:#E3BD79;
  --cream:#F5EFE4;
  --ink:#241A12;
  --dim:#B2A691;
  --radius:20px;
  --radius-sm:12px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--cream);
  font-family:'Inter',sans-serif;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{font-family:'Fraunces',serif;margin:0;letter-spacing:-0.01em;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
.wrap{max-width:1160px;margin:0 auto;padding:0 24px;}
a:focus-visible,button:focus-visible{outline:2px solid var(--gold-soft);outline-offset:3px;}

/* Animação de entrada */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s ease, transform .7s ease;}
.reveal.in{opacity:1;transform:none;}
@media (prefers-reduced-motion: reduce){
  *{animation:none !important;transition:none !important;}
  .reveal{opacity:1;transform:none;}
}

/* ---------- HEADER ---------- */
header{position:sticky;top:0;z-index:50;}
.nav-shell{margin:14px auto 0;max-width:1160px;padding:0 24px;}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 18px;
  background:rgba(18,16,19,0.72);
  border:1px solid rgba(227,189,121,0.2);
  border-radius:100px;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.brand{display:flex;align-items:center;gap:12px;}
.brand-badge{
  width:40px;height:40px;border-radius:50%;overflow:hidden;
  background:#0A090B;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(227,189,121,0.35);flex-shrink:0;
}
.brand-badge img{width:150%;height:150%;object-fit:cover;object-position:center 45%;}
.brand-badge.big{width:70px;height:70px;margin:0 auto 22px;}
.brand-badge.small{width:34px;height:34px;}
.brand-word{font-family:'Fraunces',serif;font-weight:600;font-size:1.08rem;line-height:1.1;}
.brand-word span{display:block;font-family:'Inter',sans-serif;font-weight:500;font-size:0.66rem;letter-spacing:0.08em;color:var(--gold-soft);text-transform:uppercase;}
.nav-cta{
  display:inline-flex;align-items:center;
  background:var(--gold-soft);color:#1B140C;
  padding:10px 18px;border-radius:100px;
  font-weight:600;font-size:0.86rem;
  transition:transform .15s ease, background .2s ease;
}
.nav-cta:hover{background:var(--cream);transform:translateY(-1px);}
@media (max-width:600px){
  .brand-word span{display:none;}
  .nav-cta span{display:none;}
}

/* ---------- HERO ---------- */
.hero{position:relative;padding-top:28px;}
.hero-grid{
  display:grid;grid-template-columns:1.05fr 0.95fr;gap:48px;align-items:center;
  max-width:1160px;margin:0 auto;padding:56px 24px 80px;
}
.eyebrow-loc{
  display:inline-flex;align-items:center;gap:8px;
  font-size:0.82rem;color:var(--gold-soft);font-weight:600;
  background:rgba(227,189,121,0.1);
  border:1px solid rgba(227,189,121,0.25);
  padding:7px 14px;border-radius:100px;margin-bottom:22px;
}
.hero h1{font-size:clamp(2.5rem,5vw,3.8rem);line-height:1.04;font-weight:600;color:var(--cream);}
.hero h1 em{font-style:italic;font-weight:500;color:var(--gold-soft);}
.hero p{font-size:1.06rem;line-height:1.65;color:var(--dim);max-width:42ch;margin-top:20px;}
.cta-row{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px;}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:15px 28px;border-radius:100px;
  font-weight:600;font-size:0.95rem;
  border:1px solid transparent;
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn-solid{background:var(--gold-soft);color:#1B140C;}
.btn-solid:hover{background:var(--cream);transform:translateY(-1px);}
.btn-line{border-color:rgba(227,189,121,0.4);color:var(--cream);}
.btn-line:hover{border-color:var(--gold-soft);background:rgba(227,189,121,0.08);}

.hero-visual{position:relative;}
.hero-photo{
  position:relative;border-radius:var(--radius);overflow:hidden;
  border:1px solid rgba(227,189,121,0.18);
  box-shadow:0 30px 60px -30px rgba(0,0,0,0.6);
}
.hero-photo img{width:100%;height:500px;object-fit:cover;object-position:center 20%;filter:saturate(0.95) contrast(1.05);}
.hero-photo::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top, rgba(10,9,11,0.5), transparent 50%);
}
.hero-badge{
  position:absolute;left:-18px;bottom:-18px;
  width:110px;height:110px;border-radius:50%;
  background:#0A090B;border:1px solid rgba(227,189,121,0.4);
  box-shadow:0 14px 30px -10px rgba(0,0,0,0.6);
  overflow:hidden;display:flex;align-items:center;justify-content:center;
}
.hero-badge img{width:170%;height:170%;object-fit:cover;object-position:center 45%;}
@media (max-width:860px){
  .hero-grid{grid-template-columns:1fr;padding-top:36px;gap:36px;}
  .hero-photo img{height:380px;}
  .hero-badge{width:84px;height:84px;left:-10px;bottom:-10px;}
}

/* ---------- SOBRE ---------- */
.about{background:var(--panel);color:var(--ink);padding:96px 0;}
.about-grid{display:grid;grid-template-columns:0.9fr 1.1fr;gap:56px;align-items:center;}
.about h2{font-size:clamp(1.9rem,3.4vw,2.5rem);font-weight:600;color:var(--ink);margin-bottom:18px;}
.about p{line-height:1.75;font-size:1.02rem;color:#463523;max-width:52ch;}
.about p + p{margin-top:16px;}
.about-figure{margin:0;border-radius:var(--radius);overflow:hidden;border:1px solid var(--panel-line);box-shadow:0 24px 50px -30px rgba(36,26,18,0.35);}
.about-figure img{width:100%;filter:sepia(0.04) contrast(1.02);}
.about-figure figcaption{font-size:0.82rem;color:#7A6647;padding:12px 16px;background:#EFE6D3;}
@media (max-width:860px){.about-grid{grid-template-columns:1fr;gap:36px;}}

/* ---------- SERVIÇOS ---------- */
.services{background:var(--bg);padding:96px 0;}
.services-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:40px;flex-wrap:wrap;}
.services h2{font-size:clamp(1.9rem,3.4vw,2.5rem);font-weight:600;}
.services-head p{color:var(--dim);max-width:38ch;line-height:1.6;margin:0;}
.price-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;}
.price-card{
  background:var(--card);border:1px solid var(--card-line);
  border-radius:var(--radius-sm);padding:20px 22px;
  display:flex;align-items:center;gap:14px;
  transition:border-color .2s ease, transform .2s ease;
}
.price-card::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--gold-soft);flex-shrink:0;}
.price-card:hover{border-color:rgba(227,189,121,0.45);transform:translateY(-2px);}
.price-card.wide{grid-column:1 / -1;}
.price-name{font-size:1rem;color:var(--cream);font-weight:500;}
.price-name small{display:block;color:var(--dim);font-size:0.78rem;font-weight:400;margin-top:3px;}
@media (max-width:640px){.price-grid{grid-template-columns:1fr;}}

/* ---------- GALERIA ---------- */
.gallery{background:var(--bg-deep);padding:96px 0;}
.gallery h2{font-size:clamp(1.9rem,3.4vw,2.5rem);font-weight:600;}
.gallery h2 em{font-style:italic;color:var(--gold-soft);font-weight:500;}
.gallery-sub{color:var(--dim);max-width:48ch;line-height:1.6;margin:14px 0 40px;}
.gallery-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  grid-template-rows:auto auto;
  gap:16px;
}
.g-item{
  margin:0;border-radius:var(--radius);overflow:hidden;
  border:1px solid rgba(227,189,121,0.15);
}
.g-item img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
.g-item:hover img{transform:scale(1.03);}
.g-tall{grid-row:1 / 3;}
.g-tall img{min-height:480px;object-position:center 20%;}
.g-wide img{height:230px;}
.g-item:not(.g-tall):not(.g-wide) img{height:230px;}
@media (max-width:720px){
  .gallery-grid{grid-template-columns:1fr;}
  .g-tall{grid-row:auto;}
  .g-tall img{min-height:0;height:340px;}
}

/* ---------- LOCALIZAÇÃO ---------- */
.location{background:var(--panel);color:var(--ink);padding:96px 0;}
.loc-grid{display:grid;grid-template-columns:0.95fr 1.05fr;gap:48px;align-items:stretch;}
.location h2{font-size:clamp(1.9rem,3.4vw,2.5rem);font-weight:600;color:var(--ink);margin-bottom:22px;}
.loc-card{background:#FBF7EE;border:1px solid var(--panel-line);border-radius:var(--radius);padding:8px 24px;}
.loc-detail{display:flex;gap:14px;padding:18px 0;border-bottom:1px solid var(--panel-line);}
.loc-detail:last-of-type{border-bottom:none;}
.loc-label{font-size:0.76rem;color:#96805A;font-weight:700;text-transform:uppercase;letter-spacing:0.04em;width:110px;flex-shrink:0;padding-top:2px;}
.loc-value{font-size:1rem;line-height:1.55;color:#2C2116;}
.loc-value a{border-bottom:1px solid var(--gold);}
.map-frame{border-radius:var(--radius);border:1px solid var(--panel-line);overflow:hidden;min-height:360px;}
.map-frame iframe{width:100%;height:100%;min-height:360px;border:0;}
@media (max-width:860px){.loc-grid{grid-template-columns:1fr;}}

/* ---------- CTA FINAL ---------- */
.final-cta{background:var(--bg-deep);padding:88px 0;text-align:center;}
.final-cta h2{font-size:clamp(1.8rem,3.6vw,2.4rem);font-weight:600;color:var(--cream);margin-bottom:14px;}
.final-cta p{color:var(--dim);margin:0 0 28px;font-size:1rem;}
.final-cta .btn-solid{padding:16px 34px;font-size:1rem;}

/* ---------- FOOTER ---------- */
footer{background:var(--bg-deep);border-top:1px solid rgba(227,189,121,0.14);padding:30px 0 40px;}
.foot-row{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;align-items:center;font-size:0.82rem;color:var(--dim);}
.foot-brand{display:flex;align-items:center;gap:10px;}
.foot-row a{color:var(--dim);}
.foot-row a:hover{color:var(--gold-soft);}

/* ---------- WHATSAPP FLUTUANTE ---------- */
.float-wa{
  position:fixed;bottom:22px;right:22px;z-index:60;
  width:56px;height:56px;border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 18px rgba(0,0,0,0.35);
  transition:transform .15s ease;
}
.float-wa:hover{transform:scale(1.07);}
.float-wa svg{width:28px;height:28px;fill:#fff;}
