/* =============================================================
   LUX TALENTS — DESIGN SYSTEM
   Concept: Performance Operacional. Speed · Assertividade · Regional.
   Palette derived from the LUX logo (deep violet + warm gold).
   ============================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Brand — violet scale */
  --violet-950: #1B0836;
  --violet-900: #2A0E4E;
  --violet-800: #3B1470;
  --violet-700: #4B1E90;
  --violet-600: #5C2AA6;
  --violet-500: #7038C4;
  --violet-100: #EDE7F7;
  --violet-050: #F6F3FB;

  /* Brand — gold scale */
  --brand-gold:  #E7B10A;
  --gold-bright: #F6C534;
  --gold-deep:   #C9930A;

  /* Neutrals */
  --ink:      #17101F;
  --ink-soft: #4A4358;
  --line:     #E7E2EF;
  --paper:    #FFFFFF;
  --paper-2:  #FAF8FD;
  --white:    #FFFFFF;

  /* Semantic */
  --bg:        var(--paper);
  --text:      var(--ink);
  --muted:     var(--ink-soft);

  /* Type */
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: .8125rem;
  --fs-h1: clamp(2.35rem, 1.4rem + 4.2vw, 4.4rem);
  --fs-h2: clamp(1.85rem, 1.2rem + 2.6vw, 3rem);
  --fs-h3: 1.22rem;
  --fs-lead: clamp(1.05rem, .98rem + .4vw, 1.28rem);
  --fs-body: 1.02rem;

  /* Spacing / layout */
  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 3rem + 6vw, 8rem);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(27, 8, 54, .06);
  --shadow-md: 0 14px 40px rgba(27, 8, 54, .10);
  --shadow-lg: 0 30px 70px rgba(27, 8, 54, .18);
  --shadow-gold: 0 14px 34px rgba(231, 177, 10, .32);
  --ring: 0 0 0 3px rgba(112, 56, 196, .35);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .5s;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--violet-800); color: #fff; padding: .6rem 1rem; border-radius: 10px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* Selection */
::selection { background: var(--brand-gold); color: var(--violet-950); }

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  --btn-bg: var(--violet-800); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; letter-spacing: -.01em;
  padding: .82rem 1.5rem; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 1.02rem 1.9rem; font-size: 1.05rem; }

.btn--gold { --btn-bg: var(--brand-gold); --btn-fg: var(--violet-950); box-shadow: var(--shadow-gold); }
.btn--gold:hover { --btn-bg: var(--gold-bright); box-shadow: 0 18px 40px rgba(231,177,10,.42); }

.btn--dark { --btn-bg: var(--violet-800); --btn-fg: #fff; box-shadow: var(--shadow-md); }
.btn--dark:hover { --btn-bg: var(--violet-700); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }

.btn--outline {
  --btn-bg: transparent; --btn-fg: var(--violet-800); border-color: var(--line);
}
.btn--outline:hover { border-color: var(--violet-600); color: var(--violet-700); }

/* =============================================================
   HEADER / NAV
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s, padding .3s;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(27,8,54,.05);
}
.header__inner { display: flex; align-items: center; gap: 1.2rem; height: 74px; }

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand__mark { width: 30px; height: 36px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text strong {
  font-family: var(--font-display); font-weight: 700; font-size: 1.42rem; letter-spacing: .06em;
  color: #fff; transition: color .3s;
}
.brand__text small { font-size: .5rem; letter-spacing: .28em; color: rgba(255,255,255,.6); margin-top: 3px; font-weight: 600; transition: color .3s; }

.nav { display: flex; gap: .35rem; margin-left: auto; }
.nav a {
  font-size: .93rem; font-weight: 500; color: rgba(255,255,255,.82);
  padding: .5rem .78rem; border-radius: 10px; position: relative;
  transition: color .2s, background .2s;
}
.nav a:hover { color: #fff; background: rgba(255,255,255,.12); }

/* Header adapts when it turns solid (light bg) on scroll */
.site-header.is-scrolled .brand__text strong { color: var(--violet-800); }
.site-header.is-scrolled .brand__text small { color: var(--muted); }
.site-header.is-scrolled .nav a { color: var(--ink-soft); }
.site-header.is-scrolled .nav a:hover { color: var(--violet-800); background: var(--violet-050); }
.site-header.is-scrolled .nav-toggle span { background: var(--violet-800); }

.header__cta { margin-left: .3rem; }

/* Mobile toggle */
.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.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); }

