/* ============================================================
   FPM ASSESSORIA DIGITAL — DESIGN SYSTEM
   Dark premium. Bebas Neue + DM Sans. Electric blue.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ─── TOKENS ─── */
:root {
  --bg:       #060B18;
  --bg-2:     #0C1424;
  --bg-3:     #101828;
  --card:     rgba(12, 20, 36, 0.85);
  --border:   rgba(79, 159, 232, 0.14);
  --primary:  #1B3A5C;
  --mid:      #2E6DA4;
  --accent:   #4F9FE8;
  --accent-2: rgba(79, 159, 232, 0.10);
  --light:    #F0F2F5;
  --muted:    #8A9BB0;
  --white:    #FFFFFF;

  --ff-display: 'Bebas Neue', cursive;
  --ff-body:    'DM Sans', sans-serif;

  --nav-h:    80px;
  --radius:   12px;
  --radius-lg:20px;
  --max-w:    1200px;

  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --glow:  0 0 60px rgba(79, 159, 232, 0.22);
  --glow-sm: 0 0 24px rgba(79, 159, 232, 0.18);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--light);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-body); }
select, input, textarea { font-family: var(--ff-body); }

/* ─── GRAIN OVERLAY ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ─── UTILITIES ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section--dark { background: var(--bg); }
.section--mid  { background: var(--bg-2); }
.section--alt  { background: var(--bg-3); }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.label::before { content: '— '; }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #06111e;
  box-shadow: 0 4px 24px rgba(79, 159, 232, 0.38);
}
.btn--primary:hover {
  background: #6ab5f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(79, 159, 232, 0.48);
}
.btn--outline {
  border: 1.5px solid rgba(79,159,232,0.5);
  color: var(--accent);
}
.btn--outline:hover {
  border-color: var(--accent);
  background: var(--accent-2);
  transform: translateY(-2px);
}
.btn--white {
  background: var(--white);
  color: var(--bg);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--light);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(6, 11, 24, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 42px; width: auto; mix-blend-mode: screen; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { margin-left: 12px; }

/* Mobile */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--ff-display);
  font-size: 44px;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--accent); }
.nav__mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--muted);
  transition: all 0.2s;
}
.nav__mobile-close:hover { color: var(--white); border-color: var(--white); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 15% 40%, rgba(27,58,92,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 55%, rgba(79,159,232,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 50% 110%, rgba(46,109,164,0.25) 0%, transparent 50%),
    var(--bg);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,159,232,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,159,232,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 5%, rgba(0,0,0,0.6) 25%, rgba(0,0,0,0.6) 65%, transparent 95%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 60px 0;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(79,159,232,0.08);
  border: 1px solid rgba(79,159,232,0.2);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.08em;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(0.75); }
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7.5vw, 104px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.75;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.hero__badge svg { color: var(--accent); width:16px;height:16px; }

/* ─── ABOUT SNAPSHOT ─── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__text {}
.about__text p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about__text p:last-child { margin-bottom: 0; }
.about__text strong { color: var(--white); font-weight: 600; }
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover { border-color: rgba(79,159,232,0.35); transform: translateY(-4px); box-shadow: var(--glow-sm); }
.stat-card:hover::before { opacity: 1; }
.stat-card__number {
  font-family: var(--ff-display);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.stat-card__label { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* ─── SERVICES VITRINE ─── */
.services-vitrine__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}
.services-vitrine__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79,159,232,0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  border-color: rgba(79,159,232,0.45);
  transform: translateY(-6px);
  box-shadow: var(--glow);
}
.service-card:hover::before { opacity: 1; }
.service-card__num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--ff-display);
  font-size: 56px;
  color: rgba(79,159,232,0.05);
  line-height: 1;
  pointer-events: none;
}
.service-card__icon {
  width: 50px; height: 50px;
  background: var(--accent-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card:hover .service-card__icon { background: rgba(79,159,232,0.18); border-color: var(--accent); }
.service-card__name {
  font-family: var(--ff-display);
  font-size: 21px;
  letter-spacing: 0.03em;
  color: var(--white);
}
.service-card__desc { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}
.service-card__link svg { width: 14px; height: 14px; }
.service-card__link:hover { gap: 12px; }

/* ─── RESULTS ─── */
.results {
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}
.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(46,109,164,0.12) 0%, transparent 60%);
}
.results__header { text-align: center; margin-bottom: 64px; position: relative; }
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.results__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.result-item {
  padding: 48px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.result-item:last-child { border-right: none; }
.result-item__number {
  font-family: var(--ff-display);
  font-size: clamp(34px, 3.5vw, 52px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.result-item__label { font-size: 13px; color: var(--muted); line-height: 1.5; max-width: 120px; margin: 0 auto; }

/* ─── TESTIMONIALS ─── */
.testimonials__header { text-align: center; margin-bottom: 56px; }
.testimonials-swiper { overflow: hidden; }
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(79,159,232,0.3); box-shadow: var(--glow-sm); }
.testimonial-card__quote-mark {
  font-family: var(--ff-display);
  font-size: 56px;
  color: var(--accent);
  line-height: 0.7;
}
.testimonial-card__text { font-size: 15px; color: var(--light); line-height: 1.72; flex: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--mid));
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; color: var(--white); font-size: 15px; }
.testimonial-card__role { font-size: 12px; color: var(--accent); font-weight: 500; }
.swiper-pagination { margin-top: 36px; text-align: center; position: relative !important; bottom: auto !important; }
.swiper-pagination-bullet { width: 6px; height: 6px; background: var(--muted); opacity: 1; border-radius: 50%; transition: all 0.3s; }
.swiper-pagination-bullet-active { background: var(--accent); width: 22px; border-radius: 4px; }

