/* ==========================================================================
   BRD Intermediações — site institucional
   ========================================================================== */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: dark;

  --bg: #050706;
  --bg-soft: #0a0f0b;
  --panel: #0e1410;
  --panel-2: #121a14;
  --light: #f2f5f2;
  --light-2: #e8ece8;

  --text: #f4f7f4;
  --muted: #9fada4;
  --muted-dark: #55625a;

  --green: #3fc12f;
  --green-bright: #6ee34a;
  --green-deep: #1c7f14;
  --green-glow: rgba(63, 193, 47, 0.18);

  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(6, 12, 8, 0.12);

  --radius: 16px;
  --radius-lg: 26px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.45);

  --wrap: 1220px;
  --header-h: 84px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  overflow-wrap: break-word;
}

p { margin: 0; }

.wrap {
  width: min(var(--wrap), calc(100% - 44px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 18px;
  background: var(--green);
  color: #05210a;
  font-weight: 800;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --------------------------------------------------------- shared pieces */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--green);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.eyebrow.on-light { color: var(--green-deep); }
.eyebrow.on-light::before { background: var(--green-deep); }

.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: -0.015em;
}

.section-title span { color: var(--green); }

.section-lead {
  max-width: 62ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-head { margin-bottom: 46px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .section-lead { margin-inline: auto; }

section { position: relative; }

.pad { padding: clamp(72px, 8.5vw, 118px) 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn svg { width: 19px; height: 19px; flex: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-deep));
  color: #04200a;
  box-shadow: 0 14px 34px rgba(63, 193, 47, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(63, 193, 47, 0.34);
}

.btn-outline {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green-bright);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------- reveal fx */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.8, 0.3, 1), transform 0.7s cubic-bezier(0.22, 0.8, 0.3, 1);
}

.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------------------------------------------------------------- header */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, height 0.3s ease, backdrop-filter 0.3s ease;
}