.mobile-nav {
  position: fixed; inset: 74px 0 auto 0; z-index: 99;
  background: rgba(255,255,255,.98); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
  padding: 1rem var(--gutter) 1.6rem; display: flex; flex-direction: column; gap: .3rem;
  animation: dropIn .32s var(--ease);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a { padding: .85rem .4rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-nav a.btn { border: none; margin-top: .8rem; color: var(--violet-950); }
@keyframes dropIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 120% at 80% -10%, var(--violet-700) 0%, var(--violet-900) 42%, var(--violet-950) 100%);
  color: #fff;
  padding: clamp(3rem, 2rem + 6vw, 6rem) 0 clamp(4rem, 3rem + 5vw, 7rem);
  margin-top: -74px; padding-top: calc(74px + clamp(2.5rem, 6vw, 5rem));
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(130% 90% at 65% 0%, #000 20%, transparent 72%);
  opacity: .5;
}

.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: .02em;
  color: #E6DBFA; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  padding: .5rem .9rem; border-radius: var(--radius-pill); margin-bottom: 1.4rem;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-gold); box-shadow: 0 0 0 4px rgba(231,177,10,.25); }

.hero__title { font-size: var(--fs-h1); margin-bottom: 1.35rem; max-width: 15ch; }
.hero__title .hl { color: var(--brand-gold); position: relative; white-space: nowrap; }

.hero__sub { font-size: var(--fs-lead); color: #DCD2EE; max-width: 46ch; margin-bottom: 2rem; }
.hero__sub strong { color: #fff; font-weight: 600; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }

.hero__trust { font-size: .88rem; color: #B9AAD6; }
.hero__trust strong { color: #EFE8FB; font-weight: 600; }

/* Hero proof note */
.hero__note { font-size: .9rem; color: #B6A7D6; max-width: 46ch; line-height: 1.5; }

/* Hero visual — "job in progress" product card */
.hero__visual { position: relative; }
.job-card {
  position: relative; z-index: 2; background: #fff; color: var(--ink);
  border-radius: 20px; padding: 1.7rem; box-shadow: var(--shadow-lg);
}
.job-card__label { display: block; font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: var(--violet-600); font-weight: 700; margin-bottom: 1.2rem; }

.job-card__role { display: flex; align-items: center; gap: .85rem; padding-bottom: 1.15rem; border-bottom: 1px solid var(--line); margin-bottom: 1.15rem; }
.job-card__icon { width: 46px; height: 46px; border-radius: 13px; background: var(--violet-050); color: var(--violet-600); display: grid; place-items: center; flex: none; }
.job-card__role strong { display: block; font-size: 1.06rem; color: var(--violet-900); }
.job-card__role small { color: var(--muted); font-size: .85rem; }

.job-steps { display: grid; gap: .65rem; margin-bottom: 1.2rem; }
.job-steps li { position: relative; padding-left: 2rem; font-size: .93rem; }
.job-steps li::before { content: ""; position: absolute; left: 0; top: -1px; width: 21px; height: 21px; border-radius: 50%; }
.job-steps li.done { color: var(--muted); }
.job-steps li.done::before { background: var(--violet-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round' d='M5 12l5 5 9-10'/%3E%3C/svg%3E") center/12px no-repeat; }
.job-steps li.active { font-weight: 700; color: var(--violet-800); }
.job-steps li.active::before { background: var(--brand-gold); box-shadow: 0 0 0 4px rgba(231,177,10,.22); animation: livePulse 2s infinite; }

.job-card__foot { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-top: 1.2rem; margin-top: .3rem; border-top: 1px solid var(--line); }
.job-fact b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--violet-900); line-height: 1.05; }
.job-fact span { font-size: .82rem; color: var(--muted); }

/* =============================================================
   LOGOS STRIP
   ============================================================= */
.logos { background: var(--violet-950); padding: 2.4rem 0; }
.logos__label { text-align: center; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: #9C8CC0; margin-bottom: 1.3rem; }
.logos__wall {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(.7rem, 2vw, 1.1rem);
}
.logo-item {
  display: grid; place-items: center; height: 68px; min-width: 156px; padding: .8rem 1.5rem;
  background: #fff; border-radius: 14px; box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.logo-item:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,.24); }
.logo-item img { max-height: 42px; max-width: 148px; object-fit: contain; }
.logo-item b { display: none; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--violet-900); white-space: nowrap; }
.logo-item.noimg b { display: block; }

/* =============================================================
   SECTIONS — shared
   ============================================================= */
.section { padding: var(--section-y) 0; }
.section__head { max-width: 720px; margin: 0 auto clamp(2.5rem, 4vw, 3.6rem); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__tag {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--violet-600);
  background: var(--violet-050); border: 1px solid var(--violet-100);
  padding: .4rem .85rem; border-radius: var(--radius-pill); margin-bottom: 1rem;
}
.section__tag--gold { color: var(--gold-deep); background: #FBF3DC; border-color: #F3E4B6; }
.section__title { font-size: var(--fs-h2); margin-bottom: 1rem; }
.section__lead { font-size: var(--fs-lead); color: var(--muted); }

.grid { display: grid; gap: 1.25rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* =============================================================
   DORES
   ============================================================= */
.section--pain { background: var(--paper-2); }
.pain-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--violet-100); }
.pain-card__icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--violet-050); border-radius: 15px; margin-bottom: 1.1rem;
  color: var(--violet-600); transition: background .3s, color .3s;
}
.pain-card__icon svg { width: 28px; height: 28px; }
.pain-card:hover .pain-card__icon { background: var(--violet-800); color: var(--gold-bright); }
.pain-card h3 { font-size: var(--fs-h3); margin-bottom: .5rem; color: var(--violet-900); }
.pain-card p { color: var(--muted); font-size: .97rem; }

.pain__punch {
  text-align: center; max-width: 720px; margin: clamp(2.4rem, 4vw, 3.4rem) auto 0;
  font-family: var(--font-display); font-size: clamp(1.3rem, 1rem + 1.6vw, 2rem);
  line-height: 1.3; color: var(--violet-900); letter-spacing: -.02em;
}
.pain__punch em { font-style: normal; color: var(--muted); }
.pain__punch strong { color: var(--violet-700); }

/* =============================================================
   SOLUÇÃO
   ============================================================= */
.solution__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.checklist { display: grid; gap: .85rem; margin: 1.7rem 0 2rem; }
.checklist li { position: relative; padding-left: 2.1rem; color: var(--ink); font-size: 1.02rem; }
.checklist li strong { color: var(--violet-800); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--brand-gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat {
  background: linear-gradient(180deg, var(--violet-900), var(--violet-800));
  border-radius: var(--radius); padding: 1.6rem 1.4rem; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stat::after { content: ""; position: absolute; right: -30px; top: -30px; width: 90px; height: 90px; border-radius: 50%; background: rgba(231,177,10,.16); }
.stat:nth-child(2), .stat:nth-child(3) { background: linear-gradient(180deg, var(--violet-800), var(--violet-700)); }
.stat__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem); color: var(--brand-gold); line-height: 1; }
.stat__label { display: block; font-size: .9rem; color: #D8CDEC; margin-top: .55rem; }

/* =============================================================
   PROCESS
   ============================================================= */
.section--process { background: var(--paper-2); }
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.process__step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.process__step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.process__num {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--violet-950); background: var(--brand-gold);
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 1rem;
}
.process__step h3 { font-size: var(--fs-h3); color: var(--violet-900); margin-bottom: .5rem; }
.process__step p { color: var(--muted); font-size: .96rem; }

/* =============================================================
   DIFERENCIAIS
   ============================================================= */
.diff-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.diff-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(var(--brand-gold), var(--violet-600)); opacity: 0; transition: opacity .3s;
}
.diff-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--violet-100); }
.diff-card:hover::before { opacity: 1; }
.diff-card--wide { grid-column: span 1; }
.diff-card h3 { font-size: var(--fs-h3); color: var(--violet-900); margin-bottom: .55rem; }
.diff-card p { color: var(--muted); font-size: .98rem; }
@media (min-width: 861px) {
  .section--diff .grid--3 { grid-template-columns: repeat(6, 1fr); }
  .diff-card { grid-column: span 2; }
  .diff-card--wide { grid-column: span 3; }
}

/* =============================================================
   SEGMENTOS
   ============================================================= */
.section--segments { background: var(--violet-950); color: #fff; }
.section--segments .section__title { color: #fff; }
.section--segments .section__lead { color: #C6B9E2; }
.section--segments .section__tag { background: rgba(255,255,255,.08); color: #E3D6FB; border-color: rgba(255,255,255,.16); }
.seg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.seg-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 1.4rem 1.5rem;
  transition: border-color .25s, transform .25s, background .25s;
}
.seg-card:hover { border-color: var(--brand-gold); transform: translateY(-3px); background: rgba(255,255,255,.07); }
.seg-card h3 { font-size: 1.12rem; color: #fff; margin-bottom: .5rem; }
.seg-card p { font-size: .9rem; color: #C2B4E0; line-height: 1.5; }
.seg-note { text-align: center; margin-top: 2.2rem; color: #C6B9E2; font-size: 1rem; }
.seg-note strong { color: var(--brand-gold); }
@media (max-width: 860px) { .seg-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .seg-grid { grid-template-columns: 1fr; } }

/* =============================================================
   CLIENTES / DEPOIMENTOS
   ============================================================= */
.client-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.client-chip {
  display: flex; flex-direction: column; gap: .25rem; align-items: center; justify-content: center;
  text-align: center; padding: 1.6rem 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper-2); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.client-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--violet-100); }
.client-chip span { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--violet-900); }
.client-chip small { font-size: .82rem; color: var(--muted); }

.testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.testimonial {
  background: linear-gradient(180deg, var(--violet-050), #fff);
  border: 1px solid var(--violet-100); border-radius: var(--radius-lg); padding: 1.9rem;
}
.testimonial blockquote { font-size: 1.08rem; color: var(--ink); line-height: 1.55; position: relative; }
.testimonial blockquote::before { content: "\201C"; font-family: var(--font-display); font-size: 2.6rem; color: var(--brand-gold); line-height: 0; vertical-align: -.35em; margin-right: .1em; }
.testimonial figcaption { margin-top: 1.2rem; display: flex; flex-direction: column; }
.testimonial figcaption strong { color: var(--violet-800); }
.testimonial figcaption span { font-size: .88rem; color: var(--muted); }

/* =============================================================
   PRICING
   ============================================================= */
.section--pricing { background: var(--paper-2); }
.pricing { align-items: stretch; }
.price-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.price-card--feature {
  border: 1.5px solid var(--violet-600); box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #fff, var(--violet-050));
}
.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand-gold); color: var(--violet-950);
  font-family: var(--font-display); font-weight: 600; font-size: .78rem; letter-spacing: .04em;
  padding: .35rem .9rem; border-radius: var(--radius-pill); box-shadow: var(--shadow-gold);
}
.price-card__name { font-family: var(--font-display); font-weight: 600; color: var(--muted); font-size: 1rem; }
.price-card__value { font-family: var(--font-display); font-weight: 700; font-size: 3rem; color: var(--violet-900); line-height: 1; margin: .6rem 0 .3rem; }
.price-card__value small { font-size: 1.1rem; vertical-align: super; margin-right: .1em; color: var(--muted); }
.price-card__value span { font-size: .95rem; font-weight: 500; color: var(--muted); }
.price-card__desc { color: var(--muted); font-size: .95rem; min-height: 2.8em; }
.price-card ul { display: grid; gap: .6rem; margin: 1.2rem 0 1.6rem; }
.price-card ul li { position: relative; padding-left: 1.6rem; font-size: .95rem; color: var(--ink); }
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--violet-100);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/12px no-repeat;
  background: var(--violet-600);
}
.price-card .btn { margin-top: auto; width: 100%; }
.pricing__note { text-align: center; margin-top: 1.8rem; color: var(--muted); }
.pricing__note strong { color: var(--violet-800); }

/* =============================================================
   FAQ
   ============================================================= */
.faq__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.faq { display: grid; gap: .8rem; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq__item[open] { border-color: var(--violet-200, var(--violet-100)); box-shadow: var(--shadow-sm); }
.faq__item summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; padding-right: 3rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--violet-900);
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--violet-600); transition: transform .3s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: .98rem; }