/* ─── DIFERENCIAIS ─── */
.diferenciais__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diferenciais__text { }
.diferenciais__list { display: flex; flex-direction: column; gap: 16px; }
.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.diferencial-item:hover { border-color: rgba(79,159,232,0.35); transform: translateX(6px); box-shadow: var(--glow-sm); }
.diferencial-item__icon {
  width: 42px; height: 42px;
  background: var(--accent-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.diferencial-item__icon svg { width: 20px; height: 20px; }
.diferencial-item__title { font-weight: 700; color: var(--white); font-size: 15px; margin-bottom: 4px; }
.diferencial-item__desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ─── HOW IT WORKS ─── */
.how-works__header { text-align: center; margin-bottom: 70px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(79,159,232,0.1) 100%);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(79,159,232,0.2);
}
.step__title { font-weight: 700; color: var(--white); font-size: 15px; }
.step__desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── FAQ ─── */
.faq__header { text-align: center; margin-bottom: 56px; }
.faq__list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(79,159,232,0.4); }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  transition: color 0.2s;
}
.faq-item__trigger:hover { color: var(--accent); }
.faq-item__icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__body { display: none; padding: 0 26px 22px; font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-item__body { display: block; }

/* ─── CTA FINAL ─── */
.cta-final {
  background: linear-gradient(140deg, #0d2240 0%, #1B3A5C 50%, #2E6DA4 100%);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(79,159,232,0.12), transparent);
}
.cta-final::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(79,159,232,0.15);
}
.cta-final__inner { text-align: center; position: relative; z-index: 1; }
.cta-final__title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.cta-final__sub { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 44px; }
.cta-final__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer {
  background: #030710;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 52px;
}
.footer__logo { height: 38px; margin-bottom: 20px; display: block; }
.footer__logo img { height: 38px; mix-blend-mode: screen; }
.footer__tagline { font-size: 14px; color: var(--muted); max-width: 270px; line-height: 1.7; }
.footer__col-title { font-weight: 700; color: var(--white); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 13px; color: var(--muted); }
.footer__accent { color: var(--accent); }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background:
    radial-gradient(ellipse 70% 80% at 80% 30%, rgba(46,109,164,0.14) 0%, transparent 55%),
    var(--bg);
  text-align: center;
}
.page-hero .label { margin-bottom: 16px; }
.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(48px, 6vw, 80px);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 20px;
}
.page-hero__sub { font-size: 18px; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }

/* ─── SERVICE PAGE HERO ─── */
.service-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.service-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 10% 50%, rgba(27,58,92,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 90% 60%, rgba(79,159,232,0.07) 0%, transparent 50%),
    var(--bg);
}
.service-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(79,159,232,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(79,159,232,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent);
}
.service-hero__content { position: relative; z-index: 2; padding: 60px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.breadcrumb a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--border); font-size: 13px; }
.breadcrumb__current { font-size: 13px; color: var(--accent); }
.service-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.service-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.93;
  color: var(--white);
  margin-bottom: 22px;
}
.service-hero__title em { font-style: normal; color: var(--accent); }
.service-hero__tagline { font-size: 20px; color: var(--muted); max-width: 520px; line-height: 1.6; margin-bottom: 36px; font-weight: 400; }

