/* Fontes locais */
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spectral';
  src: url('fonts/spectral-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Spectral';
  src: url('fonts/spectral-300-italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Spectral';
  src: url('fonts/spectral-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --canvas: #ffffff;
  --canvas-soft: #f6f5f3;
  --canvas-deep: #161410;
  --surface: #ffffff;

  --ink: #171510;
  --ink-soft: #36322b;
  --body: #54504a;
  --muted: #908b83;
  --muted-soft: #b6b1a9;

  --green-action: #00cf7d;
  --hairline: #eae8e3;
  --hairline-strong: #dbd8d2;

  --o-mist: #b9e6d8;
  --o-peach: #f6cdb2;
  --o-lavender: #d0bfe6;
  --o-sky: #bcd4ec;
  --o-rose: #eec4ce;
  --o-sand: #ecdcc4;

  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.04);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --slow: cubic-bezier(.6, .04, .2, 1);

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .1px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--ink);
  color: #fff
}

.serif {
  font-family: 'Spectral', serif;
  font-weight: 300;
  letter-spacing: -.01em
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted);
}

/* ---------- bg orbs ---------- */
.bg-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}

.bg-orb.mist {
  background: radial-gradient(circle, var(--o-mist), transparent 70%);
}

.bg-orb.peach {
  background: radial-gradient(circle, var(--o-peach), transparent 70%);
}

.bg-orb.lavender {
  background: radial-gradient(circle, var(--o-lavender), transparent 70%);
}

.bg-orb.sky {
  background: radial-gradient(circle, var(--o-sky), transparent 70%);
}

.bg-orb.rose {
  background: radial-gradient(circle, var(--o-rose), transparent 70%);
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .01em;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .4s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-strong)
}

/* WPP buttons: hover verde sólido */
.wpp-green:hover {
  background: var(--green-action) !important;
  border-color: var(--green-action) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Ghost NÃO-wpp: hover escuro */
.btn-ghost:not(.wpp-btn):hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

/* Primary NÃO-wpp: hover transparente */
.btn-primary:not(.wpp-btn):hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn .arr {
  transition: transform .4s var(--ease)
}

.btn:hover .arr {
  transform: translateX(4px)
}

/* Hover outline: menu, telemedicina e depoimentos */
.nav-cta .wpp-btn:hover {
  background: transparent !important;
  border-color: var(--ink) !important;
  color: var(--ink) !important;
  transform: translateY(-2px);
}

.rev-cta .btn-ghost:hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ---------- nav ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 74px;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--hairline);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  height: 44px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color .3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--ink);
  transition: width .4s var(--ease);
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-cta .btn {
  padding: 8px 18px;
  font-size: 13.5px
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px
}

.burger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: .3s
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding-top: 170px;
  padding-bottom: 120px;
  overflow: hidden
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.orb-layer {
  position: absolute;
  inset: 0;
  will-change: transform
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  mix-blend-mode: multiply
}

.hero .o1 {
  width: 540px;
  height: 540px;
  background: radial-gradient(circle at 30% 30%, var(--o-sky), transparent 68%);
  top: -140px;
  right: -60px;
  animation: drift1 26s var(--slow) infinite alternate
}

.hero .o2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 40% 40%, var(--o-lavender), transparent 66%);
  top: 60px;
  right: 180px;
  animation: drift2 32s var(--slow) infinite alternate
}

.hero .o3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 50% 50%, var(--o-peach), transparent 68%);
  top: 120px;
  right: -40px;
  animation: drift3 30s var(--slow) infinite alternate
}

@keyframes drift1 {
  to {
    transform: translate(-50px, 40px) scale(1.08)
  }
}

@keyframes drift2 {
  to {
    transform: translate(40px, -30px) scale(1.05)
  }
}

@keyframes drift3 {
  to {
    transform: translate(-30px, -40px) scale(1.1)
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px
}

.hero .eyebrow {
  margin-bottom: 26px
}

.hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  color: var(--ink);
  margin-bottom: 8px;
}

.hero h1 em {
  font-style: italic;
  color: var(--ink);
  font-weight: 300
}

.hero h2 {
  font-size: clamp(20px, 3.5vw, 26px);
  color: var(--ink-soft);
  margin-bottom: 10px;
}


