/* =========================================================
   TOKENS
========================================================= */
:root{
  --bg: #F8F6F3;
  --bg-elevated: #EFE8DF;
  --surface: #D9C3A5;
  --gold: #B58B54;
  --gold-light: #C8A97E;
  --bronze: #8C6A3D;
  --ivory: #3F352D;
  --muted: #4A4A4A;
  --line: rgba(181,139,84,0.35);
  --shadow: rgba(63,53,45,0.15);
  --tex-fine: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22140%22%20height%3D%22140%22%3E%3Cfilter%20id%3D%22n%22%3E%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.85%22%20numOctaves%3D%222%22%20seed%3D%227%22%20stitchTiles%3D%22stitch%22%20result%3D%22t%22/%3E%3CfeColorMatrix%20in%3D%22t%22%20type%3D%22matrix%22%20values%3D%220%200%200%200%200%20%200%200%200%200%200%20%200%200%200%200%200%20%200%200%200%200.16%200%22/%3E%3C/filter%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20filter%3D%22url%28%23n%29%22/%3E%3C/svg%3E");
  --tex-paper: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22260%22%20height%3D%22260%22%3E%3Cfilter%20id%3D%22n%22%3E%3CfeTurbulence%20type%3D%22fractalNoise%22%20baseFrequency%3D%220.045%22%20numOctaves%3D%222%22%20seed%3D%223%22%20stitchTiles%3D%22stitch%22%20result%3D%22t%22/%3E%3CfeColorMatrix%20in%3D%22t%22%20type%3D%22matrix%22%20values%3D%220%200%200%200%200%20%200%200%200%200%200%20%200%200%200%200%200%20%200%200%200%200.13%200%22/%3E%3C/filter%3E%3Crect%20width%3D%22100%25%22%20height%3D%22100%25%22%20filter%3D%22url%28%23n%29%22/%3E%3C/svg%3E");

  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;

  --container: 1140px;
  --radius: 2px;
  --pill: 999px;
  --card-radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style:none; margin:0; padding:0; }

:focus-visible{
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 1;
}

/* Marca d'água decorativa com a borboleta da logo */
.watermark{ position: relative; overflow: hidden; }
.watermark::before{
  content:"";
  position:absolute;
  top: -60px; right: -40px;
  width: 320px;
  height: 700px;
  background-image: url('logo-borboleta.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  opacity: .07;
  z-index: 0;
  pointer-events: none;
}
.watermark-left::before{
  top: auto; bottom: -60px; right: auto; left: -50px;
  transform: scaleX(-1);
}
.watermark-soft::before{ opacity: .05; }

/* Texturas discretas de fundo: papel algodão + mármore fosco + ruído + gradiente quase imperceptível */
.texture{ position: relative; }
.texture::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background-image:
    var(--tex-fine),
    var(--tex-paper),
    repeating-linear-gradient(128deg, rgba(140,106,61,0.05) 0px, rgba(140,106,61,0) 3px, rgba(140,106,61,0) 10px),
    radial-gradient(140% 160% at 12% -10%, rgba(255,255,255,0.07), rgba(255,255,255,0) 55%);
  background-repeat: repeat, repeat, repeat, no-repeat;
  background-size: 140px 140px, 260px 260px, auto, cover;
  mix-blend-mode: multiply;
  opacity: .45;
}


/* =========================================================
   REVEAL ON SCROLL
========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease;
}
.reveal.is-visible{ opacity: 1; transform: none; }

.reveal-slow{ transition-duration: .4s; transition-delay: .06s; }

.reveal-card{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.reveal-card.is-visible{ opacity: 1; transform: none; }

.reveal-img{
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .4s ease, opacity .35s ease;
}
.reveal-img.is-visible{ opacity: 1; clip-path: inset(0 0 0% 0); }

/* Linha dourada que se desenha ao entrar na tela, usada sob os títulos de seção */
.title-line{
  width: 46px; height: 1px;
  background: var(--gold);
  margin: 0 0 1.2rem;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .4s ease;
}
.reveal.is-visible .title-line,
.title-line.is-visible{ transform: scaleX(1); }