/* ─── FEATURES GRID ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all 0.3s var(--ease);
}
.feature-card:hover { border-color: rgba(79,159,232,0.35); transform: translateY(-4px); box-shadow: var(--glow-sm); }
.feature-card__icon { width: 40px; height: 40px; background: var(--accent-2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 16px; }
.feature-card__icon svg { width: 20px; height: 20px; }
.feature-card__title { font-weight: 700; color: var(--white); margin-bottom: 8px; font-size: 15px; }
.feature-card__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── ABOUT PAGE ─── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.team-card:hover { border-color: rgba(79,159,232,0.35); transform: translateY(-6px); box-shadow: var(--glow-sm); }
.team-card__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--mid) 100%);
  border: 2px solid rgba(79,159,232,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 30px;
  color: var(--white);
  margin: 0 auto 20px;
  overflow: hidden;
}
.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card__name { font-family: var(--ff-display); font-size: 24px; color: var(--white); margin-bottom: 4px; letter-spacing: 0.04em; }
.team-card__role { font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.team-card__bio { font-size: 14px; color: var(--muted); line-height: 1.65; margin-top: 16px; }

/* ─── CONTACT PAGE ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  transition: all 0.3s;
}
.contact-item:hover { border-color: rgba(79,159,232,0.3); }
.contact-item__icon { width: 42px; height: 42px; background: var(--accent-2); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item__label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; font-weight: 600; }
.contact-item__value { font-weight: 600; color: var(--white); font-size: 15px; }
.contact-form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.1em; }
.form-input { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; padding: 13px 16px; color: var(--white); font-size: 15px; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: rgba(138,155,176,0.6); }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { cursor: pointer; }
option { background: var(--bg-2); }

/* ─── AOS ─── */
[data-aos] { opacity: 0; transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
[data-aos="fade-up"] { transform: translateY(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"] { transform: translateX(28px); }
[data-aos="zoom-in"] { transform: scale(0.93); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-vitrine__grid { grid-template-columns: repeat(2, 1fr); }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .result-item { border-right: none; border-bottom: 1px solid var(--border); }
  .result-item:nth-child(2n) { }
  .result-item:last-child { border-bottom: none; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .diferenciais__inner { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .steps::after { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 72px 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .services-vitrine__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .services-vitrine__header { flex-direction: column; align-items: flex-start; }
  .cta-final__actions { flex-direction: column; align-items: center; }
  .page-hero { text-align: center; }

  /* Fix stat card numbers overflowing on mobile */
  .stat-card__number {
    font-size: 28px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .stat-card {
    padding: 20px 16px;
    overflow: hidden;
  }
  .about__stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  /* Fix results grid on mobile */
  .results__grid {
    grid-template-columns: 1fr 1fr;
  }
  .result-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 32px 16px;
  }
  .result-item:last-child { border-bottom: none; }
  .result-item__number { font-size: 28px; }

  /* Service page hero on mobile */
  .service-hero__title { font-size: clamp(36px, 10vw, 56px); }
  .service-hero__tagline { font-size: 15px; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr; }

  /* Servicos page inline grid fix */
  .servicos-detail-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* ============================================================
   NEON UPGRADE + CHARTS
   ============================================================ */

/* ─── NEON TOKENS ─── */
:root {
  --neon:        #4F9FE8;
  --neon-cyan:   #00d4ff;
  --neon-glow:   0 0 8px rgba(79,159,232,1), 0 0 30px rgba(79,159,232,0.5), 0 0 70px rgba(79,159,232,0.2);
  --neon-glow-c: 0 0 8px rgba(0,212,255,1),  0 0 30px rgba(0,212,255,0.4), 0 0 70px rgba(0,212,255,0.15);
  --neon-border: rgba(79,159,232,0.8);
}

/* ─── NEON EM TAGS ─── */
.hero__title em,
.section-title em,
.service-hero__title em,
.cta-final__title {
  color: var(--neon-cyan);
  text-shadow: 0 0 14px rgba(0,212,255,0.85), 0 0 40px rgba(0,212,255,0.4);
}

/* ─── NEON ACCENT ─── */
.accent-neon { color: var(--neon-cyan); text-shadow: var(--neon-glow-c); }

/* ─── NAV GLOW ─── */
.nav.scrolled {
  border-bottom-color: rgba(79,159,232,0.3);
  box-shadow: 0 1px 40px rgba(79,159,232,0.08);
}
.nav__links a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0,212,255,0.7);
}

/* ─── BTN PRIMARY NEON ─── */
.btn--primary {
  background: transparent;
  border: 1.5px solid var(--neon);
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0,212,255,0.6);
  box-shadow: 0 0 14px rgba(79,159,232,0.35), inset 0 0 14px rgba(79,159,232,0.08);
  transition: all 0.3s var(--ease);
}
.btn--primary:hover {
  background: rgba(79,159,232,0.12);
  border-color: var(--neon-cyan);
  box-shadow: var(--neon-glow), inset 0 0 20px rgba(79,159,232,0.12);
  color: #fff;
  text-shadow: 0 0 12px rgba(0,212,255,1);
  transform: translateY(-2px);
}

/* ─── BTN OUTLINE NEON ─── */
.btn--outline {
  border-color: rgba(79,159,232,0.5);
  color: var(--neon-cyan);
}
.btn--outline:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 14px rgba(0,212,255,0.3);
  color: #fff;
  background: rgba(0,212,255,0.06);
}

/* ─── CARD NEON BORDERS ─── */
.service-card,
.stat-card,
.feature-card,
.diferencial-item,
.testimonial-card,
.team-card,
.blog-card {
  border-color: rgba(79,159,232,0.18);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.service-card:hover,
.stat-card:hover,
.feature-card:hover,
.diferencial-item:hover,
.team-card:hover,
.blog-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 24px rgba(0,212,255,0.2), 0 0 60px rgba(79,159,232,0.1);
}

/* ─── STAT CARD NUMBER NEON ─── */
.stat-card__number {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0,212,255,0.6);
}

/* ─── RESULT NUMBERS NEON ─── */
.result-item__number {
  color: var(--neon-cyan);
  text-shadow: 0 0 24px rgba(0,212,255,0.7);
}

/* ─── LABEL NEON ─── */
.label {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0,212,255,0.5);
}

/* ─── HERO EYEBROW NEON ─── */
.hero__eyebrow {
  border-color: rgba(0,212,255,0.3);
  box-shadow: 0 0 20px rgba(0,212,255,0.12);
}
.hero__eyebrow-dot { background: var(--neon-cyan); box-shadow: 0 0 8px var(--neon-cyan); }

/* ─── ICON NEON ─── */
.service-card__icon,
.feature-card__icon,
.diferencial-item__icon,
.contact-item__icon {
  box-shadow: 0 0 16px rgba(79,159,232,0.25);
}

/* ─── HERO BG NEON ─── */
.hero__bg {
  background:
    radial-gradient(ellipse 80% 60% at 15% 40%, rgba(27,58,92,0.7) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 85% 50%, rgba(0,212,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 50% 110%, rgba(46,109,164,0.3) 0%, transparent 50%),
    var(--bg);
}

/* ─── SECTION DIVIDER NEON ─── */
.section--mid { position: relative; }
.section--alt  { position: relative; }

/* ─── RESULTS SECTION — CHARTS ─── */
.results-charts {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.results-charts::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,212,255,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.results-charts__header {
  text-align: center;
  margin-bottom: 72px;
}

/* Grid layout: stats top, charts bottom */
.charts-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid rgba(79,159,232,0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 64px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,212,255,0.06);
}
.chart-stat {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid rgba(79,159,232,0.15);
  position: relative;
  transition: background 0.3s;
}
.chart-stat:last-child { border-right: none; }
.chart-stat:hover { background: rgba(79,159,232,0.04); }
.chart-stat__num {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0,212,255,0.7);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.chart-stat__label { font-size: 12px; color: var(--muted); line-height: 1.5; max-width: 110px; margin: 0 auto; }

/* Charts row */
.charts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Bar chart */
.chart-card {
  background: var(--card);
  border: 1px solid rgba(79,159,232,0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: visible;
}
.chart-card:hover { border-color: rgba(0,212,255,0.4); box-shadow: 0 0 30px rgba(0,212,255,0.1); }
.chart-card__title {
  font-family: var(--ff-display);
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.chart-card__title span { color: var(--neon-cyan); }

/* Bar Chart */
.bar-chart { display: flex; align-items: flex-end; gap: 12px; height: 160px; padding-top: 16px; }
.bar-wrap { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--accent), var(--neon-cyan));
  box-shadow: 0 0 14px rgba(0,212,255,0.4);
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
}
.bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: bar-shimmer 2s ease infinite 1.5s;
}
@keyframes bar-shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}
.bar.animated { transform: scaleY(1); }
.bar-label { font-size: 11px; color: var(--muted); white-space: nowrap; }
.bar-value { font-size: 11px; font-weight: 700; color: var(--neon-cyan); opacity: 0; transition: opacity 0.5s 1s; }
.bar.animated ~ .bar-value,
.bar-wrap .bar.animated + * + .bar-value { opacity: 1; }
.bar-wrap .bar-value { opacity: 0; transition: opacity 0.4s 1.3s; }
.bar-wrap:has(.bar.animated) .bar-value { opacity: 1; }

