/* ============================================================
   BORA FRANQUEAR — Premium Conversion Site
   ============================================================ */

:root {
  --ink: #070b14;
  --ink-2: #0b1120;
  --ink-3: #0f1830;
  --surface: #111a2e;
  --line-dark: rgba(255, 255, 255, .08);
  --line-dark-strong: rgba(255, 255, 255, .14);
  --gold: #e9b44c;
  --gold-soft: #ffd98a;
  --gold-deep: #c8912e;
  --paper: #f6f4ef;
  --paper-2: #ffffff;
  --line-light: rgba(15, 20, 32, .08);
  --text-light: #0f1420;
  --muted-light: #59606f;
  --text-dark: #eaedf4;
  --muted-dark: #98a2b3;
  --green: #34c98a;

  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;

  --shadow-sm: 0 4px 14px rgba(7, 11, 20, .08);
  --shadow-md: 0 14px 40px rgba(7, 11, 20, .16);
  --shadow-gold: 0 12px 30px rgba(233, 180, 76, .25);
  --radius: 18px;

  --ease-out: cubic-bezier(.22, .8, .3, 1);
  --section-pad: clamp(72px, 9vw, 128px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--font-body);
  color: var(--text-light);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.container { width: min(1180px, 92%); margin-inline: auto; }

.ico { width: 18px; height: 18px; flex: none; }

/* ---------- Typography helpers ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(233, 180, 76, .5);
  animation: pulse-dot 2.4s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(233, 180, 76, .45); }
  70% { box-shadow: 0 0 0 9px rgba(233, 180, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 180, 76, 0); }
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -.02em; }

h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700; }

h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 55%, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding-block: var(--section-pad); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin-top: 18px; }
.section-sub { margin-top: 18px; font-size: 1.06rem; color: var(--muted-light); max-width: 560px; }
.section-head.center .section-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  border-radius: 999px;
  padding: 13px 26px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              background .3s, color .3s, border-color .3s;
  will-change: transform;
}

.btn:hover { transform: translateY(-2px); }

.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-sm { padding: 10px 20px; font-size: 13.5px; }

.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 55%, var(--gold-soft));
  color: #171207;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 18px 40px rgba(233, 180, 76, .38); }

.btn-ghost {
  border-color: var(--line-dark-strong);
  color: var(--text-dark);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: rgba(233, 180, 76, .5); color: var(--gold-soft); background: rgba(233, 180, 76, .06); }

.arrow-ico { display: inline-flex; }
.arrow-ico svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 11, 20, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 10px 40px rgba(7, 11, 20, .35);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }

.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--gold);
  background: rgba(233, 180, 76, .1);
  border: 1px solid rgba(233, 180, 76, .3);
  border-radius: 12px;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); box-shadow: var(--shadow-gold); }
.brand-mark svg { width: 24px; height: 24px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-display); font-size: 16.5px; color: var(--text-dark); letter-spacing: -.01em; }
.brand-text small { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-dark); }

.main-nav ul { display: flex; gap: clamp(14px, 2vw, 26px); }

.main-nav a {
  font-size: 14px; font-weight: 500; color: var(--muted-dark);
  padding: 6px 2px; position: relative;
  transition: color .3s;
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.main-nav a:hover { color: var(--text-dark); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background: radial-gradient(120% 100% at 50% 0%, var(--ink-3) 0%, var(--ink-2) 45%, var(--ink) 100%);
  color: var(--text-dark);
  padding: calc(76px + clamp(56px, 9vw, 120px)) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(75% 70% at 50% 20%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(75% 70% at 50% 20%, #000 30%, transparent 90%);
}

.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.hero-glow-1 { width: 480px; height: 480px; background: rgba(233, 180, 76, .14); top: -160px; right: -100px; }
.hero-glow-2 { width: 420px; height: 420px; background: rgba(70, 110, 255, .1); bottom: -180px; left: -120px; }

.hero-growth {
  position: absolute; inset: auto 0 0 0;
  width: 100%; height: 55%;
  opacity: 0;
  transition: opacity 1.6s ease 1s;
}
.hero.in-view .hero-growth { opacity: 1; }

.growth-line { stroke-dasharray: 1600; stroke-dashoffset: 1600; }
.hero.in-view .growth-line { animation: drawLine 2.8s var(--ease-out) .4s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }

.growth-area { opacity: 0; transition: opacity 1.6s ease 1.2s; }
.hero.in-view .growth-area { opacity: 1; }

.growth-node { fill: var(--gold-soft); transform-box: fill-box; transform-origin: center; }
.growth-node.n1 { animation: nodePulse 3s infinite .2s; }
.growth-node.n2 { animation: nodePulse 3s infinite .6s; }
.growth-node.n3 { animation: nodePulse 3s infinite 1s; }
.growth-node.n4 { animation: nodePulse 3s infinite 1.4s; }

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.7); opacity: .35; }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.05rem);
  font-weight: 800;
  margin-top: 22px;
  line-height: 1.06;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 45%, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 24px;
  max-width: 560px;
  font-size: 1.07rem;
  color: var(--muted-dark);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
}

.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -.02em;
}
.trust-item .trust-num { color: var(--gold-soft); }
.trust-label { font-size: 12.5px; color: var(--muted-dark); letter-spacing: .02em; }
.trust-divider { width: 1px; height: 34px; background: var(--line-dark-strong); }

/* Hero side card */

.hero-side { display: flex; justify-content: flex-end; }

.hero-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line-dark-strong);
  border-radius: 22px;
  padding: 30px 28px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  transition: transform .5s var(--ease-out), border-color .5s;
}
.hero-card:hover { transform: translateY(-6px); border-color: rgba(233, 180, 76, .4); }

