/* ============================================================
   SOUZA INOX — Folha de estilo principal
   Design: premium industrial — preto / branco / cinza + âmbar
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Cores */
  --ink: #111114;
  --ink-soft: #1b1b20;
  --paper: #ffffff;
  --paper-warm: #f7f6f3;
  --paper-warm-2: #f1efea;
  --text: #4a4a52;
  --text-mute: #80808a;
  --line: #e7e4de;
  --line-dark: rgba(255, 255, 255, 0.12);

  --accent: #f5a623;
  --accent-strong: #e08c0b;
  --accent-soft: rgba(245, 166, 35, 0.12);

  --steel-1: #3a3d42;
  --steel-2: #6b6f76;
  --steel-3: #2c2e33;

  /* Tipografia */
  --font-head: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Raio */
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --pill: 999px;

  /* Sombra */
  --shadow-soft: 0 18px 50px -22px rgba(20, 20, 30, 0.28);
  --shadow-card: 0 6px 28px -10px rgba(0, 0, 0, 0.14);
  --shadow-float: 0 12px 30px -8px rgba(0, 0, 0, 0.25);

  /* Layout */
  --container: 1200px;
  --hero-max: min(1460px, 94vw);
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(72px, 9vw, 132px);

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

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.display {
  font-size: clamp(2.5rem, 5.4vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
}

h3 { font-size: 1.3rem; }

p { color: var(--text); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text); line-height: 1.75; }

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 660px; }
.section-head .section-title { margin-top: 1rem; }
.section-head p { margin-top: 1rem; color: var(--text-mute); }
.section-head--center { margin-inline: auto; text-align: center; }

.text-center { text-align: center; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--accent);
  color: #1a1206;
  box-shadow: 0 10px 24px -10px rgba(245, 166, 35, 0.7);
}
.btn--primary:hover { background: var(--accent-strong); box-shadow: 0 14px 30px -10px rgba(245, 166, 35, 0.8); }

.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-soft); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(17, 17, 20, 0.18);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

.btn--light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255, 255, 255, 0.18); }

.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.02rem; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.arrow-link svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }
.arrow-link:hover { color: var(--accent-strong); }

/* ---------- Media com fallback metálico ---------- */
.media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--steel-1), var(--steel-2) 38%, var(--steel-3) 72%, #54585f);
  background-size: cover;
}
.media::after {
  /* leve textura escovada */
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.05) 0 2px,
    rgba(0, 0, 0, 0.04) 2px 4px
  );
  opacity: 0.5;
  pointer-events: none;
}
.media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 76px;
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-logo { height: 40px; width: auto; display: block; }
.brand-logo--neg { display: none; }
.site-footer .brand-logo { height: 38px; }
.brand-mark { display: flex; gap: 3px; align-items: flex-end; height: 26px; }
.brand-mark span { width: 5px; border-radius: 2px; background: var(--ink); }
.brand-mark span:nth-child(1) { height: 26px; }
.brand-mark span:nth-child(2) { height: 20px; }
.brand-mark span:nth-child(3) { height: 26px; }
.brand-mark span:nth-child(4) { height: 14px; background: var(--accent); }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-name b { color: var(--accent-strong); font-weight: 700; }

.main-nav ul { display: flex; gap: 0.35rem; align-items: center; }
.main-nav a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border-radius: var(--pill);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.main-nav a:hover { background: var(--paper-warm-2); }
.main-nav a.is-active { color: var(--accent-strong); }

.header-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--r-sm); align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