.crm {
  font-size: 1rem;
  font-weight: 600;
}

.hero .sub {
  font-size: clamp(17px, 2vw, 15px);
  color: var(--body);
  max-width: 579px;
  line-height: 1.62;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 46px;
  color: var(--muted);
  font-size: 13.5px;
}

.hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-soft)
}

.hero-meta b {
  color: var(--ink-soft);
  font-weight: 600
}

.hero-faces {
  display: flex;
  align-items: center
}

.hero-faces img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--canvas);
  object-fit: cover;
  margin-left: -10px;
  position: relative;
}

.hero-faces img:first-child {
  margin-left: 0
}

.hero-faces img:nth-child(1) {
  z-index: 4
}

.hero-faces img:nth-child(2) {
  z-index: 3
}

.hero-faces img:nth-child(3) {
  z-index: 2
}

.hero-faces img:nth-child(4) {
  z-index: 1
}

/* ---------- seções ---------- */
section {
  position: relative;
  overflow: hidden;
}

.band {
  padding-block: clamp(86px, 11vw, 140px)
}

.band.soft {
  background: var(--canvas-soft)
}

.sec-head {
  max-width: 680px;
  margin-bottom: 64px;
  text-align: center;
  margin-inline: auto;
}

.sec-head .eyebrow {
  margin-bottom: 18px;
  display: block
}

.sec-head h2 {
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.08;
  color: var(--ink)
}

.sec-head p {
  margin-top: 16px;
  color: var(--body);
  font-size: 16.5px;
  max-width: 560px;
  margin-inline: auto;
}

/* ---------- áreas de atuação ---------- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.area {
  flex: 1 1 calc(33.333% - 18px);
  min-width: 280px;
  max-width: 360px;
  position: relative;
  border: 1px solid var(--hairline);
  background: var(--surface);
  border-radius: 20px;
  padding: 34px 30px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .5s var(--ease), border-color .4s var(--ease), box-shadow .5s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.area::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  top: -100px;
  right: -90px;
  filter: blur(50px);
  opacity: 0;
  transform: scale(.7);
  transition: opacity .6s var(--ease), transform .8s var(--ease);
  background: radial-gradient(circle, var(--c, var(--o-sky)), transparent 70%);
  mix-blend-mode: multiply;
}

.area:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-card)
}

.area:hover::before {
  opacity: .85;
  transform: scale(1)
}

.area .num {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-soft);
  letter-spacing: .1em
}

.area h3 {
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  margin: 16px 0 12px;
  letter-spacing: -.01em
}

.area p {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 24px;
}

.area .tag {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
  opacity: .7;
  transition: opacity .3s, gap .3s, color .3s;
  text-decoration: none;
}

.area:hover .tag {
  opacity: 1;
  gap: 11px;
  color: var(--ink)
}

.area:nth-child(1) {
  --c: var(--o-sky)
}

.area:nth-child(2) {
  --c: var(--o-lavender)
}

.area:nth-child(3) {
  --c: var(--o-mist)
}

.area:nth-child(4) {
  --c: var(--o-peach)
}

.area:nth-child(5) {
  --c: var(--o-rose)
}

/* ---------- sobre ---------- */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start
}

.about-lead {
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.32;
  color: var(--ink)
}

.about-lead em {
  font-style: italic
}

.traj {
  display: flex;
  flex-direction: column
}

.traj-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
}

.traj-item:last-child {
  border-bottom: 1px solid var(--hairline)
}

.traj-item .k {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  text-transform: uppercase;
  padding-top: 3px
}

.traj-item .v b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px
}

.traj-item .v span {
  font-size: 14.5px;
  color: var(--body)
}

/* ---------- avaliações ---------- */
.rev-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 54px
}

.rev-score {
  display: flex;
  align-items: baseline;
  gap: 18px
}

.rev-score .big {
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: clamp(58px, 9vw, 86px);
  line-height: .85;
  color: var(--ink)
}

.rev-score .meta {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.stars {
  color: #FFBB29;
  font-size: 14px;
  letter-spacing: 2px
}

.rev-score .meta span {
  font-size: 13.5px;
  color: var(--muted)
}

.rev-score .meta b {
  color: var(--ink-soft);
  font-weight: 600
}

.rev-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.rev-viewport.dragging {
  cursor: grabbing;
}

.rev-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 200s linear infinite
}