.hero-card-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: .06em; text-transform: uppercase;
}

.live-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: livePulse 1.8s infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 201, 138, .5); }
  60% { box-shadow: 0 0 0 8px rgba(52, 201, 138, 0); }
}

.hero-card h3 { margin-top: 18px; font-size: 1.35rem; color: var(--text-dark); }
.hero-card p { margin-top: 12px; font-size: .94rem; color: var(--muted-dark); }

.hero-list { margin-top: 20px; display: grid; gap: 12px; }
.hero-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--muted-dark); }
.check {
  flex: none; width: 18px; height: 18px; margin-top: 2px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(233, 180, 76, .14);
  border: 1px solid rgba(233, 180, 76, .35);
  position: relative;
}
.check::after {
  content: ""; width: 6px; height: 3px; margin-top: -1px;
  border-left: 1.5px solid var(--gold-soft);
  border-bottom: 1.5px solid var(--gold-soft);
  transform: rotate(-45deg);
}

.link-underline {
  display: inline-block; margin-top: 22px;
  font-weight: 600; font-size: .92rem;
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(233, 180, 76, .4);
  padding-bottom: 3px;
  transition: border-color .3s, color .3s;
}
.link-underline:hover { border-color: var(--gold-soft); }

/* scroll cue */
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted-dark);
}
.scroll-line {
  width: 1px; height: 34px; overflow: hidden; background: var(--line-dark-strong);
  position: relative;
}
.scroll-line::after {
  content: ""; position: absolute; left: 0; top: 0;
  width: 100%; height: 40%;
  background: var(--gold);
  animation: scrollDrop 1.8s var(--ease-out) infinite;
}
@keyframes scrollDrop {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(260%); }
}

/* ============================================================
   TICKER
   ============================================================ */

.ticker {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 50%, var(--gold-soft));
  color: #171207;
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: tickerMove 26s linear infinite;
  font-family: var(--font-display);
  font-size: 13.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  white-space: nowrap;
}
.ticker-sep { opacity: .45; }
@keyframes tickerMove { to { transform: translateX(-50%); } }

/* ============================================================
   SOBRE
   ============================================================ */

.sobre { background: var(--paper); }

.sobre-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

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

.sobre-frame {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 4 / 4.7;
  border-radius: 28px;
  background:
    radial-gradient(90% 90% at 50% 20%, #1b2440 0%, var(--ink-2) 60%, var(--ink) 100%);
  border: 1px solid var(--line-dark);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sobre-frame::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 80% at 50% 40%, #000 30%, transparent 100%);
}

.sobre-monogram {
  position: relative;
  display: grid; place-items: center;
  width: 78%;
  aspect-ratio: 1;
}
.sobre-monogram span {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(160deg, var(--gold-soft), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sobre-monogram svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spinSlow 40s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.sobre-badge {
  position: absolute;
  background: rgba(15, 24, 48, .9);
  border: 1px solid var(--line-dark-strong);
  border-radius: 14px;
  padding: 12px 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; line-height: 1.25;
  animation: floatY 5s ease-in-out infinite;
}
.sobre-badge strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-soft); }
.sobre-badge span { font-size: .78rem; color: var(--muted-dark); }
.sobre-badge-1 { top: 18%; left: -16px; animation-delay: .6s; }
.sobre-badge-2 { bottom: 20%; right: -14px; animation-delay: 1.4s; }

@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.sobre-text h2 { margin-top: 18px; }
.sobre-text > p { margin-top: 20px; color: var(--muted-light); }
.sobre-text > p strong { color: var(--text-light); font-weight: 600; }

.sobre-points { margin-top: 30px; display: grid; gap: 18px; }

.sobre-points li { display: flex; gap: 14px; align-items: flex-start; }
.point-ico {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--gold-deep);
  background: rgba(233, 180, 76, .12);
  border: 1px solid rgba(233, 180, 76, .3);
}
.point-ico svg { width: 20px; height: 20px; }
.sobre-points strong { font-family: var(--font-display); font-size: .98rem; }
.sobre-points p { font-size: .9rem; color: var(--muted-light); margin-top: 2px; }

