/* ==========================================================================
   Aura Services — landing page
   Editorial · warm paper + ink · amber "aura" accent
   Fonts: Newsreader (serif, headlines/accents) + Instrument Sans (body/UI)
   ========================================================================== */

:root {
  --aura: #E0973F;
  --ink: #1B1712;
  --paper: #F4EFE7;
  --paper-2: #F0E9DC;
  --dark: #16130D;
  --dark-2: #0F0D08;
  --cream: #F1EADD;
  --green: #3aa76d;
  --err: #c0392b;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Instrument Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #C97B4A; }
input, select, button, textarea { font-family: inherit; }
::selection { background: rgba(224, 151, 63, .28); }
:focus-visible { outline: 2px solid var(--aura); outline-offset: 3px; border-radius: 4px; }

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

.serif { font-family: 'Newsreader', Georgia, serif; }
.italic-accent { font-style: italic; color: var(--aura); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- keyframes ---------------------------------------------------------- */
@keyframes auraDrift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes auraPop { 0% { opacity: 0; transform: translateY(14px) scale(.96); } 100% { opacity: 1; transform: none; } }
@keyframes auraGlow { 0%,100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.35); } }
@keyframes auraTravel { 0% { left: -14%; } 100% { left: 114%; } }
@keyframes auraSync { 0%,45% { opacity: 1; } 55%,100% { opacity: 0; } }
@keyframes auraSync2 { 0%,45% { opacity: 0; } 55%,100% { opacity: 1; } }

/* ==========================================================================
   Layout primitives
   ========================================================================== */
.section { padding: clamp(64px, 10vh, 116px) clamp(18px, 5vw, 64px); }
.wrap { max-width: 1180px; margin: 0 auto; }
.wrap-1120 { max-width: 1120px; margin: 0 auto; }
.wrap-1080 { max-width: 1080px; margin: 0 auto; }

.dark { background: var(--dark); color: var(--cream); }
.paper-2 { background: var(--paper-2); border-top: 1px solid rgba(27, 23, 18, .07); }

.eyebrow {
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--aura); font-weight: 600; margin: 0 0 18px;
}
.eyebrow-quiet { color: rgba(241, 234, 221, .5); }

h1, h2, h3 { font-weight: 400; margin: 0; }
.h2 {
  font-family: 'Newsreader', Georgia, serif; font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.08; letter-spacing: -.02em;
}

/* buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 15px; font-weight: 600; padding: 15px 26px; border-radius: 9px;
  min-height: 52px; border: 0; cursor: pointer; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
}
.btn-primary {
  background: var(--aura); color: #17130B;
  box-shadow: 0 14px 40px -12px var(--aura);
}
.btn-primary:hover { color: #17130B; transform: translateY(-2px); box-shadow: 0 20px 50px -12px var(--aura); }
.btn-ghost { color: var(--cream); border: 1px solid rgba(241, 234, 221, .24); }
.btn-ghost:hover { border-color: var(--aura); color: var(--aura); }
.btn-sm { font-size: 14px; padding: 11px 18px; min-height: 44px; border-radius: 8px; }
.btn-sm.btn-primary { box-shadow: 0 6px 22px -8px var(--aura); }
.btn-sm.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -8px var(--aura); }

.link-underline {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid rgba(27, 23, 18, .25); padding-bottom: 4px;
  transition: color .25s, border-color .25s;
}
.link-underline:hover { color: var(--aura); border-color: var(--aura); }
.link-accent {
  font-size: 14px; font-weight: 600; color: var(--aura);
  border-bottom: 1px solid rgba(224, 151, 63, .4); padding-bottom: 3px;
}

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid transparent;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
}
.brand { display: flex; align-items: center; gap: 9px; }
.brand:hover { color: inherit; }
.brand-dot {
  width: 11px; height: 11px; border-radius: 50%; background: var(--aura);
  box-shadow: 0 0 14px 2px var(--aura); animation: auraGlow 3.4s ease-in-out infinite;
}
.brand-word { font-family: 'Newsreader', serif; font-size: 23px; letter-spacing: -.01em; color: var(--cream); }
.brand-tag { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(241, 234, 221, .5); margin-top: 3px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative; background: var(--dark); color: var(--cream); overflow: hidden;
  padding: clamp(104px, 13vh, 146px) clamp(18px, 5vw, 64px) clamp(52px, 8vh, 88px);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 80% 8%, rgba(224, 151, 63, .16), transparent 55%),
    radial-gradient(80% 70% at 6% 100%, rgba(224, 151, 63, .07), transparent 60%);
}
.hero-lines {
  position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: repeating-linear-gradient(23deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 7px);
}
.hero-inner {
  position: relative; max-width: 1240px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 5vw, 72px);
}
.hero-copy { flex: 1 1 440px; min-width: 290px; position: relative; z-index: 10; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; letter-spacing: .03em;
  color: rgba(241, 234, 221, .7); border: 1px solid rgba(241, 234, 221, .18);
  padding: 7px 13px; border-radius: 999px; margin-bottom: 24px;
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aura); box-shadow: 0 0 10px 1px var(--aura); }
.hero h1 {
  font-family: 'Newsreader', serif; font-weight: 400;
  font-size: clamp(2.4rem, 5.6vw, 4.7rem); line-height: 1.02; letter-spacing: -.02em; margin: 0 0 22px;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem); line-height: 1.55;
  color: rgba(241, 234, 221, .72); max-width: 36ch; margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-media {
  flex: 1 1 400px; min-width: 280px; position: relative; aspect-ratio: 4/5;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 52% 34%;
  border-radius: 18px;
  -webkit-mask-image: linear-gradient(to bottom, #000 62%, transparent 100%), linear-gradient(to right, transparent 0, #000 16%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, #000 62%, transparent 100%), linear-gradient(to right, transparent 0, #000 16%);
  mask-composite: intersect;
}
.hero-media-fade {
  position: absolute; inset: 0; pointer-events: none; border-radius: 18px;
  background: linear-gradient(105deg, #16130D 2%, transparent 34%), radial-gradient(60% 40% at 50% 82%, rgba(22, 19, 13, .55), transparent);
}
.live-tag {
  position: absolute; left: 16px; bottom: 20px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; color: rgba(241, 234, 221, .85); background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(6px); padding: 5px 11px; border-radius: 999px;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #e05a5a; }

.hero-msg {
  position: absolute; z-index: 6; background: rgba(255, 255, 255, .96); color: var(--ink);
  font-size: 13px; line-height: 1.35; padding: 9px 13px; border-radius: 14px 14px 14px 4px;
  box-shadow: 0 16px 34px -16px rgba(0, 0, 0, .6); max-width: 160px;
  animation: auraDrift 6s ease-in-out infinite;
}

.hero-foot {
  position: relative; max-width: 1240px; margin: clamp(44px, 7vh, 80px) auto 0; padding-top: 32px;
  border-top: 1px solid rgba(241, 234, 221, .12);
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.hero-foot p {
  font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.2; letter-spacing: -.01em; margin: 0; max-width: 26ch;
}
.hero-foot .link-accent { white-space: nowrap; }

/* ==========================================================================
   PROBLEMA
   ========================================================================== */
.stack { display: flex; flex-wrap: wrap; }
.problem-grid { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 64px); align-items: stretch; }
.problem-copy { flex: 1 1 420px; min-width: 280px; }
.problem-h2 {
  font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(1.9rem, 4.3vw, 3.3rem);
  line-height: 1.08; letter-spacing: -.02em; margin: 0 0 clamp(26px, 4vh, 40px); max-width: 18ch;
}
.problem-list { display: flex; flex-direction: column; gap: 2px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(27, 23, 18, .1); }
.problem-item { background: rgba(27, 23, 18, .03); padding: 16px 18px; display: flex; gap: 13px; align-items: flex-start; }
.problem-num { font-family: 'Newsreader', serif; font-size: 14px; color: var(--aura); margin-top: 1px; min-width: 20px; }
.problem-text { font-size: 15px; line-height: 1.45; color: rgba(27, 23, 18, .82); }

.problem-media {
  flex: 1 1 320px; min-width: 260px; position: relative; align-self: stretch;
  min-height: 420px; border-radius: 18px; overflow: hidden;
}
.problem-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.problem-media-fade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, var(--paper) 1%, rgba(244, 239, 231, .15) 30%, transparent 55%),
    linear-gradient(to bottom, rgba(22, 19, 13, .35), transparent 30%);
}
.problem-media-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(20px, 3vw, 30px); }
.problem-media-cap p {
  font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.18; letter-spacing: -.01em; color: var(--ink); margin: 0; max-width: 20ch;
}
.problem-tail {
  margin: clamp(30px, 4vh, 46px) auto 0; font-family: 'Newsreader', serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.4; letter-spacing: -.01em; color: var(--ink);
}