/* Drawer mobile */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: var(--paper);
  z-index: 120;
  padding: 5.5rem 1.6rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: var(--shadow-float);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a { padding: 0.9rem 0.6rem; border-radius: var(--r-sm); font-family: var(--font-head); font-weight: 500; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-drawer .btn { margin-top: 1.2rem; }
.drawer-backdrop { position: fixed; inset: 0; background: rgba(10, 10, 12, 0.5); opacity: 0; visibility: hidden; transition: 0.3s var(--ease); z-index: 110; }
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(8px, 2vw, 18px); }
.hero > .container { max-width: var(--hero-max); }
.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: min(82vh, 720px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.hero-card .media { position: absolute; inset: 0; }
.hero-card .media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10, 10, 14, 0.15) 0%, rgba(10, 10, 14, 0.05) 35%, rgba(10, 10, 14, 0.78) 100%),
    linear-gradient(90deg, rgba(10, 10, 14, 0.55) 0%, rgba(10, 10, 14, 0) 60%);
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(1.6rem, 4vw, 3.4rem);
  max-width: 760px;
  color: #fff;
}
.hero-content .eyebrow { color: #ffd591; }
.hero-content .eyebrow::before { background: var(--accent); }
.hero h1 {
  color: #fff;
  margin-top: 1.1rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero p {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 1.3rem;
  max-width: 580px;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero-badges { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; align-items: center; }
.hero-badge { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: rgba(255, 255, 255, 0.92); }
.hero-badge svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.hero-badge b { font-family: var(--font-head); }

/* Stats strip (overlap) */
.stats-strip {
  position: relative;
  z-index: 5;
  margin-top: -56px;
  margin-inline: auto;
  max-width: calc(var(--hero-max) - 2 * var(--gutter));
  width: calc(100% - 2 * var(--gutter));
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.6rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.stat { position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line-dark);
}
.stat-num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 2.7rem); letter-spacing: -0.03em; line-height: 1; }
.stat-num .suffix { color: var(--accent); }
.stat-label { margin-top: 0.5rem; font-size: 0.88rem; color: rgba(255, 255, 255, 0.62); line-height: 1.4; }

/* ============================================================
   ABOUT / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split-media { order: 2; }

.split-media { position: relative; }
.split-media .media { border-radius: var(--r-lg); aspect-ratio: 5 / 6; box-shadow: var(--shadow-soft); }
.float-badge {
  position: absolute;
  right: -18px;
  bottom: 28px;
  background: var(--paper);
  border-radius: var(--r);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 210px;
}
.float-badge .fb-num { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--ink); line-height: 1; }
.float-badge .fb-txt { font-size: 0.8rem; color: var(--text-mute); line-height: 1.3; }
.float-badge .fb-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-strong); display: grid; place-items: center; flex: none; }
.float-badge .fb-icon svg { width: 22px; height: 22px; }

.checklist { margin-top: 1.6rem; display: grid; gap: 0.85rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--ink); font-weight: 500; }
.checklist .ck { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-strong); display: grid; place-items: center; margin-top: 2px; }
.checklist .ck svg { width: 14px; height: 14px; }
.split-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.bg-warm { background: var(--paper-warm); }

.services-grid { margin-top: clamp(2rem, 4vw, 3.2rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2vw, 1.8rem); }

.service-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.service-card .media { aspect-ratio: 4 / 3; display: grid; place-items: center; }
.service-card:hover .media img { transform: scale(1.06); }

/* Emblema (placeholder elegante para foto real) */
.media-emblem {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.5s var(--ease);
}
.media-emblem svg { width: 40px; height: 40px; }
.service-card:hover .media-emblem { transform: scale(1.08) translateY(-2px); }
.media-tag {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.service-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.service-body h3 { font-size: 1.22rem; }
.service-body p { font-size: 0.96rem; color: var(--text-mute); flex: 1; }
.service-body .arrow-link { margin-top: 0.4rem; }

/* ============================================================
   WHY INOX (dark)
   ============================================================ */
.bg-dark { background: var(--ink); color: rgba(255, 255, 255, 0.78); }
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark .eyebrow { color: var(--accent); }
.bg-dark .section-head p { color: rgba(255, 255, 255, 0.6); }

.feature-grid { margin-top: clamp(2rem, 4vw, 3.4rem); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2vw, 1.6rem); }
.feature {
  padding: 1.8rem 1.5rem;
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.feature:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.06); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 1.1rem; }
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.93rem; color: rgba(255, 255, 255, 0.62); }

/* ============================================================
   PROCESSO
   ============================================================ */
.steps { margin-top: clamp(2rem, 4vw, 3.4rem); display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2vw, 1.8rem); }
.step { position: relative; padding-top: 1.6rem; }
.step-num { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--paper-warm-2); letter-spacing: -0.04em; line-height: 1; -webkit-text-stroke: 1px var(--line); }
.step.is-accent .step-num { color: var(--accent); -webkit-text-stroke: 0; }
.step h3 { font-size: 1.15rem; margin: 0.9rem 0 0.5rem; }
.step p { font-size: 0.94rem; color: var(--text-mute); }

/* ============================================================
   REGIÕES
   ============================================================ */
.regions-grid { margin-top: clamp(2rem, 4vw, 3.2rem); display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.2rem, 2vw, 1.8rem); }
.region-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.region-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.region-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem; }
.region-head svg { width: 22px; height: 22px; color: var(--accent-strong); }
.region-head h3 { font-size: 1.3rem; }
.region-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.region-tags span { font-size: 0.84rem; padding: 0.35rem 0.8rem; border-radius: var(--pill); background: var(--paper-warm); color: var(--text); }

/* ============================================================
   DEPOIMENTO
   ============================================================ */