.sobre-sign {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  display: flex; flex-direction: column;
}
.sign-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--text-light);
  position: relative; padding-left: 18px;
}
.sign-name::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 26px; border-radius: 2px;
  background: linear-gradient(var(--gold), var(--gold-deep));
}
.sign-role { font-size: .86rem; color: var(--muted-light); margin-top: 6px; padding-left: 18px; }

/* ============================================================
   SERVIÇOS
   ============================================================ */

.servicos { background: var(--paper-2); }

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

.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 180, 76, .4);
  box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

.card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.card-ico {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--gold-deep);
  background: rgba(233, 180, 76, .12);
  border: 1px solid rgba(233, 180, 76, .3);
  transition: transform .45s var(--ease-out), background .3s, color .3s;
}
.card-ico svg { width: 22px; height: 22px; }
.service-card:hover .card-ico { transform: rotate(-6deg) scale(1.08); background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: #171207; }

.card-num {
  font-family: var(--font-display);
  font-size: .85rem; font-weight: 700;
  color: var(--muted-light);
  letter-spacing: .1em;
}

.service-card h3 { margin-top: 22px; font-size: 1.16rem; color: var(--text-light); min-height: 2.4em; }
.service-card p { margin-top: 10px; font-size: .9rem; color: var(--muted-light); flex: 1; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 600; font-size: .88rem;
  color: var(--gold-deep);
  transition: gap .3s, color .3s;
}
.card-link span { transition: transform .3s; }
.service-card:hover .card-link { gap: 10px; }
.service-card:hover .card-link span { transform: translateX(3px); }

/* ============================================================
   RESULTADOS
   ============================================================ */

.resultados {
  background: radial-gradient(120% 110% at 50% 0%, var(--ink-3) 0%, var(--ink-2) 50%, var(--ink) 100%);
  color: var(--text-dark);
}

.resultados .section-sub { color: var(--muted-dark); }
.resultados .eyebrow { color: var(--gold-soft); }

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.counter-block {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .5s var(--ease-out), border-color .5s, background .5s;
}
.counter-block:hover { transform: translateY(-6px); border-color: rgba(233, 180, 76, .35); background: rgba(233, 180, 76, .05); }

.counter-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.counter-label { font-size: .9rem; color: var(--muted-dark); }

.results-chart {
  margin-top: clamp(44px, 6vw, 72px);
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 38px);
}

.chart-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; }
.chart-title { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text-dark); }
.chart-sub { display: block; font-size: .84rem; color: var(--muted-dark); margin-top: 4px; }

.chart-legend {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--muted-dark);
}
.legend-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2.4s infinite; }

.chart-wrap { margin-top: 20px; }
.linechart { width: 100%; height: auto; }

.chart-grid line { stroke: rgba(255, 255, 255, .06); stroke-width: 1; }

.chart-line { stroke-dasharray: 1800; stroke-dashoffset: 1800; }
.in-view .chart-line { animation: drawLine 2.6s var(--ease-out) .3s forwards; }

.chart-area { opacity: 0; transition: opacity 1.4s ease 1s; }
.in-view .chart-area { opacity: 1; }

.chart-dot { fill: var(--gold-soft); }
.dot-end { transform-box: fill-box; transform-origin: center; animation: nodePulse 2.4s infinite .4s; }
.dot-end-pulse {
  fill: none; stroke: var(--gold); stroke-width: 1.5;
  animation: ringPulse 2.4s infinite .4s;
  transform-box: fill-box; transform-origin: center;
}
@keyframes ringPulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(3.2); opacity: 0; }
}

.chart-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px;
  font-size: .8rem; color: var(--muted-dark);
  flex-wrap: wrap; gap: 8px;
}
.chart-foot-highlight strong { color: var(--gold-soft); font-family: var(--font-display); }

/* ============================================================
   FRANQUIAS
   ============================================================ */

.franquias { background: var(--paper); }

.franquias-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.franquias-text h2 { margin-top: 18px; }
.franquias-text > p { margin-top: 20px; color: var(--muted-light); }

.franquias-lista { margin-top: 30px; display: grid; gap: 0; }