/* ==========================================================================
   TRANSFORMAÇÃO (chat demo)
   ========================================================================== */
.trans-grid { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 72px); align-items: center; }
.trans-copy { flex: 1 1 340px; min-width: 270px; }
.trans-h2 {
  font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08; letter-spacing: -.02em; margin: 0 0 20px;
}
.trans-p { font-size: 16px; line-height: 1.6; color: rgba(27, 23, 18, .66); max-width: 40ch; margin: 0 0 26px; }
.chat-holder { flex: 1 1 360px; min-width: 280px; }
.chat-card {
  background: #fff; border: 1px solid rgba(27, 23, 18, .09); border-radius: 20px; padding: 20px;
  box-shadow: 0 30px 70px -34px rgba(27, 23, 18, .4);
}
.chat-head {
  display: flex; align-items: center; gap: 10px; padding: 0 4px 16px;
  border-bottom: 1px solid rgba(27, 23, 18, .08); margin-bottom: 16px;
}
.aura-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(150deg, var(--aura), #c97b2f);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 0 14px -2px var(--aura); flex: none;
}
.aura-avatar span { width: 9px; height: 9px; border-radius: 50%; background: #fff; }
.chat-name { font-weight: 600; font-size: 14.5px; line-height: 1.2; }
.chat-status { font-size: 11.5px; color: var(--green); }
.chat-body { display: flex; flex-direction: column; gap: 11px; }
.bubble { max-width: 82%; padding: 11px 15px; font-size: 14.5px; line-height: 1.45; animation: auraPop .5s both; }
.bubble-client { align-self: flex-end; max-width: 80%; background: #EDE6D8; color: var(--ink); border-radius: 16px 16px 5px 16px; }
.bubble-aura {
  align-self: flex-start; color: var(--ink);
  background: linear-gradient(160deg, rgba(224, 151, 63, .16), rgba(224, 151, 63, .09));
  border: 1px solid rgba(224, 151, 63, .3); border-radius: 16px 16px 16px 5px;
}
.chat-foot {
  margin-top: 14px; padding-top: 13px; border-top: 1px solid rgba(27, 23, 18, .07);
  display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(27, 23, 18, .4);
}
.chat-foot .pill-dot { box-shadow: none; }

/* ==========================================================================
   POSICIONAMENTO
   ========================================================================== */
.pos { position: relative; padding: clamp(72px, 11vh, 140px) clamp(18px, 5vw, 64px); background: var(--dark); color: var(--cream); overflow: hidden; }
.pos-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.pos-veil { position: absolute; inset: 0; background: radial-gradient(90% 80% at 50% 40%, rgba(22, 19, 13, .72), #16130D 78%); }
.pos-inner { position: relative; max-width: 1080px; margin: 0 auto; text-align: center; }
.pos h2 {
  font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 1.02; letter-spacing: -.03em; margin: 0 0 clamp(40px, 6vh, 72px);
}
.flow-wrap { position: relative; max-width: 820px; margin: 0 auto; }
.flow-line {
  position: absolute; top: 26px; left: 0; right: 0; height: 2px; overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(224, 151, 63, .4), transparent);
}
.flow-spark {
  position: absolute; top: -3px; width: 70px; height: 8px; border-radius: 999px;
  background: radial-gradient(closest-side, var(--aura), transparent); animation: auraTravel 4.5s linear infinite;
}
.flow-main { position: relative; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.flow-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(36, 29, 19, .94); border: 1px solid rgba(224, 151, 63, .3); backdrop-filter: blur(4px);
  padding: 11px 17px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--cream);
}
.flow-chip .pill-dot { width: 7px; height: 7px; box-shadow: 0 0 9px 1px var(--aura); }
.flow-more { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 22px; }
.flow-more span {
  font-size: 12.5px; color: rgba(241, 234, 221, .5);
  border: 1px solid rgba(241, 234, 221, .14); padding: 6px 12px; border-radius: 999px;
}
.pos-foot { font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(241, 234, 221, .5); margin: clamp(30px, 4vh, 44px) 0 0; }

/* ==========================================================================
   CAPACIDADES
   ========================================================================== */
.cap-grid { display: flex; flex-wrap: wrap; gap: clamp(30px, 4vw, 56px); align-items: center; max-width: 1160px; margin: 0 auto; }
.cap-media { flex: 1 1 360px; min-width: 280px; position: relative; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; }
.cap-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.cap-media-fade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(22, 19, 13, .5), transparent 46%); }
.cap-copy { flex: 1 1 380px; min-width: 290px; }
.cap-h2 { font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -.02em; margin: 0 0 clamp(24px, 3vh, 34px); max-width: 20ch; }
.cap-list { display: flex; flex-direction: column; gap: 2px; }
.cap-item { display: flex; gap: 14px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid rgba(27, 23, 18, .1); }
.cap-k { font-family: 'Newsreader', serif; font-size: 1.25rem; color: var(--aura); min-width: 104px; }
.cap-d { font-size: 14.5px; line-height: 1.4; color: rgba(27, 23, 18, .7); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip-quiet { font-size: 12.5px; color: rgba(27, 23, 18, .6); border: 1px solid rgba(27, 23, 18, .14); padding: 6px 12px; border-radius: 999px; }
.cap-note { font-size: 15px; line-height: 1.6; color: rgba(27, 23, 18, .6); margin: 22px 0 0; max-width: 46ch; }

/* ==========================================================================
   ANTES E DEPOIS
   ========================================================================== */
.ba-h2 { font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.08; letter-spacing: -.02em; margin: 0 0 clamp(30px, 4vh, 48px); max-width: 22ch; }
.ba-grid { display: flex; flex-wrap: wrap; gap: clamp(20px, 3vw, 32px); align-items: stretch; }
.ba-media { flex: 1 1 300px; min-width: 260px; position: relative; aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; min-height: 320px; }
.ba-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-media-fade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(22, 19, 13, .6), transparent 50%); }
.ba-media p { position: absolute; left: 20px; right: 20px; bottom: 20px; font-family: 'Newsreader', serif; font-size: 1.3rem; line-height: 1.2; color: var(--cream); margin: 0; }
.ba-cols { flex: 1 1 380px; min-width: 280px; display: flex; flex-direction: column; gap: 16px; }
.ba-card { border-radius: 16px; padding: clamp(20px, 2.4vw, 28px); }
.ba-before { background: rgba(27, 23, 18, .04); border: 1px solid rgba(27, 23, 18, .1); }
.ba-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.ba-before .ba-label { color: rgba(27, 23, 18, .45); margin-bottom: 16px; }
.ba-rows { display: flex; flex-direction: column; gap: 11px; }
.ba-row { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.4; }
.ba-before .ba-row { color: rgba(27, 23, 18, .6); }
.ba-mark { min-width: 15px; }
.ba-before .ba-mark { color: rgba(27, 23, 18, .35); }
.ba-after {
  background: linear-gradient(165deg, #16130D, #221b12); color: var(--cream);
  border: 1px solid rgba(224, 151, 63, .25); box-shadow: 0 30px 70px -40px rgba(0, 0, 0, .6);
}
.ba-after-head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ba-after-head .pill-dot { width: 8px; height: 8px; box-shadow: 0 0 10px 1px var(--aura); }
.ba-after .ba-label { color: var(--aura); }
.ba-after .ba-row { color: rgba(241, 234, 221, .92); }
.ba-after .ba-mark { color: var(--aura); }

/* ==========================================================================
   VENDA PROATIVA
   ========================================================================== */
.vp-grid { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 64px); align-items: center; }
.vp-copy { flex: 1 1 360px; min-width: 280px; }
.vp-h2 { font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.06; letter-spacing: -.02em; margin: 0 0 20px; }
.vp-p { font-size: 16px; line-height: 1.6; color: rgba(27, 23, 18, .66); max-width: 42ch; margin: 0 0 22px; }
.vp-pull { font-family: 'Newsreader', serif; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.3; letter-spacing: -.01em; color: var(--ink); margin: 0; max-width: 30ch; }
.vp-flow { flex: 1 1 360px; min-width: 280px; display: flex; flex-direction: column; gap: 12px; }
.vp-open {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 10px;
  background: rgba(27, 23, 18, .05); border: 1px dashed rgba(27, 23, 18, .2);
  padding: 11px 15px; border-radius: 12px; font-size: 14px; color: rgba(27, 23, 18, .7);
}
.vp-open span { width: 9px; height: 9px; border-radius: 2px; background: var(--aura); }
.vp-arrow { align-self: center; color: rgba(27, 23, 18, .3); font-size: 18px; }
.vp-msg-card { background: #fff; border: 1px solid rgba(224, 151, 63, .3); border-radius: 16px; padding: 16px; box-shadow: 0 24px 60px -34px rgba(27, 23, 18, .4); }
.vp-msg-head { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; font-weight: 600; font-size: 13px; }
.vp-msg-head .aura-avatar { width: 26px; height: 26px; box-shadow: none; }
.vp-msg-head .aura-avatar span { width: 7px; height: 7px; }
.vp-msg-body {
  background: linear-gradient(160deg, rgba(224, 151, 63, .15), rgba(224, 151, 63, .08));
  border: 1px solid rgba(224, 151, 63, .28); padding: 11px 14px; border-radius: 14px 14px 14px 4px;
  font-size: 14px; line-height: 1.4; color: var(--ink);
}
.vp-video { position: relative; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; border: 1px solid rgba(27, 23, 18, .1); }
.vp-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vp-video-fade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(22, 19, 13, .72), transparent 60%); }
.vp-video-badge { position: absolute; left: 14px; bottom: 14px; right: 14px; display: flex; align-items: center; gap: 9px; }
.vp-badge {
  display: inline-flex; align-items: center; gap: 7px; background: rgba(22, 19, 13, .65); backdrop-filter: blur(6px);
  color: var(--cream); padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 600;
}
.vp-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px 1px var(--green); }
.vp-cap { font-family: 'Newsreader', serif; font-size: 1.15rem; line-height: 1.3; color: var(--ink); margin: 6px 2px 0; }
.center-cta { margin: clamp(40px, 5vh, 56px) auto 0; text-align: center; }

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */
.ben-h2 { font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.08; letter-spacing: -.02em; margin: 0 0 clamp(40px, 6vh, 64px); max-width: 22ch; }
.ben-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1px;
  background: rgba(241, 234, 221, .1); border: 1px solid rgba(241, 234, 221, .1); border-radius: 16px; overflow: hidden;
}
.ben-cell { background: var(--dark); padding: clamp(24px, 3vw, 32px); transition: background .25s; }
.ben-cell:hover { background: #1d1710; }
.ben-num { font-family: 'Newsreader', serif; font-size: 14px; color: var(--aura); margin-bottom: 14px; }
.ben-cell h3 { font-family: 'Newsreader', serif; font-weight: 400; font-size: 1.45rem; letter-spacing: -.01em; margin: 0 0 9px; }
.ben-cell p { font-size: 14.5px; line-height: 1.55; color: rgba(241, 234, 221, .66); margin: 0; }

/* ==========================================================================
   SISTEMA (controle vem junto)
   ========================================================================== */
.sys-grid { display: flex; flex-wrap: wrap; gap: clamp(34px, 5vw, 68px); align-items: center; }
.sys-copy { flex: 1 1 380px; min-width: 290px; }
.sys-h2 { font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(1.85rem, 3.8vw, 2.9rem); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 20px; max-width: 22ch; }
.sys-p { font-size: 16px; line-height: 1.6; color: rgba(27, 23, 18, .66); max-width: 44ch; margin: 0 0 24px; }
.sys-lines { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.sys-line { display: flex; gap: 11px; align-items: baseline; font-size: 15px; color: rgba(27, 23, 18, .78); }
.sys-line span { min-width: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--aura); align-self: center; }
.sys-pull { font-family: 'Newsreader', serif; font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.3; letter-spacing: -.01em; color: var(--ink); margin: 0; max-width: 30ch; }

.sys-mock { flex: 1 1 420px; min-width: 290px; position: relative; padding-top: 30px; padding-bottom: 56px; }
.sys-devlabels {
  position: absolute; top: 0; right: 6px; display: inline-flex; gap: 14px;
  font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: rgba(27, 23, 18, .5);
}
.frame-computer {
  position: relative; background: #12100B; border-radius: 16px 16px 4px 4px; padding: 9px 9px 0;
  box-shadow: 0 44px 100px -46px rgba(27, 23, 18, .6); border: 1px solid rgba(27, 23, 18, .5);
}
.frame-bar { display: flex; align-items: center; gap: 6px; padding: 5px 8px 9px; }
.frame-dot { width: 8px; height: 8px; border-radius: 50%; background: #4a4238; }
.frame-url { margin-left: 8px; flex: 1; background: #241f17; border-radius: 6px; font-size: 10.5px; color: rgba(241, 234, 221, .55); padding: 4px 10px; }
.frame-screen { background: #fbf8f2; border-radius: 8px 8px 0 0; padding: 16px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; }
.agenda-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.agenda-title { font-weight: 600; font-size: 13px; color: var(--ink); }
.agenda-date { font-size: 11px; color: rgba(27, 23, 18, .45); }
.agenda-rows { display: flex; flex-direction: column; gap: 7px; }
.agenda-row { display: flex; align-items: center; gap: 9px; font-size: 12px; color: rgba(27, 23, 18, .75); }
.agenda-time { color: rgba(27, 23, 18, .4); min-width: 34px; }
.agenda-check { margin-left: auto; color: var(--green); }
.agenda-row-free { color: rgba(27, 23, 18, .5); }
.agenda-row-fill {
  position: relative; padding: 7px 9px; border-radius: 8px;
  background: rgba(224, 151, 63, .12); border: 1px solid rgba(224, 151, 63, .3);
}
.agenda-row-fill .agenda-time { color: rgba(27, 23, 18, .5); }
.agenda-swap { position: relative; flex: 1; overflow: hidden; white-space: nowrap; min-height: 1.2em; }
.agenda-swap .s1 { display: block; animation: auraSync 5s ease-in-out infinite; }
.agenda-swap .s2 { position: absolute; left: 0; top: 0; right: 0; color: var(--ink); animation: auraSync2 5s ease-in-out infinite; }
.agenda-side { display: flex; flex-direction: column; gap: 10px; }
.stat-card { background: #fff; border: 1px solid rgba(27, 23, 18, .09); border-radius: 10px; padding: 11px; }
.stat-label { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: rgba(27, 23, 18, .45); margin-bottom: 5px; }
.stat-value { font-family: 'Newsreader', serif; font-size: 1.35rem; color: var(--ink); }
.stat-actions { display: flex; flex-direction: column; gap: 5px; font-size: 11.5px; color: rgba(27, 23, 18, .72); }

.frame-phone {
  position: absolute; left: -6px; bottom: 0; width: 132px; background: #12100B;
  border-radius: 18px; padding: 6px; box-shadow: 0 30px 60px -30px rgba(27, 23, 18, .7); border: 1px solid rgba(27, 23, 18, .5);
}
.phone-screen { background: #fbf8f2; border-radius: 13px; padding: 11px 10px; }
.phone-head { display: flex; align-items: center; gap: 6px; margin-bottom: 9px; }
.phone-dot { width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(150deg, var(--aura), #c97b2f); }
.phone-title { font-size: 9.5px; font-weight: 600; color: var(--ink); }
.phone-rows { display: flex; flex-direction: column; gap: 5px; font-size: 9px; color: rgba(27, 23, 18, .7); }
.phone-rows span { display: flex; gap: 5px; }
.phone-rows b { color: rgba(27, 23, 18, .4); font-weight: 500; }
.phone-row-hl { color: var(--ink); background: rgba(224, 151, 63, .15); border-radius: 5px; padding: 3px 5px; }
.phone-row-hl b { color: rgba(27, 23, 18, .45); }
.phone-sync { margin-top: 9px; display: inline-flex; align-items: center; gap: 5px; font-size: 8.5px; color: var(--green); }
.phone-sync span { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.sys-caption { position: absolute; right: 8px; bottom: 2px; font-family: 'Newsreader', serif; font-size: .95rem; line-height: 1.3; color: rgba(27, 23, 18, .55); text-align: right; max-width: 15ch; }

/* ==========================================================================
   PERSONALIZAÇÃO
   ========================================================================== */
.pers-head { text-align: center; max-width: 24ch; margin: 0 auto clamp(30px, 4vh, 44px); }
.pers-head h2 { font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.08; letter-spacing: -.02em; margin: 0; }
.prof-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: clamp(24px, 3vh, 36px); }
.prof-tab {
  font-size: 14px; font-weight: 500; padding: 10px 17px; border-radius: 999px;
  border: 1px solid rgba(27, 23, 18, .18); background: transparent; color: rgba(27, 23, 18, .7);
  cursor: pointer; min-height: 44px; white-space: nowrap; transition: border-color .2s, color .2s, background .2s;
}
.prof-tab:hover { border-color: var(--aura); color: var(--ink); }
.prof-tab[aria-selected="true"] { font-weight: 600; border-color: var(--aura); background: var(--aura); color: #17130B; }

.pers-panel { display: flex; flex-wrap: wrap; gap: clamp(16px, 2vw, 22px); align-items: stretch; justify-content: center; }
.pers-media {
  flex: 1 1 420px; min-width: 280px; position: relative; border-radius: 18px; overflow: hidden;
  min-height: 300px; background: linear-gradient(160deg, #241d13, #16130D);
}
.pers-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pers-media-fade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(22, 19, 13, .5), transparent 46%); }
.pers-media-tag {
  position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; color: rgba(241, 234, 221, .9); background: rgba(0, 0, 0, .4); backdrop-filter: blur(6px);
  padding: 5px 11px; border-radius: 999px;
}
.pers-media-tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--aura); box-shadow: 0 0 8px 1px var(--aura); }
.pers-placeholder { position: absolute; inset: 0; }
.pers-placeholder .stripes { position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(224, 151, 63, .06) 0 2px, transparent 2px 13px); }
.pers-placeholder .inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 24px; }
.pers-placeholder .ring { width: 46px; height: 46px; border-radius: 50%; border: 1px dashed rgba(241, 234, 221, .3); }
.pers-placeholder .mono { font-family: ui-monospace, monospace; font-size: 11px; line-height: 1.6; color: rgba(241, 234, 221, .5); max-width: 22ch; }

.pers-chat {
  flex: 1 1 380px; min-width: 280px; background: #fff; border: 1px solid rgba(27, 23, 18, .1);
  border-radius: 18px; padding: 20px; box-shadow: 0 34px 80px -40px rgba(27, 23, 18, .4);
  display: flex; flex-direction: column;
}
.pers-chat-head { display: flex; align-items: center; justify-content: space-between; padding: 0 2px 14px; border-bottom: 1px solid rgba(27, 23, 18, .08); margin-bottom: 14px; }
.pers-chat-head .aura-avatar { box-shadow: 0 0 16px -3px var(--aura); }
.pers-chat-service { font-size: 11px; color: rgba(27, 23, 18, .4); text-align: right; max-width: 13ch; }
.pers-chat-body { display: flex; flex-direction: column; gap: 10px; flex: 1; justify-content: center; }
.pers-chat-body .bubble { font-size: 14px; padding: 11px 14px; animation-duration: .45s; }
.pers-chat-body .bubble-client { max-width: 82%; }
.pers-chat-body .bubble-aura { max-width: 84%; }
.pers-foot { text-align: center; font-size: 13px; color: rgba(27, 23, 18, .45); margin: 18px 0 0; }

/* ==========================================================================
   OBJEÇÕES (FAQ)
   ========================================================================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-h2 { font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.08; letter-spacing: -.02em; margin: 0 0 clamp(34px, 5vh, 54px); max-width: 20ch; }
.faq-list { border-top: 1px solid rgba(27, 23, 18, .13); }
.faq-item { border-bottom: 1px solid rgba(27, 23, 18, .13); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; background: transparent; border: 0; cursor: pointer; text-align: left; min-height: 44px;
  transition: opacity .2s;
}
.faq-btn:hover { opacity: .7; }
.faq-q { font-family: 'Newsreader', serif; font-size: clamp(1.1rem, 2vw, 1.45rem); letter-spacing: -.01em; color: var(--ink); }
.faq-icon { font-size: 24px; color: var(--aura); line-height: 1; flex: none; }
.faq-panel { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-item.open .faq-panel { max-height: 320px; }
.faq-panel p { font-size: 15px; line-height: 1.6; color: rgba(27, 23, 18, .68); margin: 0 0 22px; padding-right: 40px; max-width: 62ch; }

/* ==========================================================================
   CTA FINAL + FORM
   ========================================================================== */
.form-sec { position: relative; padding: clamp(72px, 11vh, 140px) clamp(18px, 5vw, 64px); background: var(--dark); color: var(--cream); overflow: hidden; }
.form-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(80% 60% at 50% 0%, rgba(224, 151, 63, .14), transparent 60%); }
.form-grid { position: relative; max-width: 1080px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(36px, 5vw, 80px); align-items: center; }
.form-copy { flex: 1 1 360px; min-width: 280px; }
.form-copy h2 { font-family: 'Newsreader', serif; font-weight: 400; font-size: clamp(1.85rem, 4vw, 2.9rem); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 22px; max-width: 22ch; }
.form-copy .lead { font-size: 16px; line-height: 1.6; color: rgba(241, 234, 221, .7); max-width: 44ch; margin: 0 0 26px; }
.form-copy .max { font-family: 'Newsreader', serif; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.25; letter-spacing: -.01em; margin: 0; }
.form-holder { flex: 1 1 360px; min-width: 280px; }
.form-card { background: #fff; color: var(--ink); border-radius: 20px; padding: clamp(22px, 3vw, 32px); box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .6); }
.form-title { font-family: 'Newsreader', serif; font-size: 1.45rem; letter-spacing: -.01em; margin: 0 0 6px; }
.form-note { font-size: 14px; color: rgba(27, 23, 18, .55); margin: 0 0 20px; }
form { display: flex; flex-direction: column; gap: 14px; }
.field { display: block; }
.field > span { display: block; font-size: 12.5px; font-weight: 600; color: rgba(27, 23, 18, .6); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 13px 14px; border: 1px solid rgba(27, 23, 18, .18); border-radius: 9px;
  font-size: 15px; background: #faf7f1; min-height: 48px; transition: border-color .2s, box-shadow .2s;
}
.field select { cursor: pointer; }
.field input:focus, .field select:focus { border-color: var(--aura); outline: none; box-shadow: 0 0 0 3px rgba(224, 151, 63, .15); }
.field-err { display: block; font-size: 12px; color: var(--err); margin-top: 5px; }
.form-err { font-size: 13px; color: var(--err); }
.form-submit { margin-top: 4px; width: 100%; padding: 15px; border: 0; border-radius: 9px; background: var(--aura); color: #17130B; font-size: 15.5px; font-weight: 600; cursor: pointer; box-shadow: 0 14px 34px -14px var(--aura); min-height: 52px; transition: transform .25s, box-shadow .25s; }
.form-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 20px 44px -14px var(--aura); }
.form-submit:disabled { opacity: .8; cursor: default; }
.form-consent { font-size: 12.5px; color: rgba(27, 23, 18, .5); text-align: center; margin: 2px 0 0; line-height: 1.5; }
.form-consent a { color: var(--aura); text-decoration: underline; }
.form-success { text-align: center; padding: 20px 6px; }
.form-success-ring { display: inline-flex; width: 56px; height: 56px; border-radius: 50%; background: rgba(224, 151, 63, .15); align-items: center; justify-content: center; margin-bottom: 20px; }
.form-success-ring span { width: 16px; height: 16px; border-radius: 50%; background: var(--aura); box-shadow: 0 0 18px 2px var(--aura); }
.form-success h3 { font-family: 'Newsreader', serif; font-weight: 400; font-size: 1.6rem; letter-spacing: -.01em; margin: 0 0 10px; }
.form-success p { font-size: 15px; line-height: 1.6; color: rgba(27, 23, 18, .62); margin: 0 auto; max-width: 32ch; }
.form-success a { display: inline-block; margin-top: 22px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--dark-2); color: rgba(241, 234, 221, .55); padding: clamp(44px, 7vh, 72px) clamp(18px, 5vw, 64px); }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer .brand-dot { width: 10px; height: 10px; box-shadow: 0 0 12px 1px var(--aura); animation: none; }
.footer .brand-word { font-size: 21px; }
.footer .brand-tag { font-size: 10.5px; color: inherit; }
.footer-max { font-size: 14px; margin: 0; max-width: 34ch; line-height: 1.5; }
.footer-copy { max-width: 1120px; margin: 26px auto 0; font-size: 12px; color: rgba(241, 234, 221, .3); }

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.sticky {
  display: none; position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 70; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(22, 19, 13, .94); backdrop-filter: blur(10px);
  border: 1px solid rgba(224, 151, 63, .28); border-radius: 14px; padding: 11px 12px 11px 18px;
  box-shadow: 0 20px 50px -18px rgba(0, 0, 0, .7);
}
.sticky.show { display: flex; }
.sticky-label { font-size: 13px; color: var(--cream); line-height: 1.25; }
.sticky .btn-sm { padding: 11px 15px; }

/* ==========================================================================
   Reveal
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive / mobile
   ========================================================================== */
@media (max-width: 760px) {
  .stack { flex-direction: column !important; }
  .prof-tabs {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    scroll-snap-type: x mandatory; padding: 2px 0 10px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .prof-tabs::-webkit-scrollbar { display: none; }
  .prof-tabs > * { scroll-snap-align: start; flex: 0 0 auto; }
  .hero-media, .cap-media, .ba-media { aspect-ratio: 16/11 !important; }
  .hero-media { width: 100%; max-width: 100%; }
  .problem-media { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; }
  [data-reveal] { transition: none; }
}