.eyebrow{
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  font-weight: 600;
}

.h2{
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 2.5rem;
  max-width: 20ch;
}

.p-lead{
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
}
.p-lead.narrow{ max-width: 46ch; margin-bottom: 3rem; }

.p-body{
  font-size: 1rem;
  color: var(--muted);
  max-width: 58ch;
  margin-top: 1.4rem;
  line-height: 1.75;
}
.accent-strong{
  color: var(--bronze);
  font-weight: 600;
}
.sobre-cta{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 2rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.section{ background: var(--bg); }
.section-alt{ background: var(--bg-elevated); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-spacious .section-inner{ padding-top: 8.5rem; padding-bottom: 8.5rem; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .95rem 1.9rem;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--pill);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  border: 1px solid transparent;
  cursor:pointer;
}
.btn-gold{
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #FFFFFF;
}
.btn-gold:hover{ transform: translateY(-2px); }
.btn-ghost{
  border-color: var(--line);
  color: var(--ivory);
}
.btn-ghost:hover{ border-color: var(--gold); color: var(--gold-light); }

/* =========================================================
   NAV
========================================================= */
.nav{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 50;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}
.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-mark{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: #FFFFFF;
  white-space: nowrap;
  display:flex;
  align-items:center;
}
.nav-logo-img{
  height: 34px;
  width: auto;
  display:block;
}
.nav-links{
  display:flex;
  gap: 1.9rem;
  font-size: .88rem;
  color: rgba(255,255,255,0.85);
}
.nav-links a:hover{ color: #FFFFFF; }
.nav-cta{
  border: 1px solid rgba(255,255,255,0.7);
  color: #FFFFFF;
  padding: .55rem 1.2rem;
  font-size: .78rem;
  font-weight: 600;
  border-radius: var(--pill);
  white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}
.nav-cta:hover{ background: #FFFFFF; color: var(--gold); }

.nav-burger{
  display:none;
  flex-direction: column;
  gap: 5px;
  background:none;
  border:none;
  cursor:pointer;
  padding: 6px;
}
.nav-burger span{
  width: 22px; height: 1.5px;
  background: #FFFFFF;
}

/* =========================================================
   HERO
========================================================= */
.hero{
  position: relative;
  padding: 10.5rem 1.5rem 7rem;
  min-height: 92vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(198,161,91,0.10), transparent 55%),
    var(--bg);
}

@keyframes gentle-load-in{
  from{ opacity: 0; transform: scale(1.012); }
  to{ opacity: 1; transform: scale(1); }
}
.hero-grid{
  max-width: var(--container);
  margin: 0 auto;
  width:100%;
  display:grid;
  grid-template-columns: 30% 70%;
  gap: 4rem;
  align-items:center;
  position: relative;
  z-index: 1;
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.08;
  margin: 0 0 1.5rem;
}
.hero-title em{
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}
.hero-sub{
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 2.4rem;
}
.hero-actions{
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual{ display:flex; justify-content:center; }

.hero-photo-wrap{
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  will-change: transform;
  animation: gentle-load-in .4s cubic-bezier(.2,.7,.2,1) both;
}

/* Camada de profundidade: brilho dourado desfocado atrás da foto */
.hero-photo-glow{
  position:absolute;
  top: 6%; left: 8%;
  width: 88%; height: 92%;
  background: radial-gradient(closest-side, rgba(181,139,84,0.35), rgba(181,139,84,0) 72%);
  filter: blur(28px);
  z-index: 0;
}

.hero-photo{
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-photo::before{
  content:"";
  position:absolute;
  top: -18px; left: -18px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  border-radius: var(--card-radius);
  z-index: 0;
}
.hero-photo img{
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 30px 60px var(--shadow), 0 10px 20px var(--shadow);
  filter: contrast(1.06) saturate(1.04);
  border-radius: var(--card-radius);
}
/* Iluminação editorial: leve vinheta e realce quente sobre a foto */
.hero-photo-light{
  position:absolute;
  inset:0;
  z-index: 2;
  border-radius: var(--card-radius);
  background:
    linear-gradient(155deg, rgba(255,244,222,.22) 0%, rgba(255,244,222,0) 32%),
    linear-gradient(340deg, rgba(63,53,45,.28) 0%, rgba(63,53,45,0) 38%),
    radial-gradient(120% 90% at 30% 15%, rgba(255,255,255,.12), rgba(0,0,0,0) 60%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Detalhes dourados evocando o mapeamento facial */
.hero-photo-lines{
  position:absolute;
  z-index: 3;
  width: 46%;
  bottom: -6%;
  right: -8%;
  opacity: .85;
  pointer-events:none;
}
.hl-line{
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: draw-line .4s ease forwards;
  animation-delay: .15s;
}
.hl-line.hl-delay-1{ animation-delay: .25s; }
.hl-line.hl-delay-2{ animation-delay: .35s; }
.hl-dot{
  fill: var(--gold);
  opacity: 0;
  animation: dot-in .3s ease forwards;
  animation-delay: .4s;
}
.hl-dot.hl-delay-1{ animation-delay: .45s; }
.hl-dot.hl-delay-2{ animation-delay: .5s; }

@keyframes draw-line{ to{ stroke-dashoffset: 0; } }
@keyframes dot-in{
  0%{ opacity:0; }
  60%{ opacity:1; }
  100%{ opacity:.9; }
}

.scroll-cue{
  position:absolute;
  bottom: 2rem; left:50%;
  transform: translateX(-50%);
}
.scroll-cue span{
  display:block;
  width:1px; height: 46px;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue{
  0%,100%{ opacity:.2; }
  50%{ opacity:1; }
}

/* =========================================================
   SOBRE
========================================================= */
.sobre-grid{
  display:grid;
  grid-template-columns: 70% 30%;
  gap: 4.5rem;
  align-items:center;
}
.sobre-photo{
  position: relative;
}
.sobre-photo-glow{
  position:absolute;
  top: 5%; left: 6%;
  width: 90%; height: 92%;
  background: radial-gradient(closest-side, rgba(181,139,84,0.30), rgba(181,139,84,0) 72%);
  filter: blur(32px);
  z-index: 0;
}
.photo-frame{
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: var(--card-radius);
  background: var(--bg);
  box-shadow: 0 26px 54px var(--shadow);
}
.photo-placeholder{
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--surface), var(--bg-elevated));
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  color: var(--muted);
  font-size: .85rem;
  padding: 2rem;
  border: 1px dashed var(--line);
}
.photo-real{
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: calc(var(--card-radius) - 6px);
  filter: contrast(1.05) saturate(1.03);
  animation: gentle-load-in .4s cubic-bezier(.2,.7,.2,1) both;
}
.photo-real-light{
  position:absolute;
  inset: 14px;
  border-radius: calc(var(--card-radius) - 6px);
  pointer-events:none;
  background:
    linear-gradient(155deg, rgba(255,244,222,.2) 0%, rgba(255,244,222,0) 32%),
    linear-gradient(340deg, rgba(63,53,45,.22) 0%, rgba(63,53,45,0) 38%);
  mix-blend-mode: overlay;
}
.creds{ margin-top: 2rem; display:flex; flex-direction:column; gap: .8rem; }
.creds li{
  padding-left: 1.4rem;
  position:relative;
  color: var(--muted);
  font-size: .95rem;
}
.creds li::before{
  content:"";
  position:absolute; left:0; top: .55em;
  width:6px; height:1px;
  background: var(--gold);
}
.creds li span{ color: var(--ivory); }

/* =========================================================
   VÍDEO DEPOIMENTO
========================================================= */
.video-inner{
  display:grid;
  grid-template-columns: .95fr .85fr;
  gap: 3.5rem;
  align-items:center;
}
.video-copy .h2{ margin-bottom: 1.2rem; }
.video-frame{
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  padding: 12px;
  background: var(--ivory);
  border-radius: var(--card-radius);
  box-shadow: 0 24px 48px var(--shadow);
}
.video-frame::before{
  content:"";
  position:absolute;
  top: -14px; right: -14px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  border-radius: var(--card-radius);
  z-index: 0;
}
.video-frame video{
  position:relative;
  z-index:1;
  display:block;
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  background:#000;
  cursor: pointer;
  border-radius: calc(var(--card-radius) - 10px);
}
.video-sound-toggle{
  position:absolute;
  z-index: 2;
  bottom: 26px; right: 26px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(20,16,10,0.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
  backdrop-filter: blur(4px);
  transition: background .2s ease, transform .2s ease;
}
.video-sound-toggle:hover{ transform: scale(1.06); }
.video-sound-toggle.is-on{ background: var(--gold); border-color: var(--gold); }
.video-sound-toggle .icon-sound{ display:none; }
.video-sound-toggle.is-on .icon-muted{ display:none; }
.video-sound-toggle.is-on .icon-sound{ display:block; }

/* =========================================================
   SERVICES
========================================================= */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.service-card{
  background: var(--bg);
  padding: 2.6rem 1.8rem;
  display:flex;
  flex-direction:column;
  gap: .9rem;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: 0 10px 24px var(--shadow);
}
.service-card.featured{ background: var(--bg-elevated); }
.service-mark{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
}
.service-card h3{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0;
}
.service-card p{
  color: var(--muted);
  font-size: .92rem;
  flex-grow:1;
}
.service-link{
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-light);
}
.service-link:hover{ color: var(--gold); }

/* =========================================================
   GALLERY (antes/depois)
========================================================= */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.8rem;
  align-items: start;
}
.gallery-card{ }
.ba-frame{
  background: var(--ivory);
  padding: 12px;
  border-radius: var(--card-radius);
  box-shadow: 0 14px 30px var(--shadow);
}
.ba-frame-inner{
  border: 1px solid var(--gold);
  padding: 5px;
  border-radius: calc(var(--card-radius) - 8px);
  overflow: hidden;
}
.ba-frame-inner img{
  display:block;
  width:100%;
  height:auto;
  background: #fff;
  border-radius: calc(var(--card-radius) - 10px);
}
.gallery-tag{
  margin: 1.1rem 0 .4rem;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.gallery-caption{
  font-size: 1rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 450;
}
.gallery-disclaimer{
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: .82rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 68ch;
}
.gallery-disclaimer strong{
  display:block;
  color: var(--ivory);
  margin-bottom: .4rem;
  font-size: .86rem;
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials-track{
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar{ display:none; }
.testimonial{
  scroll-snap-align: start;
  margin:0;
  padding: 3rem;
  border: 1px solid var(--line);
  background: var(--bg);
  max-width: 640px;
  border-radius: var(--card-radius);
}
.testimonial p{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ivory);
  margin: 0 0 1.4rem;
}
.testimonial footer{
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold);
}
.testi-dots{
  display:flex; gap: .5rem;
  margin-top: 2rem;
}
.testi-dots button{
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor:pointer;
  padding:0;
}
.testi-dots button.active{ background: var(--gold); }

/* =========================================================
   BLOG
========================================================= */
.blog-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card{
  border: 1px solid var(--line);
  padding: 2rem;
  display:flex;
  flex-direction:column;
  gap: .6rem;
  border-radius: var(--card-radius);
}
.blog-thumb{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--line);
  margin-bottom: .5rem;
}
.blog-tag{
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin:0;
}
.blog-card h3{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  margin: 0;
}
.blog-card p{ color: var(--muted); font-size: .92rem; flex-grow:1; }
.blog-card a{ font-size: .85rem; font-weight:600; color: var(--gold-light); }
.blog-card a:hover{ color: var(--gold); }

/* =========================================================
   FAIXA DE DESTAQUES
========================================================= */
.stats-band{
  background: linear-gradient(120deg, var(--bronze), var(--gold));
  padding: 3.6rem 1.5rem;
}
.stats-inner{
  max-width: var(--container);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item{
  text-align:center;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.3);
}
.stat-item:first-child{ border-left: none; }
.stat-number{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: #FFFFFF;
  margin: 0 0 .5rem;
}
.stat-label{
  font-size: .82rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* =========================================================
   BANNER HORIZONTAL
========================================================= */
.banner-quote-wrap{
  background: var(--bg-elevated);
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.banner-quote{
  max-width: 46ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 450;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--gold);
}
.full-banner{
  width: 100%;
  line-height: 0;
}
.full-banner img{
  width: 100%;
  height: clamp(260px, 42vw, 520px);
  object-fit: cover;
}

/* =========================================================
   LOCAL
========================================================= */
.local-units{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.unit-card{
  border: 1px solid var(--line);
  background: var(--bg);
  overflow:hidden;
  border-radius: var(--card-radius);
}
.unit-photo{
  height: 260px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.unit-photo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.unit-copy{ padding: 1.8rem; }
.unit-copy h3{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
.local-info{ margin: 0 0 1.6rem; display:flex; flex-direction:column; gap:.5rem; }
.local-info strong{ color: var(--gold); font-weight:600; }
.local-info li{ color: var(--muted); font-size:.92rem; }
.local-map{
  height: 220px;
  border-bottom: 1px solid var(--line);
  filter: grayscale(.2) contrast(1.05);
}
.local-cta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.local-cta p{ color: var(--muted); font-size:.95rem; margin:0; }
.local-cta strong{ color: var(--ivory); }

/* =========================================================
   FOOTER
========================================================= */
.footer{
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.footer-sub{ color: var(--muted); font-size: .88rem; margin-top:.4rem; }
.footer-links, .footer-social{
  display:flex; flex-direction:column; gap: .6rem;
  font-size: .88rem; color: var(--muted);
}
.footer-links a:hover, .footer-social a:hover{ color: var(--gold-light); }
.footer-legal{
  max-width: var(--container);
  margin: 1.6rem auto 0;
  font-size: .78rem;
  color: var(--muted);
  text-align:center;
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */
.wa-float{
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #FFFFFF;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 24px var(--shadow);
  z-index: 60;
  border: 1px solid var(--line);
  transition: transform .25s ease;
}
.wa-float:hover{ transform: scale(1.08); }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px){
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
  .hero-grid{ grid-template-columns: 1fr; text-align:center; }
  .hero-actions{ justify-content:center; }
  .hero-sub{ margin-left:auto; margin-right:auto; }
  .hero-visual{ order:-1; margin-bottom: 1rem; }
  .hero-photo-wrap{ max-width: 300px; margin: 0 auto; }
  .sobre-grid{ grid-template-columns: 1fr; }
  .video-inner{ grid-template-columns: 1fr; text-align:center; }
  .video-frame{ max-width: 280px; }
  .services-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .blog-grid{ grid-template-columns: 1fr; }
  .local-units{ grid-template-columns: 1fr; }
  .stats-inner{ grid-template-columns: 1fr; gap: 2rem; }
  .stat-item{ border-left:none; border-top: 1px solid rgba(255,255,255,0.3); padding-top: 1.5rem; }
  .stat-item:first-child{ border-top:none; padding-top:0; }
}
@media (max-width: 560px){
  .services-grid{ grid-template-columns: 1fr; }
  .section-inner{ padding: 4.5rem 1.25rem; }
  .testimonial{ padding: 2rem; }
  .nav-cta{ display:none; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .scroll-cue span{ animation: none !important; opacity:1; }
  .btn, .wa-float{ transition:none; }
  .hl-line, .hl-dot{ animation: none !important; stroke-dashoffset:0; opacity:.9; }
  .hero-photo-wrap{ transform:none !important; }
  .reveal, .reveal-card, .reveal-img{ opacity:1 !important; transform:none !important; clip-path:none !important; transition:none !important; }
}