.franquias-lista li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
}
.franquias-lista li:first-child { border-top: 1px solid var(--line-light); }
.f-num {
  flex: none;
  font-family: var(--font-display);
  font-weight: 800; font-size: .95rem;
  color: var(--gold-deep);
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(233, 180, 76, .12);
  border: 1px solid rgba(233, 180, 76, .3);
  display: grid; place-items: center;
}
.franquias-lista strong { font-family: var(--font-display); font-size: .96rem; color: var(--text-light); }
.franquias-lista li span:last-child { font-size: .9rem; color: var(--muted-light); }

.franquias-cta { margin-top: 34px; }

/* Map visual */
.map-visual { display: flex; justify-content: center; }

.map-card {
  position: relative;
  width: min(440px, 100%);
  background:
    radial-gradient(120% 90% at 50% 0%, #16203c 0%, var(--ink-2) 55%, var(--ink) 100%);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  padding: 26px 24px 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.map-card::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.map-head {
  position: relative;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: .06em; text-transform: uppercase;
}
.map-head-num { margin-left: auto; font-size: 1.3rem; font-weight: 800; color: var(--gold-soft); letter-spacing: 0; }

.map-body { position: relative; margin-top: 16px; display: flex; justify-content: center; }
.brazil-map { width: 88%; height: auto; }

.map-shape {
  stroke-dasharray: 900; stroke-dashoffset: 900;
  transition: stroke-dashoffset 3s var(--ease-out) .2s;
}
.map-visual.in-view .map-shape { stroke-dashoffset: 0; }

.map-arc {
  fill: none; stroke: rgba(233, 180, 76, .55); stroke-width: 1.4;
  stroke-dasharray: 6 7;
  animation: arcFlow 2.2s linear infinite;
  transform-box: fill-box; transform-origin: center;
}
@keyframes arcFlow { to { stroke-dashoffset: -26; } }

.map-node { fill: var(--gold-soft); transform-box: fill-box; transform-origin: center; }
.node-a { animation: nodePulse 2.6s infinite; }
.node-b { animation: nodePulse 2.6s infinite .35s; }
.node-c { animation: nodePulse 2.6s infinite .7s; }
.node-d { animation: nodePulse 2.6s infinite 1.05s; }
.node-e { animation: nodePulse 2.6s infinite 1.4s; }

.map-pulse {
  fill: none; stroke: var(--gold); stroke-width: 1.5;
  transform-box: fill-box; transform-origin: center;
  animation: ringPulse 2.6s infinite;
}

.map-foot {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  font-size: .8rem; color: var(--muted-dark);
}
.map-foot-arrow { color: var(--green); font-size: .7rem; animation: floatY 2.4s infinite; }

/* ============================================================
   METODOLOGIA
   ============================================================ */

.metodologia { background: var(--paper-2); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  position: relative;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--paper);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
  overflow: hidden;
}
.step::after {
  content: ""; position: absolute; left: 24px; bottom: 0;
  width: 44px; height: 3px; border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.step:hover { transform: translateY(-6px); border-color: rgba(233, 180, 76, .35); box-shadow: var(--shadow-sm); }
.step:hover::after { transform: scaleX(1); }

.step-num {
  font-family: var(--font-display);
  font-size: .82rem; font-weight: 800;
  letter-spacing: .14em;
  color: var(--gold-deep);
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(233, 180, 76, .12);
  border: 1px solid rgba(233, 180, 76, .3);
}
.step h3 { margin-top: 18px; font-size: 1.12rem; }
.step p { margin-top: 10px; font-size: .9rem; color: var(--muted-light); }

.method-cta {
  margin-top: clamp(38px, 5vw, 54px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: linear-gradient(135deg, var(--ink-3), var(--ink-2));
  border-radius: 22px;
  padding: clamp(26px, 4vw, 38px);
  color: var(--text-dark);
  flex-wrap: wrap;
}
.method-cta p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

/* ============================================================
   RECONHECIMENTO
   ============================================================ */

.reconhecimento {
  background: radial-gradient(120% 110% at 50% 100%, var(--ink-3) 0%, var(--ink-2) 50%, var(--ink) 100%);
  color: var(--text-dark);
}
.reconhecimento .section-sub { color: var(--muted-dark); }
.reconhecimento .eyebrow { color: var(--gold-soft); }

.awards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 860px;
  margin-inline: auto;
}

.award-card {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 30px 28px;
  text-align: center;
  transition: transform .5s var(--ease-out), border-color .5s, background .5s;
  overflow: hidden;
}
.award-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.award-card:hover { transform: translateY(-6px); border-color: rgba(233, 180, 76, .4); background: rgba(233, 180, 76, .05); }
.award-card:hover::before { transform: scaleX(1); }

.award-top { display: flex; justify-content: center; align-items: center; gap: 14px; }
.award-badge {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  color: var(--gold);
  background: rgba(233, 180, 76, .1);
  border: 1px solid rgba(233, 180, 76, .3);
}
.award-badge svg { width: 26px; height: 26px; }
.award-times {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.award-card h3 { margin-top: 20px; font-size: 1.25rem; color: var(--text-dark); }
.award-card p { margin-top: 10px; font-size: .92rem; color: var(--muted-dark); }

.awards-note {
  max-width: 640px;
  margin: 30px auto 0;
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: .88rem; color: var(--muted-dark);
}
.awards-note-ico { flex: none; color: var(--gold); width: 20px; height: 20px; }
.awards-note-ico svg { width: 20px; height: 20px; }

/* ============================================================
   CONTATO
   ============================================================ */

.contato { background: var(--paper); }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contato-text h2 { margin-top: 18px; }
.contato-text > p { margin-top: 20px; color: var(--muted-light); max-width: 460px; }

.contato-lista { margin-top: 34px; display: grid; gap: 18px; }
.contato-lista li { display: flex; gap: 14px; align-items: center; }
.c-ico {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--gold-deep);
  background: rgba(233, 180, 76, .12);
  border: 1px solid rgba(233, 180, 76, .3);
}
.c-ico svg { width: 20px; height: 20px; }
.contato-lista strong { font-family: var(--font-display); font-size: .95rem; }
.contato-lista li span:last-child { font-size: .9rem; color: var(--muted-light); }

.lead-card {
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  border-radius: 22px;
  padding: clamp(26px, 4vw, 38px);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.lead-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}
.lead-card h3 { font-size: 1.4rem; color: var(--text-light); }
.lead-sub { margin-top: 8px; font-size: .9rem; color: var(--muted-light); }

#leadForm { margin-top: 26px; display: grid; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }

.form-field label { font-size: .82rem; font-weight: 600; color: var(--text-light); }
.opt { font-weight: 400; color: var(--muted-light); font-size: .8rem; }

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: .95rem;
  color: var(--text-light);
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .3s, box-shadow .3s, background .3s;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(233, 180, 76, .6);
  box-shadow: 0 0 0 3px rgba(233, 180, 76, .15);
  background: var(--paper-2);
}
.form-field textarea { resize: vertical; min-height: 74px; }