/* =============================================================
   CTA FINAL
   ============================================================= */
.cta-final { position: relative; overflow: hidden; color: #fff; padding: clamp(4rem, 3rem + 5vw, 7rem) 0; background: var(--violet-950); }
.cta-final__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 100% at 80% 0%, rgba(231,177,10,.28), transparent 60%),
    radial-gradient(70% 100% at 10% 100%, var(--violet-700), transparent 55%);
}
.cta-final__inner { position: relative; text-align: center; max-width: 780px; }
.cta-final h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.cta-final h2 .hl { color: var(--brand-gold); }
.cta-final p { font-size: var(--fs-lead); color: #D6CAEC; margin-bottom: 2rem; }
.cta-final__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: #120726; color: #C9BCE0; padding-top: clamp(3rem, 4vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand--footer .brand__text strong { color: #fff; }
.brand--footer .brand__text small { color: #9C8CC0; }
.footer__slogan { font-family: var(--font-display); color: var(--brand-gold); font-size: 1.05rem; margin: 1.1rem 0 .5rem; }
.footer__desc { font-size: .92rem; color: #9A8CB8; max-width: 34ch; }
.footer__nav h4, .footer__contact h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__nav { display: flex; flex-direction: column; gap: .55rem; }
.footer__nav a { font-size: .95rem; color: #C1B3DC; transition: color .2s; }
.footer__nav a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: .6rem; }
.footer__contact a { font-size: .95rem; color: #C1B3DC; transition: color .2s; }
.footer__contact a:hover { color: var(--brand-gold); }
.footer__cta { margin-top: .6rem; color: var(--violet-950); align-self: start; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding: 1.5rem 0 2rem; font-size: .82rem; color: #8578A5; }

/* =============================================================
   WHATSAPP FLOAT
   ============================================================= */
.wa-float {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .3s var(--ease), box-shadow .3s;
  animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* =============================================================
   REVEAL ANIMATION
   ============================================================= */
/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: linear-gradient(90deg, var(--brand-gold), var(--gold-bright)); box-shadow: 0 0 10px rgba(231,177,10,.55); transition: width .08s linear; }

/* Reveal system — diverse directions */
.js .reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease); will-change: opacity, transform; }
.js .reveal.rev-left { transform: translateX(-44px); }
.js .reveal.rev-right { transform: translateX(44px); }
.js .reveal.rev-scale { transform: scale(.9); }
.js .reveal.rev-blur { filter: blur(9px); }
.js .reveal.is-visible, .reveal.is-visible { opacity: 1; transform: none; filter: none; }
/* On stacked/mobile layouts, sideways reveals become vertical to avoid horizontal overflow */
@media (max-width: 900px) {
  .js .reveal.rev-left:not(.is-visible), .js .reveal.rev-right:not(.is-visible) { transform: translateY(30px); }
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .wa-float { animation: none; }
  .scroll-progress { display: none; }
  * { animation-duration: .001ms !important; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; }
  .solution__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .grid--3 { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .client-wall { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .float-chip { display: none; }
  .grid--4 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .client-wall { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .btn--lg { width: 100%; }
  .hero__cta .btn { width: 100%; }
}

/* =============================================================
   INTERNAL PAGES (Sobre, Serviços, Segmentos, Investimento, Contato…)
   ============================================================= */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(120% 130% at 82% -20%, var(--violet-700) 0%, var(--violet-900) 46%, var(--violet-950) 100%);
  margin-top: -74px; padding: calc(74px + clamp(3rem, 7vw, 5.5rem)) 0 clamp(3rem, 6vw, 5rem);
}
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__inner { position: relative; max-width: 800px; }
.page-hero .eyebrow { margin-bottom: 1.2rem; }
.page-hero h1 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.5rem); margin-bottom: 1.15rem; letter-spacing: -.02em; }
.page-hero h1 .hl { color: var(--brand-gold); }
.page-hero__lead { font-size: var(--fs-lead); color: #D8CDEC; max-width: 62ch; }
.page-hero__cta { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.9rem; }

.breadcrumb { position: relative; font-size: .84rem; color: #B6A7D6; margin-bottom: 1.3rem; }
.breadcrumb a { color: #D8CDEC; } .breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .6; margin: 0 .35rem; }

/* Prose / generic content */
.prose p { color: var(--muted); margin-bottom: 1.05rem; font-size: 1.05rem; max-width: 66ch; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--violet-800); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--narrow { grid-template-columns: 1.1fr .9fr; }
@media (max-width: 900px) { .split, .split--narrow { grid-template-columns: 1fr; } }

/* Fact tiles (about / service) */
.facttiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.facttile { background: linear-gradient(180deg, var(--violet-900), var(--violet-800)); color: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-md); }
.facttile b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--brand-gold); line-height: 1; }
.facttile span { font-size: .9rem; color: #D8CDEC; margin-top: .5rem; display: block; }

/* Do / Don't */
.dodont { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 760px) { .dodont { grid-template-columns: 1fr; } }
.dodont__col { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; background: #fff; box-shadow: var(--shadow-sm); }
.dodont__col h3 { font-size: 1.18rem; margin-bottom: 1.1rem; display: flex; align-items: center; gap: .5rem; }
.dodont__col.is-do { border-top: 3px solid #16A34A; }
.dodont__col.is-dont { border-top: 3px solid #C2410C; }
.dodont__col.is-do h3 { color: #157F3B; }
.dodont__col.is-dont h3 { color: #B4342B; }
.dodont__col ul { display: grid; gap: .7rem; }
.dodont__col li { padding-left: 1.8rem; position: relative; color: var(--ink); font-size: .98rem; }
.dodont__col.is-do li::before { content: "✓"; position: absolute; left: 0; color: #16A34A; font-weight: 800; }
.dodont__col.is-dont li::before { content: "✕"; position: absolute; left: 0; color: #C2410C; font-weight: 800; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-methods { display: grid; gap: 1rem; }
.contact-method { display: flex; gap: 1rem; align-items: center; padding: 1.25rem 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: border-color .2s, transform .2s, box-shadow .2s; }
.contact-method:hover { border-color: var(--violet-100); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.contact-method__icon { width: 48px; height: 48px; border-radius: 13px; background: var(--violet-050); color: var(--violet-600); display: grid; place-items: center; flex: none; }
.contact-method strong { display: block; color: var(--violet-900); font-family: var(--font-display); }
.contact-method span { font-size: .9rem; color: var(--muted); }

/* Form */
.form { display: grid; gap: 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.3rem); box-shadow: var(--shadow-md); }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--violet-900); }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: .98rem; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper-2); color: var(--ink); transition: border-color .2s, box-shadow .2s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet-500); box-shadow: 0 0 0 3px rgba(112,56,196,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: .82rem; color: var(--muted); }

/* Sector detail card (segmentos page) */
.sector { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.sector:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--violet-100); }
.sector__head { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.sector__num { font-family: var(--font-display); font-weight: 800; font-size: .95rem; color: var(--violet-950); background: var(--brand-gold); width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; flex: none; }
.sector h3 { font-size: 1.12rem; color: var(--violet-900); }
.sector__roles { display: flex; flex-wrap: wrap; gap: .45rem; }
.sector__roles span { font-size: .84rem; color: var(--violet-800); background: var(--violet-050); border: 1px solid var(--violet-100); padding: .3rem .7rem; border-radius: var(--radius-pill); }

.page-cta { text-align: center; max-width: 720px; margin-inline: auto; }