/* Line/Area Chart */
.area-chart-wrap { position: relative; height: 160px; }
.area-chart-svg { width: 100%; height: 100%; overflow: visible; }
.chart-line {
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2s cubic-bezier(0.4,0,0.2,1);
}
.chart-line.animated { stroke-dashoffset: 0; }
.chart-area {
  opacity: 0;
  transition: opacity 1s 0.5s;
}
.chart-area.animated { opacity: 0.35; }
.chart-dot {
  fill: var(--neon-cyan);
  filter: drop-shadow(0 0 4px rgba(0,212,255,0.9));
  opacity: 0;
  transition: opacity 0.3s;
}
.chart-dot.animated { opacity: 1; }
.x-label { font-size: 10px; fill: var(--muted); text-anchor: middle; }
.y-label { font-size: 10px; fill: rgba(138,155,176,0.5); text-anchor: end; }
.grid-line { stroke: rgba(79,159,232,0.08); stroke-width: 1; }

/* Conversion donut */
.donut-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  height: 160px;
}
.donut-svg { width: 140px; height: 140px; }
.donut-bg   { fill: none; stroke: rgba(79,159,232,0.1); stroke-width: 14; }
.donut-fill {
  fill: none;
  stroke: url(#donutGrad);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  transition: stroke-dashoffset 2s cubic-bezier(0.4,0,0.2,1);
  filter: drop-shadow(0 0 3px rgba(0,212,255,0.55));
}
.donut-fill.animated { stroke-dashoffset: 51; } /* 85.57% of 360 = 308.5, offset = 360-308.5 = 51.5 */
.donut-text { font-family: 'Bebas Neue', cursive; font-size: 32px; fill: var(--neon-cyan); text-anchor: middle; dominant-baseline: central; }
.donut-sub  { font-size: 10px; fill: var(--muted); text-anchor: middle; }

@media (max-width: 1024px) {
  .charts-stats { grid-template-columns: repeat(2,1fr); }
  .chart-stat { border-bottom: 1px solid rgba(79,159,232,0.15); }
  .charts-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .charts-stats { grid-template-columns: 1fr 1fr; }
  .bar-chart { height: 120px; gap: 8px; }
}

/* ============================================================
   GRID HELPERS — responsive (substituem inline styles)
   ============================================================ */

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

.grid-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1024px) {
  .grid-col-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-proof  { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .grid-col-3 { grid-template-columns: 1fr; gap: 16px; }
  .grid-proof  { gap: 28px; }

  /* Hero compacto */
  .hero__content { padding: 36px 0; }
  .hero__actions  { margin-bottom: 40px; }
  .hero__badges   { gap: 14px; }

  /* Seção Vitu: video em cima, card em baixo */
  .grid-proof > div:first-child { order: 0; }
  .grid-proof > div:last-child  { order: 1; }

  /* Stat cards dentro de proof sections */
  .grid-proof .about__stats,
  .grid-proof > div > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr 1fr;
  }

  /* Seção resultados/charts: stat numbers menores */
  .chart-stat__num { font-size: 28px; }
  .chart-stat { padding: 24px 16px; }

  /* Blog CTA padding */
  .blog-cta-box { padding: 32px 20px !important; }

  /* Ajustes gerais de seção */
  .section { padding: 60px 0; }

  /* Inline stat grids nas páginas de serviço — ficam 2 col mesmo */
}

