/* ============================================================
   LADY BIGUAÇU — Folha de estilo da marca
   Edite cores e contatos pelas variáveis abaixo.
   ============================================================ */

:root {
  /* ---- PALETA DA MARCA (extraída do logo: vinho + dourado) ---- */
  --wine:        #3D0C21;  /* vinho profundo — fundo do logo, headers, footer */
  --wine-800:    #4E1330;  /* vinho um tom acima — cards escuros, profundidade */
  --wine-600:    #6E2143;  /* vinho médio — hover, detalhes */
  --gold:        #E9AC43;  /* dourado — CTAs, acentos, traços */
  --gold-deep:   #C98A2E;  /* dourado escuro — hover, contraste em fundo claro */
  --gold-soft:   #F6E2BC;  /* dourado clarinho — fundos suaves */
  --cream:       #FFFCF8;  /* branco quente — fundo base */
  --nude:        #F6ECE3;  /* nude — seções alternadas, calor */
  --nude-deep:   #EBDAC9;  /* nude mais quente — bordas, placeholders */
  --blush:       #F3E4E9;  /* rosa-vinho clarinho — respiro */
  --ink:         #2B1620;  /* texto forte */
  --text:        #5A4750;  /* corpo de texto */
  --text-soft:   #8A7780;  /* texto secundário */
  --line:        rgba(61,12,33,0.10);
  --line-gold:   rgba(233,172,67,0.35);

  /* ---- TIPOGRAFIA ---- */
  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Manrope", system-ui, -apple-system, sans-serif;
  --round: "Fredoka", system-ui, sans-serif; /* eco do logotipo */

  /* ---- FORMA ---- */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-sm: 0 2px 12px rgba(61,12,33,0.06);
  --shadow-md: 0 14px 40px rgba(61,12,33,0.10);
  --shadow-lg: 0 30px 80px rgba(61,12,33,0.16);
  --shadow-gold: 0 14px 34px rgba(201,138,46,0.30);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; background: var(--wine); }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--wine); /* safe areas (status bar / home indicator) ficam vinho no iOS; seções têm bg próprio */
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Acessibilidade — foco visível por teclado */
a:focus-visible, button:focus-visible, .btn:focus-visible, .faq-q:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px;
}

/* ---- ETIQUETA / KICKER ---- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.kicker::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--gold);
}
.kicker.center { justify-content: center; }
.kicker.on-dark { color: var(--gold); }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }

.btn-wa {
  background: var(--gold);
  color: var(--wine);
  box-shadow: var(--shadow-gold);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(201,138,46,0.42); }

.btn-ghost {
  background: transparent;
  color: var(--wine);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--wine); transform: translateY(-3px); }

.btn-ghost.on-dark { color: var(--cream); border-color: rgba(246,244,245,0.28); }
.btn-ghost.on-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-lg { padding: 18px 34px; font-size: 17px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(61,12,33,0.0);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
  padding-top: calc(18px + env(safe-area-inset-top, 0px));
}
.header.scrolled {
  background: rgba(61,12,33,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(61,12,33,0.28);
  padding: 12px 0;
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logotipo recriado (eco do logo enviado) */
.brand {
  font-family: var(--round);
  font-weight: 600;
  font-size: 30px;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}
.brand .y {
  color: var(--gold);
  position: relative;
}
.brand .city {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(246,244,245,0.6);
  margin-left: 10px;
  align-self: center;
  padding-left: 11px;
  border-left: 1px solid rgba(246,244,245,0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(246,244,245,0.82);
  transition: color .2s;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease);
}
.nav a:hover { color: var(--cream); }
.nav a:hover::after { width: 100%; }

