/* =========================================================
   PPR Pinturas e Reformas — Stylesheet
   Dois temas: dark (industrial) e light (clean)
   Sotaque: red, navy, charcoal (configurável via Tweaks)
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* Acento — vermelho do PDF (CMYK 0.12/1/1/0.035 ≈ #D50408, com a versão original) */
  --accent: #D42B2B;
  --accent-hi: #E83838;
  --accent-lo: #A81E1E;
  --accent-50: rgba(212, 43, 43, 0.06);
  --accent-15: rgba(212, 43, 43, 0.15);

  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  /* Themed surfaces — sobrescritos por [data-theme] */
  --bg: #0E0E0E;
  --bg-2: #161616;
  --surface: #1A1A1A;
  --surface-2: #222;
  --line: #262626;
  --line-2: #2E2E2E;
  --fg: #FFFFFF;
  --fg-muted: #B5B5B5;
  --fg-dim: #777;
  --fg-faint: #555;
  --light-section: #F5F3EE;
  --light-section-fg: #111;

  --font-display: 'Barlow Condensed', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: 'Barlow', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 120px);
}

[data-theme="light"] {
  --bg: #F5F3EE;
  --bg-2: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #FAF8F2;
  --line: #E8E4DA;
  --line-2: #D9D3C4;
  --fg: #1A1A1A;
  --fg-muted: #444;
  --fg-dim: #777;
  --fg-faint: #999;
  --light-section: #1A1A1A;        /* swap: dark inset on light */
  --light-section-fg: #FFFFFF;
}

[data-accent="navy"]  { --accent:#1E3A8A; --accent-hi:#2952B3; --accent-lo:#152759; --accent-50:rgba(30,58,138,.06); --accent-15:rgba(30,58,138,.15); }
[data-accent="charcoal"] { --accent:#222; --accent-hi:#3a3a3a; --accent-lo:#000; --accent-50:rgba(0,0,0,.06); --accent-15:rgba(0,0,0,.18); }
[data-accent="amber"] { --accent:#D97706; --accent-hi:#EB8B14; --accent-lo:#A8590A; --accent-50:rgba(217,119,6,.06); --accent-15:rgba(217,119,6,.15); }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
svg.icon { width: 1em; height: 1em; fill: currentColor; vertical-align: -0.125em; flex-shrink: 0; }
svg.icon-lg { width: 28px; height: 28px; }
svg.icon-xl { width: 36px; height: 36px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

/* ======== Eyebrow + título de seção ======== */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: block; width: 36px; height: 2px; background: var(--accent);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-wrap: balance;
}
.section-lead {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 620px;
  text-wrap: pretty;
}

/* ======== NAVBAR ======== */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900; color: #fff; font-size: 17px;
  letter-spacing: 1px;
  flex-shrink: 0;
  border-radius: 2px;
  position: relative;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 4px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 1px;
  pointer-events: none;
}
.brand-text { line-height: 1; font-family: var(--font-display); }
.brand-text .b1 {
  display: block; font-weight: 900; font-size: 20px;
  color: var(--fg); letter-spacing: 0.5px; text-transform: uppercase;
}
.brand-text .b2 {
  display: block; font-size: 11px; font-weight: 600; color: var(--fg-dim);
  text-transform: uppercase; letter-spacing: 2px; margin-top: 3px;
  font-family: var(--font-body);
}

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--fg-muted);
  transition: color .15s;
  position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 13px 24px; min-height: 46px;
  border: 0; cursor: pointer;
  transition: transform .12s, background .18s, border-color .18s, color .18s, box-shadow .18s;
  border-radius: 2px;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 18px -6px var(--accent);
}
.btn-accent:hover { background: var(--accent-hi); box-shadow: 0 8px 28px -8px var(--accent); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { background: var(--whatsapp-dark); }
.btn-ghost {
  background: transparent; color: var(--fg);
  border: 2px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { font-size: 14px; padding: 16px 32px; min-height: 54px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: 0; padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--fg); transition: .25s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  display: none;
  background: var(--bg-2);
  border-bottom: 2px solid var(--accent);
}
.mobile-drawer.open { display: block; }
.mobile-drawer a {
  display: block;
  padding: 18px var(--pad-x);
  font-size: 14px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--fg-muted);
  border-bottom: 1px solid var(--line);
}
.mobile-drawer a:hover { background: var(--surface); color: var(--fg); }
.mobile-drawer .btn { margin: 18px var(--pad-x); width: calc(100% - 2 * var(--pad-x)); }