.rev-viewport:hover .rev-track {
  animation-play-state: paused
}

.rev-viewport.dragging .rev-track {
  animation-play-state: paused
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

.rev-card {
  width: 350px;
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 28px;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s;
}

.rev-card:hover {
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-card)
}

.rev-card .stars {
  margin-bottom: 12px
}

.rev-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 0;
  height: 68px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical
}

.rev-card .rev-more {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 12px;
  display: none
}

.rev-card.truncated .rev-more {
  display: block
}

.rev-card .who {
  display: flex;
  align-items: center;
  gap: 12px
}

.rev-card .who .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--canvas-soft);
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  overflow: hidden;
}

.rev-card .who .av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rev-card .who b {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink)
}

.rev-card .who span {
  display: block;
  font-size: 12px;
  color: var(--muted)
}

.rev-cta {
  margin-top: 46px;
  text-align: center;
}

.rev-cta p {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 16px;
}

/* ---------- modal depoimento ---------- */
.rev-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

.rev-overlay.open {
  opacity: 1;
  pointer-events: auto
}

.rev-modal {
  background: var(--surface);
  border-radius: 22px;
  padding: 36px;
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(16px) scale(.97);
  transition: transform .4s var(--ease);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .15);
}

.rev-overlay.open .rev-modal {
  transform: none
}

.rev-modal .stars {
  margin-bottom: 16px
}

.rev-modal .rm-text {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px
}

.rev-modal .who {
  display: flex;
  align-items: center;
  gap: 14px
}

.rev-modal .who .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--canvas-soft);
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  overflow: hidden;
}

.rev-modal .who .av img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.rev-modal .who b {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink)
}

.rev-modal .who span {
  display: block;
  font-size: 12.5px;
  color: var(--muted)
}

.rev-modal .rm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--canvas-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--muted);
  line-height: 1;
  transition: background .2s, color .2s, border-color .2s;
}

.rev-modal .rm-close:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink)
}

/* ---------- processo ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 32px;
  position: relative
}

.step-card .n {
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: 38px;
  color: var(--muted-soft);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.step-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px
}

.step-card p {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.6
}

/* ---------- telemedicina ---------- */
.tele {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--canvas-deep);
  color: #fff;
  padding: clamp(48px, 7vw, 80px);
  isolation: isolate
}

.tele .o {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  mix-blend-mode: screen
}

.tele .oa {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, var(--o-lavender), transparent 70%);
  top: -160px;
  right: -80px;
  animation: drift2 30s var(--slow) infinite alternate
}

.tele .ob {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--o-sky), transparent 70%);
  bottom: -180px;
  left: -60px;
  animation: drift1 28s var(--slow) infinite alternate
}

.tele .eyebrow {
  color: rgba(255, 255, 255, .55)
}

.tele h2 {
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 18px 0 16px;
  max-width: 640px
}

.tele .lead {
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  font-size: 16.5px;
  margin-bottom: 48px
}

.tele-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px
}

.tele-grid .t b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px
}

.tele-grid .t p {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.55
}

.tele-grid .t {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14)
}

.tele-cta {
  margin-top: 40px
}

.tele-cta .btn-primary {
  background: #fff;
  color: var(--canvas-deep);
  border-color: #fff;
}

.tele-cta .wpp-btn:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
}

/* ---------- faq ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
  align-items: start
}

.faq-list {
  border-top: 1px solid var(--hairline);
  padding-top: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}

.faq-q,
.faq-q:visited,
.faq-q:active,
.faq-q:focus {
  width: 100%;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--ink) !important;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
  margin-bottom: 4px;
  text-decoration: none !important;
  box-shadow: none !important;
}

.faq-q .ic {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 auto
}

.faq-q .ic::before,
.faq-q .ic::after {
  content: "";
  position: absolute;
  background: var(--ink-soft) !important;
  transition: transform .4s var(--ease), opacity .4s, background .3s;
}

.faq-q .ic::before {
  top: 7px;
  left: 0;
  width: 15px;
  height: 1.5px
}

.faq-q .ic::after {
  top: 0;
  left: 7px;
  width: 1.5px;
  height: 15px
}

.faq-item.open .faq-q .ic::after {
  transform: scaleY(0);
  opacity: 0
}

.faq-q:hover,
.faq-q:focus,
.faq-item.open .faq-q {
  background: var(--ink) !important;
  color: #fff !important;
}

.faq-q:hover .ic::before,
.faq-q:hover .ic::after,
.faq-q:focus .ic::before,
.faq-q:focus .ic::after,
.faq-item.open .faq-q .ic::before,
.faq-item.open .faq-q .ic::after {
  background: #fff !important;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--slow)
}

.faq-a p {
  padding: 4px 18px 12px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
  max-width: 600px;
  margin: 0;
}

.faq-a p:last-child {
  padding-bottom: 26px;
}

/* ---------- cta final ---------- */
.final {
  text-align: center;
  position: relative;
  overflow: hidden
}