/* Dropdown de Serviços (desktop) */
.nav .nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item > a .caret { width: 11px; height: 11px; flex: none; transition: transform .3s var(--ease); opacity: .75; }
.nav-item:hover > a .caret, .nav-item:focus-within > a .caret { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 16px; min-width: 244px; opacity: 0; visibility: hidden; transition: opacity .25s var(--ease); }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; }
.dropdown-inner { background: var(--wine-800); border: 1px solid var(--line-gold); border-radius: 16px; padding: 8px; box-shadow: var(--shadow-lg); }
.dropdown-inner a { display: block; padding: 11px 15px; border-radius: 10px; font-size: 14.5px; font-weight: 600; color: rgba(246,244,245,0.82); white-space: nowrap; transition: background .2s, color .2s; }
.dropdown-inner a::after { display: none; }
.dropdown-inner a:hover { background: rgba(233,172,67,0.14); color: var(--gold); }

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(233,172,67,0.12);
  border: 1px solid rgba(233,172,67,0.3);
  padding: 7px 13px;
  border-radius: 100px;
  white-space: nowrap;
}
.header-badge svg { width: 15px; height: 15px; flex: none; }
.header .btn-wa { padding: 12px 22px; font-size: 15px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto;
}
.burger span { width: 26px; height: 2.5px; background: var(--cream); border-radius: 3px; transition: .3s; }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--wine);
  display: flex;
  flex-direction: column;
  padding: calc(20px + env(safe-area-inset-top, 0px)) 26px calc(28px + env(safe-area-inset-bottom, 0px));
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-close { background: none; border: none; color: var(--cream); font-size: 34px; cursor: pointer; line-height: 1; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 24px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid rgba(246,244,245,0.1);
}
.mobile-menu nav a .idx { color: var(--gold); font-family: var(--sans); font-size: 13px; font-weight: 700; margin-right: 14px; }
.mobile-menu .mm-sub { display: flex; flex-direction: column; padding: 4px 0 12px; border-bottom: 1px solid rgba(246,244,245,0.1); }
.mobile-menu .mm-sub a { font-family: var(--sans); font-size: 16px; font-weight: 600; color: rgba(246,244,245,0.66); padding: 9px 0 9px 6px; border: none; display: flex; align-items: center; gap: 11px; }
.mobile-menu .mm-sub a::before { content: ""; width: 14px; height: 1.5px; background: var(--gold); flex: none; }
.mobile-menu .btn { margin-top: 30px; }

/* ============================================================
   SECTIONS base
   ============================================================ */
section { position: relative; }
.pad { padding: clamp(72px, 9vw, 130px) 0; }
.sec-head { max-width: 640px; margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-size: clamp(34px, 4.6vw, 56px); margin: 18px 0 0; }
.sec-head p { margin-top: 18px; font-size: 18px; color: var(--text); }