.header.is-stuck {
  height: 70px;
  background: rgba(5, 8, 6, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.header .wrap {
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand { display: flex; align-items: center; }

.brand img {
  width: auto;
  height: 50px;
  transition: height 0.3s ease;
}

.header.is-stuck .brand img { height: 42px; }

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
}

.nav a {
  position: relative;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #cbd5cd;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
  transition: width 0.25s ease;
}

.nav a:hover, .nav a.is-active { color: #fff; }
.nav a:hover::after, .nav a.is-active::after { width: 100%; }

.header .btn { padding: 12px 22px; font-size: 0.82rem; }

.burger {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------------------------------------------ hero */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 52px) 0 66px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/hero-handshake.jpg") 62% center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, var(--bg) 0%, rgba(5, 7, 6, 0.96) 34%, rgba(5, 7, 6, 0.72) 56%, rgba(5, 7, 6, 0.5) 100%),
    radial-gradient(circle at 12% 84%, var(--green-glow), transparent 46%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px;
  align-items: center;
}

.hero-grid > * { min-width: 0; }

.hero-logo {
  width: min(272px, 66%);
  margin-bottom: 22px;
}

.hero-tagline {
  display: block;
  margin: -8px 0 26px;
  color: var(--green);
  font-size: clamp(0.7rem, 1.4vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1.5;
}

.hero h1 {
  font-size: clamp(1.55rem, 3.6vw, 3.35rem);
  text-transform: uppercase;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.hero h1 .thin { display: block; font-weight: 500; font-size: 0.62em; letter-spacing: 0.01em; }
.hero h1 .hl { color: var(--green); }

.hero-lead {
  max-width: 46ch;
  margin-top: 22px;
  color: #c3cec7;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.hero-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 18px;
  justify-items: center;
}

.pillar { text-align: center; }

.pillar-ring {
  width: 88px;
  height: 88px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(63, 193, 47, 0.55);
  border-radius: 50%;
  background: rgba(5, 12, 7, 0.55);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover .pillar-ring {
  transform: translateY(-5px);
  border-color: var(--green-bright);
  box-shadow: 0 0 0 6px rgba(63, 193, 47, 0.08), 0 16px 34px rgba(0, 0, 0, 0.4);
}

.pillar-ring svg { width: 40px; height: 40px; }

.pillar b {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #dbe4dd;
}

.icon-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ------------------------------------------------------------ quem somos */

.about { background: var(--bg-soft); border-top: 1px solid var(--line); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(38px, 5vw, 70px);
  align-items: center;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 11 / 8; }

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(63, 193, 47, 0.14), transparent 55%, rgba(5, 7, 6, 0.6));
}

.about-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 14px 20px;
  border: 1px solid rgba(63, 193, 47, 0.35);
  border-radius: 14px;
  background: rgba(6, 12, 8, 0.82);
  backdrop-filter: blur(8px);
}

.about-badge strong { display: block; color: var(--green-bright); font-size: 1.5rem; line-height: 1; }
.about-badge span { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.stat {
  padding: 22px 18px 0 0;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: 0; }
.stat:not(:first-child) { padding-left: 18px; }

.stat svg { width: 30px; height: 30px; margin-bottom: 10px; }

.stat strong {
  display: block;
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
}

.stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}

/* ------------------------------------------------------------------- mvv */

.mvv { background: var(--light); color: #101712; }

.mvv .section-title { color: #0d1410; }
.mvv .section-lead { color: #55625a; }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.mvv-card {
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(6, 12, 8, 0.08);
  box-shadow: 0 18px 44px rgba(9, 20, 12, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mvv-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(9, 20, 12, 0.12); }

.mvv-card svg { width: 52px; height: 52px; margin-bottom: 18px; }

.mvv-card h3 {
  color: var(--green-deep);
  font-size: 1.12rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mvv-card p { color: #4d5a52; font-size: 0.97rem; }

.mvv-list { margin: 0; padding: 0; list-style: none; }

.mvv-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  color: #33403a;
  font-size: 0.97rem;
  font-weight: 600;
}

.mvv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.icon-solid { fill: var(--green-deep); }

/* -------------------------------------------------------------- negociar */

.negociar {
  background:
    radial-gradient(circle at 18% 26%, rgba(63, 193, 47, 0.13), transparent 42%),
    linear-gradient(180deg, #060a07, #0b120c);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.negociar-top {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.negociar-brand { text-align: center; }
.negociar-brand img { width: min(300px, 78%); margin-inline: auto; }

.negociar h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  text-transform: uppercase;
}

.negociar h2 span { color: var(--green); }

.negociar-lead { margin-top: 18px; color: var(--muted); font-size: 1.05rem; max-width: 54ch; }

.negociar-cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }

.perks {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.perk {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.022);
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.perk:hover { transform: translateY(-5px); border-color: rgba(63, 193, 47, 0.45); background: rgba(63, 193, 47, 0.05); }

.perk svg { width: 30px; height: 30px; margin-bottom: 14px; }
.perk p { font-size: 0.88rem; color: #cfd8d2; font-weight: 600; line-height: 1.5; }

/* ---------------------------------------------------------------- servos */

.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service {
  padding: 30px 26px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.service::before {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(63, 193, 47, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service:hover { transform: translateY(-6px); border-color: rgba(63, 193, 47, 0.42); }
.service:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(63, 193, 47, 0.3);
  border-radius: 14px;
  background: rgba(63, 193, 47, 0.07);
}

.service-icon svg { width: 26px; height: 26px; }

.service h3 { font-size: 1.02rem; margin-bottom: 9px; letter-spacing: -0.01em; }
.service p { color: var(--muted); font-size: 0.9rem; position: relative; }

/* -------------------------------------------------------- como funciona */

.how { background: var(--bg-soft); border-top: 1px solid var(--line); }

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 33px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63, 193, 47, 0.4), transparent);
}

.step { text-align: center; position: relative; }

.step-num {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--green-bright), var(--green-deep));
  color: #04200a;
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(63, 193, 47, 0.08);
}

.step h3 { font-size: 1rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.step p { color: var(--muted); font-size: 0.85rem; }

/* --------------------------------------------------------------- office */

.office { background: var(--bg); border-top: 1px solid var(--line); }

.office-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(38px, 5vw, 70px);
  align-items: center;
}

.mock {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(63, 193, 47, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.mock-screen {
  border-radius: 16px;
  background: #080d09;
  border: 1px solid var(--line);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 15px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.mock-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); }
.mock-bar i:last-of-type { background: var(--green); }
.mock-bar span { margin-left: auto; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-dark); }

.mock-body { padding: 20px; display: grid; gap: 16px; }

.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }

.mock-kpi {
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.mock-kpi small { display: block; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-dark); }
.mock-kpi b { font-size: 1.05rem; color: var(--green-bright); }

.mock-chart {
  height: 128px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
}

.mock-chart i {
  flex: 1;
  height: var(--h);
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, var(--green-bright), rgba(28, 127, 20, 0.35));
  transform-origin: bottom;
  animation: grow 0.9s var(--d) cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes grow { from { transform: scaleY(0.05); opacity: 0; } }

.mock-rows { display: grid; gap: 8px; }

.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.74rem;
  color: #b8c4bc;
}

.mock-row em { margin-left: auto; font-style: normal; font-weight: 800; color: var(--green-bright); }
.mock-row u { text-decoration: none; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }

.check-list { margin: 26px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 0.98rem;
  color: #ccd6d0;
  font-weight: 600;
}

.check-list svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }

/* --------------------------------------------------------------- planos */

.plans {
  background:
    radial-gradient(circle at 82% 14%, rgba(63, 193, 47, 0.12), transparent 44%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.plan {
  padding: 40px 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  text-align: center;
}

.plan .price {
  display: block;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--green-bright);
  letter-spacing: -0.04em;
}

.plan .price small { font-size: 0.3em; font-weight: 800; vertical-align: super; margin-right: 10px; letter-spacing: 0; }

.plan h3 {
  margin: 12px 0 10px;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan p { color: var(--muted); font-size: 0.93rem; }

.plan-wide {
  grid-column: 1 / -1;
  padding: 38px 34px;
  border: 1px solid rgba(63, 193, 47, 0.4);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(63, 193, 47, 0.14), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.plan-wide h3 { font-size: clamp(1.15rem, 2.6vw, 1.6rem); letter-spacing: 0.05em; text-transform: uppercase; }
.plan-wide p { margin-top: 12px; color: #cbd6cf; font-size: 0.98rem; }
.plan-wide .note { margin-top: 6px; color: var(--muted); font-size: 0.85rem; }

/* --------------------------------------------------- clientes + depoimentos */

.social-proof { background: var(--light); border-top: 1px solid rgba(6, 12, 8, 0.08); }

.client-proof-intro { text-align: center; max-width: 640px; margin: 0 auto; }

.proof-title {
  font-size: 1.25rem;
  color: #0d1410;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.proof-sub { color: #66736b; font-size: 0.88rem; margin-bottom: 0; }

/* --------------------------------------- carrossel de clientes/depoimentos */
.client-card-carousel {
  position: relative;
  max-width: 760px;
  margin: 34px auto 0;
  min-height: 220px;
}

.client-card {
  display: none;
  gap: clamp(20px, 4vw, 36px);
  align-items: center;
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(6, 12, 8, 0.08);
  box-shadow: 0 18px 44px rgba(9, 20, 12, 0.07);
  margin: 0;
}

.client-card.is-active {
  display: flex;
  animation: clientCardIn 0.45s ease both;
}

.client-card-logo {
  flex: 0 0 auto;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(6, 12, 8, 0.1);
  border-radius: 12px;
  background: #fff;
}

.client-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-card-body { min-width: 0; }

/* Cliente sem depoimento cadastrado ainda: mostra só logo + nome, centralizado */
.client-card.client-card--sem-comentario {
  justify-content: center;
  text-align: center;
}

.client-card--sem-comentario .client-card-body footer {
  margin-top: 0;
}

.client-card--sem-comentario .client-card-body footer b {
  font-size: 1.05rem;
}

.quote-mark { font-size: 3rem; line-height: 0.7; color: var(--green); font-weight: 900; }

.client-card-body p { margin-top: 14px; color: #3b4842; font-size: 1rem; font-style: italic; }

.client-card-body footer { margin-top: 18px; font-size: 0.82rem; color: #66736b; }
.client-card-body footer b { display: block; color: #0d1410; font-style: normal; }

@keyframes clientCardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.client-card-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.client-card-dots .dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(6, 12, 8, 0.18);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.client-card-dots .dot.is-active {
  background: var(--green);
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .client-card { flex-direction: column; text-align: center; padding: 26px 20px; }
  .client-card-logo { width: 128px; height: 128px; }
  .client-card-body footer { text-align: center; }
}

/* ------------------------------------------------------------------- cta */

.contact {
  background:
    radial-gradient(circle at 50% 0%, rgba(63, 193, 47, 0.16), transparent 52%),
    linear-gradient(180deg, #060a07, var(--bg));
  text-align: center;
}

.contact h2 { font-size: clamp(1.9rem, 4vw, 3rem); text-transform: uppercase; }
.contact h2 span { color: var(--green); }
.contact p { max-width: 54ch; margin: 18px auto 0; color: var(--muted); font-size: 1.05rem; }

.contact-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.phone-big {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
}

.phone-big svg { width: 40px; height: 40px; flex: none; }

/* ---------------------------------------------------------------- footer */

.footer {
  background: #040605;
  border-top: 1px solid var(--line);
  padding: 58px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.footer-grid > div { min-width: 0; }

.footer-logo { width: 190px; margin-bottom: 18px; }

.footer-tag {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.6;
}

.footer h4 {
  margin-bottom: 18px;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
}

.social { display: grid; gap: 12px; }

.social a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c2ccc6;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.social a:hover { color: var(--green-bright); transform: translateX(3px); }

.social svg { width: 22px; height: 22px; flex: none; }

.footer-contact { display: grid; gap: 14px; }

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #dbe4de;
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.footer-contact a:hover { color: var(--green-bright); }
.footer-contact svg { width: 22px; height: 22px; flex: none; }

.qr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.qr img { width: 104px; height: 104px; border-radius: 8px; background: #fff; padding: 4px; }
.qr span { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); line-height: 1.6; }
.qr b { display: block; color: var(--green-bright); }

.footer-bottom {
  margin-top: 46px;
  padding: 22px 0 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: var(--muted-dark);
  font-size: 0.76rem;
}

.footer-bottom > span:last-child { padding-right: 74px; }

.mock-note {
  margin-top: 12px;
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ----------------------------------------------------------- wa floating */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, #4fd63b, #199111);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease;
}

.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 31px; height: 31px; fill: #04200a; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .perks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 14px; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
}

@media (max-width: 960px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 8px 22px 22px;
    background: rgba(5, 8, 6, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 14px 2px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
  .nav a::after { display: none; }

  .burger { display: block; }
  .header .btn { display: none; }

  .hero { padding-top: calc(var(--header-h) + 48px); }
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 52px; }
  .hero h1 { font-size: clamp(1.55rem, 6vw, 2.9rem); }
  .hero-bg { background-position: 62% center; }
  .pillars { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px 10px; }
  .pillar-ring { width: 74px; height: 74px; }
  .pillar-ring svg { width: 33px; height: 33px; }
  .pillar b { font-size: 0.64rem; letter-spacing: 0.08em; }

  .about-grid, .office-grid, .negociar-top { grid-template-columns: minmax(0, 1fr); }
  .about-grid > *, .office-grid > *, .negociar-top > * { min-width: 0; }
  .about-grid .about-photo { order: -1; }
  .mvv-grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .negociar-brand img { width: min(230px, 60%); }
}

@media (max-width: 720px) {
  .wrap { width: calc(100% - 34px); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .stat { padding: 20px 14px 18px 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(2n) { border-right: 0; padding-left: 16px; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-last-child(-n + 2) { border-bottom: 0; }
  .services-grid, .plans-grid { grid-template-columns: minmax(0, 1fr); }
  .perks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .hero-logo { width: min(260px, 82%); }
  .btn { width: 100%; }
  .header .btn, .nav .btn { width: auto; }
  .qr { flex-direction: column; text-align: center; }
  .footer-bottom > span:last-child { padding-right: 0; }
}

@media (max-width: 460px) {
  .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 10px; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .mock-kpis { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