/* ======== HERO ======== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 110px);
  background: var(--bg);
  isolation: isolate;
}
/* Background — ghost wordmark */
.hero[data-style="wordmark"]::after {
  content: 'PPR'; position: absolute;
  right: clamp(-80px, -3vw, -40px); top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(280px, 36vw, 540px);
  line-height: .85; letter-spacing: -0.04em;
  color: var(--accent); opacity: .055;
  pointer-events: none; user-select: none; z-index: -1;
}
[data-theme="light"] .hero[data-style="wordmark"]::after { opacity: .07; }

/* Background — diagonal stripes */
.hero[data-style="stripes"]::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg,
    transparent 0 60px,
    var(--accent-50) 60px 62px);
  z-index: -1;
}
.hero[data-style="stripes"]::after {
  content: ''; position: absolute;
  right: -10%; top: 10%; width: 60vw; height: 80%;
  background: radial-gradient(ellipse at center, var(--accent-15), transparent 65%);
  z-index: -1;
}

/* Background — grid */
.hero[data-style="grid"]::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask: radial-gradient(ellipse 70% 50% at 50% 50%, #000 50%, transparent 100%);
  z-index: -1; opacity: .8;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.hero-grid.split { grid-template-columns: minmax(0,1.3fr) minmax(0, 1fr); }

@media (max-width: 980px) { .hero-grid.split { grid-template-columns: 1fr; } }

.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.hero-eyebrow .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-size: 10px; letter-spacing: 2px;
}
.hero-eyebrow .pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-15);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px var(--accent-15); }
  50%     { box-shadow: 0 0 0 8px transparent; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(54px, 9.5vw, 130px);
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero h1 .stroke {
  -webkit-text-stroke: 2px var(--fg);
  color: transparent;
}

.hero-sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 520px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.hero-trust {
  display: flex; align-items: center; gap: 22px;
  margin-top: 26px;
  font-size: 13px; color: var(--fg-dim);
}
.hero-trust .stars { color: var(--accent); letter-spacing: 2px; }
.hero-trust .sep { width: 1px; height: 14px; background: var(--line-2); }

.hero-stats {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: grid; gap: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 760px) { .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

.stat-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 5vw, 56px); line-height: 1;
  color: var(--accent);
}
.stat-num .plus { font-size: .65em; color: var(--fg-muted); margin-left: 2px; }
.stat-lbl {
  margin-top: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--fg-dim);
}

/* Hero side — visual block */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.hero-visual .placeholder {
  position: relative;
  background-image:
    linear-gradient(45deg, var(--surface-2) 25%, transparent 25%),
    linear-gradient(-45deg, var(--surface-2) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--surface-2) 75%),
    linear-gradient(-45deg, transparent 75%, var(--surface-2) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-faint);
}
.hero-visual .placeholder span {
  background: var(--bg);
  border: 1px dashed var(--line-2);
  padding: 12px 18px; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--fg-dim);
}
.hero-visual .ribbon {
  background: var(--accent); color: #fff;
  padding: 18px 22px;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  text-transform: uppercase; letter-spacing: .5px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.hero-visual .ribbon svg { width: 22px; height: 22px; }

/* ======== Trust strip / serviços inline ======== */
.trust-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-strip-inner {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px 40px;
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--fg-muted);
}
.trust-strip-inner span {
  display: inline-flex; align-items: center; gap: 10px;
}
.trust-strip-inner svg { color: var(--accent); width: 16px; height: 16px; }

/* ======== SERVIÇOS ======== */
.servicos {
  padding: var(--section-y) 0;
  background: var(--light-section);
  color: var(--light-section-fg);
}
.servicos .section-title { color: var(--light-section-fg); }
.servicos .section-lead { color: color-mix(in oklab, var(--light-section-fg) 65%, transparent); }
.servicos .head {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px; align-items: end; margin-bottom: 60px;
}
@media (max-width: 880px) { .servicos .head { grid-template-columns: 1fr; gap: 16px; } }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: color-mix(in oklab, var(--light-section-fg) 12%, transparent);
}
.srv {
  background: var(--light-section);
  padding: 36px 28px 32px;
  position: relative;
  display: flex; flex-direction: column;
  transition: background .25s, color .25s, transform .25s;
  cursor: pointer;
  border-top: 3px solid transparent;
  text-align: left;
  min-height: 240px;
}
.servicos[data-compact="true"] .srv { min-height: 180px; padding: 24px 20px 22px; }