.bg-cream { background: var(--cream); }
.bg-nude  { background: var(--nude); }
.bg-blush { background: var(--blush); }
.bg-wine  { background: var(--wine); color: rgba(246,244,245,0.85); }
.bg-wine h1, .bg-wine h2, .bg-wine h3 { color: var(--cream); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--wine);
  color: var(--cream);
  padding: 160px 0 90px;
  padding-top: calc(160px + env(safe-area-inset-top, 0px));
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 720px; height: 720px;
  right: -160px; top: -180px;
  background: radial-gradient(circle, rgba(233,172,67,0.20), transparent 62%);
  pointer-events: none;
}
.hero-glow.two {
  left: -240px; top: auto; bottom: -300px; right: auto;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(110,33,67,0.55), transparent 64%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(46px, 6.6vw, 86px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .sub {
  margin-top: 26px;
  font-size: clamp(17px, 1.4vw, 20px);
  color: rgba(246,244,245,0.78);
  max-width: 520px;
}
.hero-copy { min-width: 0; }
.chips { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; min-width: 0; }
.chip-row {
  min-width: 0; max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.chip-track {
  display: flex; gap: 10px; width: max-content;
  animation: chip-marquee 26s linear infinite;
  will-change: transform;
}
.chip-track.reverse { animation-direction: reverse; }
.chip-row:hover .chip-track { animation-play-state: paused; }
.chip {
  flex: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600;
  color: rgba(246,244,245,0.92);
  background: rgba(246,244,245,0.06);
  border: 1px solid rgba(246,244,245,0.14);
  padding: 9px 15px; border-radius: 100px;
}
.chip svg { width: 15px; height: 15px; color: var(--gold); }
@keyframes chip-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-addr {
  margin-top: 26px;
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; color: rgba(246,244,245,0.62);
}
.hero-addr svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

/* Hero visual / foto */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(246,244,245,0.12);
}
.hero-visual .ph { width: 100%; height: 100%; }

/* Palco de marca (centro do hero) */
.brand-stage {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 90% at 50% 10%, rgba(233,172,67,0.16), transparent 60%),
    linear-gradient(158deg, var(--wine-800) 0%, var(--wine) 52%, #2E0918 100%);
}
.stage-glow {
  position: absolute; width: 76%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,172,67,0.30), transparent 62%);
  filter: blur(4px); pointer-events: none;
}
.stage-ring {
  position: absolute; width: 82%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(233,172,67,0.18); pointer-events: none;
}
.stage-ring::before {
  content: ""; position: absolute; inset: 9%; border-radius: 50%;
  border: 1px solid rgba(246,244,245,0.08);
}
.stage-logo {
  position: relative; z-index: 1;
  width: 64%; max-width: 300px; height: auto; aspect-ratio: 1;
  border-radius: 26px; object-fit: cover;
  box-shadow: 0 30px 70px rgba(0,0,0,0.42), 0 0 0 1px rgba(233,172,67,0.24);
}
.stage-drip {
  position: absolute; z-index: 2; top: 9%; right: 19%;
  width: 30px; opacity: .92;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.32));
  animation: drip 5.5s var(--ease) infinite;
}
.stage-drip svg { width: 100%; height: auto; display: block; }
@keyframes drip { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

.hero-float {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  background: rgba(61,12,33,0.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(246,244,245,0.16);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-float .ic {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: var(--wine);
  display: grid; place-items: center; flex: none;
}
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float strong { color: var(--cream); font-size: 15px; display: block; }
.hero-float span { color: rgba(246,244,245,0.66); font-size: 13px; }

/* ============================================================
   PLACEHOLDERS de imagem (substituir por fotos reais)
   ============================================================ */
.ph {
  position: relative;
  background:
    radial-gradient(120% 120% at 30% 20%, var(--gold-soft), transparent 55%),
    linear-gradient(140deg, var(--nude-deep), var(--blush));
  display: grid; place-items: center;
  color: var(--wine-600);
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute; bottom: 14px; left: 0; right: 0;
  text-align: center;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(61,12,33,0.42);
}
.ph svg { width: 56px; height: 56px; opacity: 0.5; }

/* ============================================================
   POSICIONAMENTO / PILARES
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.pillar .ic {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--blush); color: var(--wine);
  display: grid; place-items: center; margin-bottom: 22px;
}
.pillar .ic svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 24px; margin-bottom: 10px; }
.pillar p { font-size: 16px; }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.svc {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc .svc-img {
  position: relative;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 120% at 28% 18%, rgba(233,172,67,0.22), transparent 56%),
    linear-gradient(150deg, var(--wine) 0%, var(--wine-600) 100%);
}
.svc-ic {
  display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 17px;
  background: rgba(246,244,245,0.10);
  border: 1px solid rgba(233,172,67,0.32);
  color: var(--gold);
  transition: transform .4s var(--ease);
}
.svc:hover .svc-ic { transform: translateY(-3px) scale(1.05); }
.svc-ic svg { width: 29px; height: 29px; }
.svc .svc-body { padding: 28px 28px 26px; }
.svc h3 { font-size: 23px; }
.svc p { font-size: 15px; margin: 10px 0 18px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.svc-tags span { font-size: 12.5px; font-weight: 600; color: var(--gold-deep); background: var(--gold-soft); padding: 5px 11px; border-radius: 100px; }
.svc-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--wine); }
.svc-link svg { width: 16px; height: 16px; color: var(--gold-deep); transition: transform .3s; }
.svc:hover .svc-link svg { transform: translateX(4px); }
.svc-note {
  margin-top: 30px; text-align: center;
  font-size: 14px; color: var(--text-soft);
}

/* ============================================================
   SEM HORA MARCADA (destaque)
   ============================================================ */
.nohora { background: var(--wine); color: rgba(246,244,245,0.82); overflow: hidden; }
.nohora .hero-glow { right: -200px; }
.nohora-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.nohora h2 { color: var(--cream); font-size: clamp(34px, 4.4vw, 54px); }
.nohora .lead { margin-top: 22px; font-size: 18px; color: rgba(246,244,245,0.78); }
.blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.block {
  background: rgba(246,244,245,0.05);
  border: 1px solid rgba(246,244,245,0.12);
  border-radius: var(--r-md);
  padding: 24px 22px;
  transition: border-color .3s, transform .3s var(--ease);
}
.block:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.block .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(233,172,67,0.16); color: var(--gold); display: grid; place-items: center; margin-bottom: 14px; }
.block .ic svg { width: 21px; height: 21px; }
.block h4 { font-family: var(--sans); font-weight: 700; font-size: 16px; color: var(--cream); }
.block p { font-size: 14px; margin-top: 6px; color: rgba(246,244,245,0.66); }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 12px; }
.step .num {
  font-family: var(--serif);
  font-size: 64px; font-weight: 600; line-height: 1;
  color: var(--gold);
  -webkit-text-stroke: 0;
  opacity: 0.9;
}
.step h3 { font-size: 21px; margin: 14px 0 9px; }
.step p { font-size: 15px; }
.step::after {
  content: ""; position: absolute; top: 28px; right: -12px;
  width: 24px; height: 1.5px; background: var(--line-gold);
}
.step:last-child::after { display: none; }

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: stretch; }
.loc-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex; flex-direction: column;
}
.loc-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.loc-row:last-of-type { border-bottom: none; }
.loc-row .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blush); color: var(--wine); display: grid; place-items: center; flex: none; }
.loc-row .ic svg { width: 21px; height: 21px; }
.loc-row .lbl { font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); }
.loc-row .val { font-size: 17px; color: var(--ink); font-weight: 600; margin-top: 3px; }
.loc-row a.val:hover { color: var(--gold-deep); }
.loc-refs { font-size: 14.5px; color: var(--text); margin: 22px 0; padding: 16px 18px; background: var(--gold-soft); border-radius: var(--r-sm); border-left: 3px solid var(--gold); }
.loc-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }
.loc-map { border-radius: var(--r-lg); overflow: hidden; min-height: 440px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.loc-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; filter: saturate(1.05); }