.final-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.final .o1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--o-peach), transparent 70%);
  top: -120px;
  left: 10%;
  filter: blur(80px);
  opacity: .4;
  mix-blend-mode: multiply
}

.final .o2 {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, var(--o-sky), transparent 70%);
  bottom: -160px;
  right: 10%;
  filter: blur(80px);
  opacity: .35;
  mix-blend-mode: multiply
}

.final-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto
}

.final h2 {
  font-family: 'Spectral', serif;
  font-weight: 300;
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.1;
  margin-bottom: 20px
}

.final p {
  color: var(--body);
  font-size: 17px;
  margin-bottom: 34px;
  max-width: 500px;
  margin-inline: auto
}

/* ---------- footer ---------- */
footer {
  background: var(--canvas-deep);
  color: rgba(255, 255, 255, .7);
  padding-block: 64px 40px
}

.foot-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.foot-brand {
  max-width: 320px
}

.foot-brand .brand {
  margin-bottom: 18px
}

.foot-brand .brand img {
  mix-blend-mode: normal;
}

.foot-brand p {
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  line-height: 1.6
}

.foot-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap
}

.foot-col h5 {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 16px
}

.foot-col a {
  display: block;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 11px;
  transition: color .3s
}

.foot-col a:hover {
  color: #fff
}

.foot-bot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 30px;
  color: rgba(255, 255, 255, .3);
  font-size: 12.5px
}

.foot-bot a {
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .3s
}

.foot-bot a:hover {
  color: rgba(255, 255, 255, .7)
}

.foot-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.reveal.d1 {
  transition-delay: .08s
}

.reveal.d2 {
  transition-delay: .16s
}

.reveal.d3 {
  transition-delay: .24s
}

.reveal.d4 {
  transition-delay: .32s
}

.reveal.d5 {
  transition-delay: .40s
}

/* ---------- responsivo ---------- */
@media(max-width:1024px) {
  .nav-links {
    gap: 16px
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .burger {
    display: flex
  }

  .sec-head {
    text-align: left
  }

  .tele-grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .mobile-menu {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: .35s var(--ease);
    z-index: 55;
    padding: 24px var(--pad)
  }

  .mobile-menu.show {
    transform: none;
    opacity: 1;
    pointer-events: auto
  }

  .mobile-menu a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--hairline);
    color: var(--ink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
  }

  /* FIX: forçar cores corretas no botão do mobile menu */
  .mobile-menu a.btn.btn-primary {
    background: var(--ink) !important;
    color: #fff !important;
    border-color: var(--ink) !important;
    border-bottom: none;
    padding: 14px 24px;
    margin-top: 16px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .mobile-menu a.btn.wpp-btn:hover {
    background: transparent !important;
    border-color: var(--ink) !important;
    color: var(--ink) !important;
  }
}

@media(max-width:480px) {
  .areas-grid {
    grid-template-columns: 1fr
  }

  .rev-card {
    width: 290px
  }

  .area {
    min-width: 100%;
  }
}

@media(min-width:769px) {
  .mobile-menu {
    display: none
  }
}



/* PATCH LCP 01 - Hero visível imediatamente */
#topo .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  transition-delay: 0s !important;
}

/* PATCH LCP 02 - Teste: reduzir custo dos orbs no mobile */
@media (max-width: 768px) {
  #topo .orb {
    filter: none !important;
    mix-blend-mode: normal !important;
    animation: none !important;
  }

  #topo .orb-layer {
    will-change: auto !important;
    transform: none !important;
  }
}