.srv-icon {
  width: 56px; height: 56px;
  background: var(--accent-50);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background .25s, color .25s;
}
.srv-icon svg { width: 28px; height: 28px; }
.srv-num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--font-display); font-weight: 900; font-size: 13px;
  color: color-mix(in oklab, var(--light-section-fg) 35%, transparent);
  letter-spacing: 1px;
}
.srv h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 24px; line-height: 1.05;
  text-transform: uppercase; letter-spacing: -0.005em;
  margin-bottom: 10px;
  color: var(--light-section-fg);
}
.srv p {
  font-size: 14px; line-height: 1.65;
  color: color-mix(in oklab, var(--light-section-fg) 60%, transparent);
  margin-bottom: 20px;
  flex: 1;
}
.srv-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.srv-link svg { width: 12px; height: 12px; transition: transform .2s; }

.srv:hover { background: var(--accent); color: #fff; border-top-color: var(--accent-lo); }
.srv:hover .srv-icon { background: rgba(255,255,255,.18); color: #fff; }
.srv:hover h3 { color: #fff; }
.srv:hover p { color: rgba(255,255,255,.85); }
.srv:hover .srv-link { color: #fff; }
.srv:hover .srv-link svg { transform: translateX(4px); }
.srv:hover .srv-num { color: rgba(255,255,255,.55); }

/* ======== PROCESSO ======== */
.processo {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.processo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
@media (max-width: 880px) { .processo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .processo-grid { grid-template-columns: 1fr; } }

.step {
  background: var(--bg);
  padding: 36px 28px;
  position: relative;
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900; font-size: 56px;
  line-height: 1;
  color: var(--accent);
  -webkit-text-stroke: 0;
}
.step h4 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--fg);
}
.step p {
  margin-top: 12px;
  font-size: 14px; line-height: 1.65;
  color: var(--fg-muted);
}

/* ======== SOBRE ======== */
.sobre {
  padding: var(--section-y) 0;
  background: var(--bg-2);
}
.sobre-grid {
  display: grid; gap: clamp(40px, 6vw, 80px);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
}
@media (max-width: 980px) { .sobre-grid { grid-template-columns: 1fr; } }

.sobre p {
  font-size: 16px; line-height: 1.8;
  color: var(--fg-muted);
  margin-top: 18px;
  text-wrap: pretty;
}
.sobre p strong { color: var(--fg); font-weight: 700; }

.address-card {
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  display: flex; align-items: flex-start; gap: 16px;
}
.address-card svg { color: var(--accent); width: 22px; height: 22px; margin-top: 2px; flex-shrink: 0; }
.address-card .lbl {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--fg-dim);
  margin-bottom: 6px;
}
.address-card .val { font-size: 15px; color: var(--fg); line-height: 1.5; }

.sobre-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.stat-box {
  background: var(--bg-2);
  padding: 32px 26px;
  border-top: 3px solid var(--accent);
  position: relative;
}
.stat-box .big {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(48px, 5vw, 64px); line-height: 1;
  color: var(--accent);
}
.stat-box .big .plus { font-size: .55em; color: var(--fg-muted); }
.stat-box .lbl {
  margin-top: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ======== BAIRROS / SEO ======== */
.bairros {
  padding: var(--section-y) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.bairros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 40px;
  border: 1px solid var(--line);
}
.bairro {
  background: var(--bg);
  padding: 22px 22px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--fg-muted);
  transition: background .15s, color .15s;
}
.bairro svg { color: var(--accent); width: 14px; height: 14px; flex-shrink: 0; }
.bairro:hover { background: var(--surface); color: var(--fg); }
.bairro.featured { background: var(--surface); color: var(--fg); font-weight: 600; }

/* ======== DEPOIMENTOS ======== */
.depoimentos {
  padding: var(--section-y) 0;
  background: var(--bg-2);
}
.dep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.dep {
  background: var(--surface);
  padding: 32px 30px;
  border-left: 3px solid var(--accent);
  position: relative;
}
.dep::before {
  content: '"'; position: absolute;
  top: -8px; right: 22px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 100px; line-height: 1;
  color: var(--accent);
  opacity: .15;
  pointer-events: none;
}
.dep .stars { color: var(--accent); letter-spacing: 3px; font-size: 14px; margin-bottom: 16px; }
.dep .text {
  font-size: 15px; line-height: 1.75; color: var(--fg-muted);
  font-style: italic;
}
.dep .author {
  margin-top: 22px;
  display: flex; align-items: center; gap: 12px;
}
.dep .avatar {
  width: 38px; height: 38px;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dep .name { font-size: 14px; font-weight: 700; color: var(--fg); }
.dep .place { font-size: 12px; color: var(--fg-dim); margin-top: 2px; }

/* ======== CTA / CONTATO ======== */
.contato {
  padding: var(--section-y) 0;
  background: var(--accent);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contato::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    transparent 0 80px,
    rgba(0,0,0,.05) 80px 82px);
  pointer-events: none;
}
.contato .container { position: relative; z-index: 1; }
.contato .eyebrow { color: rgba(255,255,255,.85); }
.contato .eyebrow::before { background: rgba(255,255,255,.85); }
.contato .section-title { color: #fff; }
.contato-lead {
  margin-top: 20px;
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,.88);
  max-width: 580px;
  margin-bottom: 50px;
}

.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.contato-card {
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.12);
  padding: 28px 24px;
  transition: background .2s, transform .2s;
}
.contato-card:hover {
  background: rgba(0,0,0,.32);
  transform: translateY(-2px);
}
.contato-card a { display: block; }
.contato-card svg { width: 24px; height: 24px; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.contato-card .lbl {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
}
.contato-card .val {
  font-family: var(--font-display);
  font-weight: 800; font-size: 24px; line-height: 1.1;
  color: #fff;
}
.contato-card.text .val {
  font-family: var(--font-body);
  font-weight: 600; font-size: 15px; line-height: 1.5;
}

.contato-cta-row {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
}
.contato-cta-row .btn {
  background: #fff;
  color: var(--accent);
}
.contato-cta-row .btn:hover { background: rgba(255,255,255,.92); }
.contato-cta-row .btn-wa { background: var(--whatsapp); color: #fff; }
.contato-cta-row .note { font-size: 13px; color: rgba(255,255,255,.7); }

/* ======== FOOTER ======== */
footer {
  background: color-mix(in oklab, var(--bg) 80%, #000);
  padding: 64px 0 28px;
  color: var(--fg-muted);
  border-top: 1px solid var(--line);
}
[data-theme="light"] footer { background: #1A1A1A; color: #B5B5B5; --fg: #fff; --fg-muted: #B5B5B5; --fg-dim: #777; --line: #2a2a2a; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand { font-family: var(--font-display); font-weight: 900; font-size: 28px; text-transform: uppercase; }
.footer-brand span { color: var(--accent); }
.footer-tag { margin-top: 12px; font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-col h5 {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--fg);
  margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 14px; color: var(--fg-muted);
  margin-bottom: 10px; transition: color .15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--fg-dim);
}
.footer-bottom .heart { color: var(--accent); }

/* ======== FLOATING WHATSAPP ======== */
.fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 70;
  display: flex; align-items: center;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 999px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 10px 28px -6px rgba(37, 211, 102, .55), 0 0 0 4px rgba(255,255,255,.06);
  font-weight: 700; font-size: 14px;
  letter-spacing: .3px;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.fab:hover { transform: translateY(-2px) scale(1.02); background: var(--whatsapp-dark); }
.fab svg { width: 22px; height: 22px; margin-right: 10px; }
.fab .pulse {
  position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid var(--whatsapp);
  animation: ring 2s ease-out infinite;
  pointer-events: none;
}
@keyframes ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.45); opacity: 0; }
}

@media (max-width: 540px) {
  .fab .label { display: none; }
  .fab { padding: 16px; }
  .fab svg { margin-right: 0; }
}

/* ======== RESPONSIVE ======== */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav .btn { display: none; }
  .hamburger { display: flex; }
  .servicos .head { margin-bottom: 36px; }
  .sobre-stats { grid-template-columns: 1fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