.quote-block { max-width: 880px; margin-inline: auto; text-align: center; }
.quote-stars { display: inline-flex; gap: 0.25rem; color: var(--accent); margin-bottom: 1.6rem; }
.quote-stars svg { width: 22px; height: 22px; }
.quote-block blockquote {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.quote-author { margin-top: 1.8rem; display: inline-flex; align-items: center; gap: 0.85rem; }
.quote-author .qa-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--steel-1), var(--steel-2)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote-author .qa-name { font-family: var(--font-head); font-weight: 600; color: var(--ink); text-align: left; }
.quote-author .qa-role { font-size: 0.85rem; color: var(--text-mute); text-align: left; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: clamp(2.6rem, 6vw, 5rem) clamp(1.6rem, 5vw, 4.5rem);
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(245, 166, 35, 0.28), transparent 55%),
    radial-gradient(80% 120% at 0% 100%, rgba(245, 166, 35, 0.12), transparent 50%);
}
.cta-band .eyebrow { color: var(--accent); }
.cta-band h2 { color: #fff; max-width: 720px; }
.cta-band p { color: rgba(255, 255, 255, 0.7); max-width: 560px; margin-top: 1rem; }
.cta-band .hero-actions { margin-top: 2.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.62); padding-top: clamp(3.4rem, 6vw, 5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-mark span { background: #fff; }
.footer-brand .brand-mark span:nth-child(4) { background: var(--accent); }
.footer-about { margin-top: 1.2rem; font-size: 0.92rem; line-height: 1.7; color: #ffffff73; }
.footer-legal { margin-top: 1.2rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.93rem; color: rgba(255, 255, 255, 0.62); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 0.65rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; }
.footer-hours .day { color: rgba(255, 255, 255, 0.55); }
.footer-hours .closed { color: var(--accent); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.6rem 2rem;
  font-size: 0.86rem;
}
.footer-bottom a { color: var(--accent); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wpp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -6px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wpp-float svg { width: 32px; height: 32px; }
.wpp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wpp-ping 2.4s var(--ease) infinite;
}
.wpp-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 36px -6px rgba(37, 211, 102, 0.75); }
@keyframes wpp-ping { 0% { opacity: 0.7; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.5); } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .split-media .media { aspect-ratio: 16 / 11; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
  .stat + .stat:nth-child(odd)::before { display: none; }
}

@media (max-width: 560px) {
  .services-grid, .feature-grid, .steps, .footer-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: 78vh; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .float-badge { right: 12px; }
}

/* ============================================================
   PÁGINA LEGAL / PROSE (política de privacidade)
   ============================================================ */
.page-hero { padding: clamp(2.4rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.page-hero .eyebrow { margin-bottom: 0.8rem; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
.page-hero .lead { margin-top: 1rem; max-width: 720px; color: var(--text-mute); }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: var(--text-mute); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--text-mute); }
.breadcrumb a:hover { color: var(--accent-strong); }
.breadcrumb svg { width: 14px; height: 14px; }

.legal { max-width: 840px; margin-inline: auto; }
.legal-toc { background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem 1.6rem; margin-bottom: 2.6rem; }
.legal-toc h2 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-mute); margin-bottom: 0.8rem; }
.legal-toc ul { display: grid; gap: 0.35rem; }
.legal-toc a { display: inline-flex; gap: 0.5rem; color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.legal-toc a:hover { color: var(--accent-strong); }
.legal-toc a::before { content: "—"; color: var(--accent); }
.legal-body h2 { font-size: 1.4rem; margin-top: 2.6rem; scroll-margin-top: 100px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { margin-top: 0.9rem; }
.legal-body ul { list-style: none; margin-top: 0.9rem; display: grid; gap: 0.5rem; }
.legal-body ul li { display: flex; gap: 0.6rem; }
.legal-body ul li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 0.6rem; border-radius: 50%; background: var(--accent); }
.legal-body a { font-weight: 500; }
.legal-updated { margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--text-mute); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.4rem 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--ink);
  text-align: left;
}
.faq-icon { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-strong); display: grid; place-items: center; transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.faq-icon svg { width: 16px; height: 16px; }
.faq-item.is-open .faq-icon { transform: rotate(135deg); background: var(--accent); color: #1a1206; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.35s var(--ease); }
.faq-a-inner { padding-bottom: 1.4rem; color: var(--text-mute); }

/* ============================================================
   SELEÇÃO DE TEXTO + SCROLL SUAVE (Lenis) + BARRA PERSONALIZADA
   ============================================================ */
::selection { background-color: var(--accent); color: #111114; }
::-moz-selection { background-color: var(--accent); color: #111114; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Esconde a barra nativa SOMENTE quando a personalizada está ativa */
html.has-smooth-scroll { scrollbar-width: none; }
html.has-smooth-scroll::-webkit-scrollbar { width: 0; height: 0; background: transparent; }

/* Barra de rolagem personalizada */
.custom-scroll-track {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  z-index: 9990;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.custom-scroll-track.is-visible { opacity: 1; }
.custom-scroll-thumb {
  position: absolute;
  top: 0;
  right: 2px;
  width: 6px;
  height: 80px;
  background: var(--accent);
  border-radius: 10px;
  transition: background 0.2s ease, width 0.2s ease;
}
.custom-scroll-track.is-dragging .custom-scroll-thumb,
.custom-scroll-thumb:hover { background: var(--accent-strong); width: 8px; cursor: grab; }
.custom-scroll-track.is-dragging .custom-scroll-thumb { cursor: grabbing; }

@media (max-width: 860px) { .custom-scroll-track { display: none; } }
@media (prefers-reduced-motion: reduce) { .custom-scroll-track { display: none; } }

/* ---------- Acessibilidade ---------- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