.form-field input.invalid, .form-field select.invalid { border-color: #d9534f; }

.btn .ico { width: 19px; height: 19px; }

.form-note { margin-top: 12px; font-size: .78rem; color: var(--muted-light); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--ink);
  color: var(--muted-dark);
  padding: clamp(48px, 6vw, 72px) 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand p { margin-top: 16px; font-size: .9rem; max-width: 300px; }

.footer-col h4 {
  font-size: .85rem; font-weight: 600;
  color: var(--text-dark);
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .9rem; transition: color .3s; }
.footer-col a:hover { color: var(--gold-soft); }

.footer-note { margin-top: 14px; font-size: .82rem; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px;
  font-size: .8rem;
  flex-wrap: wrap; gap: 8px;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */

.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #171207;
  background: linear-gradient(135deg, #34c98a, #1fa56b);
  box-shadow: 0 12px 30px rgba(31, 165, 107, .4);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 40px rgba(31, 165, 107, .5); }
.wa-float::before {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid rgba(52, 201, 138, .5);
  animation: ringPulse 2.6s infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-side { justify-content: flex-start; }
  .hero-card { max-width: 100%; }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-visual { order: -1; }
  .franquias-grid { grid-template-columns: 1fr; }
  .contato-grid { grid-template-columns: 1fr; }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: rgba(7, 11, 20, .97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-dark);
    padding: 10px 5%;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s, transform .35s;
  }
  .main-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 0; padding-block: 8px; }
  .main-nav a { display: block; padding: 14px 4px; font-size: 1.02rem; border-bottom: 1px solid var(--line-dark); }

  .nav-toggle { display: flex; }
  .header-cta { display: none; }
}

@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .steps { grid-template-columns: 1fr; }
  .awards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 16px 20px; }
  .trust-divider { display: none; }
  .hero-ctas .btn { width: 100%; }
  .chart-head { flex-direction: column; }
  .sobre-badge-1 { left: 8px; }
  .sobre-badge-2 { right: 8px; }
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .growth-line, .chart-line, .map-shape { stroke-dashoffset: 0; }
  .chart-area, .growth-area { opacity: 1; }
}