/* ============================================================
   FALE CONOSCO (banner WhatsApp)
   ============================================================ */
.wa-banner {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-600) 100%);
  border-radius: var(--r-xl);
  padding: clamp(44px, 6vw, 76px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wa-banner .hero-glow { right: -160px; top: -160px; }
.wa-banner h2 { color: var(--cream); font-size: clamp(30px, 4vw, 48px); position: relative; }
.wa-banner p { color: rgba(246,244,245,0.78); max-width: 540px; margin: 18px auto 32px; font-size: 18px; position: relative; }

/* ============================================================
   AVALIAÇÕES (card Google)
   ============================================================ */
.reviews-cta {
  display: flex; align-items: center; gap: 20px;
  max-width: 600px; margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.reviews-cta:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.rc-badge { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); flex: none; box-shadow: var(--shadow-sm); }
.rc-badge svg { width: 27px; height: 27px; }
.rc-txt { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.rc-txt strong { font-family: var(--sans); font-size: 17px; color: var(--ink); }
.rc-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; line-height: 1; }
.rc-sub { font-size: 13.5px; color: var(--text-soft); }
.rc-arrow { color: var(--gold-deep); flex: none; display: grid; place-items: center; }
.rc-arrow svg { width: 22px; height: 22px; transition: transform .3s; }
.reviews-cta:hover .rc-arrow svg { transform: translateX(4px); }

/* ============================================================
   REDES SOCIAIS
   ============================================================ */
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.social-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px; min-height: 210px;
  padding: 30px 28px 26px;
  border-radius: var(--r-lg);
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.social-card::after {
  content: ""; position: absolute; right: -30px; top: -30px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.12); pointer-events: none;
}
.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sc-ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: rgba(255,255,255,0.20); margin-bottom: 12px; position: relative; z-index: 1; }
.sc-ic svg { width: 27px; height: 27px; color: #fff; }
.sc-name { font-family: var(--serif); font-size: 24px; color: #fff; font-weight: 600; position: relative; z-index: 1; }
.sc-handle { font-size: 14.5px; color: rgba(255,255,255,0.88); position: relative; z-index: 1; }
.sc-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; padding-top: 18px; position: relative; z-index: 1; }
.sc-cta svg { width: 16px; height: 16px; transition: transform .3s; }
.social-card:hover .sc-cta svg { transform: translateX(4px); }
.social-card.ig { background: linear-gradient(135deg, #833AB4 0%, #C13584 38%, #E1306C 62%, #F77737 100%); }
.social-card.fb { background: linear-gradient(135deg, #1877F2 0%, #0A5DC2 100%); }
.social-card.wa { background: linear-gradient(135deg, #25D366 0%, #109E7A 100%); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final {
  background: var(--nude);
  text-align: center;
}
.final h2 { font-size: clamp(36px, 5vw, 64px); max-width: 760px; margin: 0 auto; }
.final p { max-width: 540px; margin: 22px auto 34px; font-size: 18px; }
.final-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--wine); color: rgba(246,244,245,0.68); padding: 72px 0 130px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 44px; }
.footer .brand { font-size: 34px; }
.footer .sign { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 19px; margin-top: 14px; }
.footer h5 { font-family: var(--sans); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,244,245,0.5); margin: 0 0 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 15px; color: rgba(246,244,245,0.78); transition: color .2s; }
.footer ul a:hover { color: var(--gold); }
.footer-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--gold); border: 1px solid rgba(233,172,67,0.3); padding: 8px 14px; border-radius: 100px; margin-top: 20px; }
.footer-badge svg { width: 15px; height: 15px; flex: none; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(246,244,245,0.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: rgba(246,244,245,0.5); }

/* ============================================================
   ELEMENTOS FIXOS
   ============================================================ */
.wa-float {
  position: fixed;
  right: 22px; bottom: 26px;
  z-index: 55;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  transition: transform .3s var(--ease);
  animation: wapulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes wapulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 12px 30px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* Barra inferior mobile */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 56;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(61,12,33,0.14);
  box-shadow: 0 -8px 30px rgba(61,12,33,0.18);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px; font-weight: 700; font-size: 15px;
}
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar .mb-wa { background: #25D366; color: #fff; }
.mobile-bar .mb-map { background: var(--wine); color: var(--cream); }

/* ============================================================
   REVEAL on scroll
   ============================================================ */
/* Só esconde quando o JS confirma suporte (no-JS = tudo visível) */
.js-reveal .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  /* Sem movimento: chips viram lista estática enxuta */
  .chip-track { width: auto; flex-wrap: wrap; }
  .chip-row { -webkit-mask-image: none; mask-image: none; }
  .chip.dup { display: none; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1000px) {
  .nav, .header-badge { display: none; }
  .header .btn-wa { display: none; }
  .burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .nohora-grid { grid-template-columns: 1fr; gap: 40px; }
  .loc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .step::after { display: none; }
  .social-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  html { scroll-padding-top: 80px; }
  .kicker { font-size: 11px; letter-spacing: 0.1em; gap: 7px; }
  .kicker::before { width: 18px; }
  .pillars, .svc-grid, .blocks, .social-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 104px 1fr; }
  .loc-card { padding: 28px; }
  .wa-float { bottom: calc(env(safe-area-inset-bottom, 0px) + 18px); right: 18px; animation: none; box-shadow: 0 6px 18px rgba(37,211,102,0.35); }
  .footer { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 130px 0 70px; padding-top: calc(130px + env(safe-area-inset-top, 0px)); }
  .reviews-cta { gap: 16px; padding: 20px; }
  .reviews-cta .rc-sub { font-size: 13px; }
  /* CTAs não podem estourar a largura no mobile */
  .wa-banner .btn { width: 100%; white-space: normal; }
  .page-hero .hero-cta { width: 100%; }
  .page-hero .hero-cta .btn { width: 100%; }
}

@media (max-width: 420px) {
  .brand { font-size: 26px; }
  .svc { grid-template-columns: 88px 1fr; }
  .svc .svc-body { padding: 22px 20px; }
  .hero-cta .btn, .final-cta .btn { width: 100%; }
}

@media (max-width: 360px) {
  .brand .city { display: none; }
}

/* ============================================================
   FAQ (compartilhado entre home e páginas de serviço)
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: var(--line-gold); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; cursor: pointer; padding: 22px 26px; text-align: left; font-family: var(--sans); font-weight: 700; font-size: 17px; color: var(--ink); }
.faq-q i { position: relative; width: 16px; height: 16px; flex: none; }
.faq-q i::before, .faq-q i::after { content: ""; position: absolute; background: var(--gold-deep); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-q i::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-q i::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-item.open .faq-q i::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 26px 24px; font-size: 16px; color: var(--text); }

/* ============================================================
   PÁGINAS DE SERVIÇO (internas)
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--wine);
  color: var(--cream);
  padding: 150px 0 84px;
  padding-top: calc(150px + env(safe-area-inset-top, 0px));
  overflow: hidden;
}
.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.page-hero h1 {
  color: var(--cream);
  font-size: clamp(38px, 5vw, 64px);
  margin-top: 18px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero .sub {
  margin-top: 22px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(246,244,245,0.78);
  max-width: 520px;
}
.page-hero .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Migalhas (breadcrumb) */
.crumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 13.5px; font-weight: 600;
  color: rgba(246,244,245,0.6);
}
.crumb a { color: rgba(246,244,245,0.78); transition: color .2s; }
.crumb a:hover { color: var(--gold); }
.crumb svg { width: 14px; height: 14px; opacity: 0.55; }
.crumb .here { color: var(--gold); }

/* Selo/ícone grande do serviço no hero */
.page-hero-visual { display: grid; place-items: center; }
.svc-badge {
  position: relative;
  width: clamp(180px, 24vw, 250px);
  aspect-ratio: 1;
  border-radius: var(--r-xl);
  display: grid; place-items: center;
  background:
    radial-gradient(120% 90% at 50% 12%, rgba(233,172,67,0.20), transparent 60%),
    linear-gradient(158deg, var(--wine-800) 0%, var(--wine) 55%, #2E0918 100%);
  border: 1px solid rgba(233,172,67,0.24);
  box-shadow: var(--shadow-lg);
}
.svc-badge::after {
  content: ""; position: absolute; inset: 12%; border-radius: 50%;
  border: 1px solid rgba(233,172,67,0.18);
}
.svc-badge svg { width: 44%; height: 44%; color: var(--gold); position: relative; z-index: 1; }

/* Texto longo de serviço */
.prose { max-width: 720px; }
.prose p { font-size: 17px; color: var(--text); margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }

/* Lista de benefícios / o que esperar */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 8px 0 0; padding: 0; list-style: none; }
.checklist li {
  list-style: none;
  display: flex; align-items: flex-start; gap: 13px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-size: 15.5px; color: var(--ink); font-weight: 600;
}
.checklist svg { width: 24px; height: 24px; color: var(--gold-deep); flex: none; margin-top: 1px; }

/* Lista de tópicos simples com bolinha dourada */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag-row span { font-size: 13px; font-weight: 600; color: var(--gold-deep); background: var(--gold-soft); padding: 7px 14px; border-radius: 100px; }

/* Grade de outros serviços */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.related-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-gold); }
.related-card .ic {
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--blush); color: var(--wine);
  display: grid; place-items: center;
}
.related-card .ic svg { width: 26px; height: 26px; }
.related-card h3 { font-size: 21px; }
.related-card p { font-size: 14.5px; color: var(--text); }
.related-card .go { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: var(--wine); padding-top: 6px; }
.related-card .go svg { width: 16px; height: 16px; color: var(--gold-deep); transition: transform .3s; }
.related-card:hover .go svg { transform: translateX(4px); }

@media (max-width: 1000px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-visual { display: none; } /* ícone só faz sentido como visual lateral no desktop */
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .checklist { grid-template-columns: 1fr; }
  .page-hero { padding: 124px 0 64px; padding-top: calc(124px + env(safe-area-inset-top, 0px)); }
}
