/* ===== Attus Comunicação — Redesign ===== */
:root {
  --roxo: #141020;       /* detalhes/ícones pretos (antes roxo) */
  --roxo-claro: #A886CD;
  --preto: #141020;
  --verde: #1FA971;      /* reservado à Attus Imob */
  --verde-claro: #22B368; /* reservado à Attus Imob */
  --rosa: #6E3AD6;       /* roxo de destaque (só em detalhes) */
  --grad: linear-gradient(120deg, #141020 0%, #2C2145 100%);
  --grad-verde: linear-gradient(120deg, #159A52 0%, #22B368 100%); /* Attus Imob */
  --grad-suave: linear-gradient(135deg, #F3F1EC 0%, #ECE8E1 100%);
  --lavanda: #FAF8F4;    /* off-white quente neutro */
  --lavanda-2: #FFFFFF;  /* branco puro */
  --tinta: #17141F;
  --tinta-suave: #58555F;
  --branco: #ffffff;
  --cinza-bg: #F3F1EC;
  --borda: #E7E3DB;
  --sombra: 0 18px 50px rgba(20, 16, 32, 0.10);
  --sombra-sm: 0 8px 24px rgba(20, 16, 32, 0.06);
  --raio: 18px;
  --raio-sm: 12px;
  --container: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--tinta);
  background: var(--lavanda);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.grad-text {
  background: linear-gradient(120deg, #6E3AD6 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(109, 52, 201, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(109, 52, 201, 0.45); }
.btn-ghost {
  background: rgba(255,255,255,.7);
  color: var(--roxo);
  border: 1.5px solid var(--borda);
}
.btn-ghost:hover { background: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ===== Marquee (banner passando) ===== */
.marquee {
  background: var(--tinta);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.marquee-track span::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--roxo-claro);
  display: inline-block;
}
.marquee-track span.hl { color: #C9A9FF; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* marquee claro dentro de seção */
.marquee.claro { background: var(--grad); }
.marquee.claro .marquee-track span { -webkit-text-fill-color: #fff; }
.marquee.claro .marquee-track span::after { background: #fff; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--borda);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.5px;
}
.logo span { color: var(--rosa); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--tinta-suave);
  transition: color .25s ease;
  position: relative;
}
.nav-links a:not(.tag-imob)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--rosa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:not(.tag-imob):hover::after,
.nav-links a.ativo:not(.tag-imob)::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.ativo { color: var(--roxo); }
.nav-links a.tag-imob {
  background: var(--grad);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-links a.tag-imob:hover { color: #fff; transform: translateY(-1px); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 26px; height: 3px; background: var(--roxo); border-radius: 3px; transition: .3s;
}

/* ===== Hero ===== */
.hero {
  background: var(--grad-suave);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(109, 52, 201,.22), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -180px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(123,75,201,.18), transparent 70%);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
/* entrada do hero no load */
.hero-inner > * {
  opacity: 0;
  animation: heroIn .9s cubic-bezier(.16,.8,.24,1) forwards;
}
.hero-inner > *:nth-child(1) { animation-delay: .05s; }
.hero-inner > *:nth-child(2) { animation-delay: .16s; }
.hero-inner > *:nth-child(3) { animation-delay: .27s; }
.hero-inner > *:nth-child(4) { animation-delay: .38s; }
.hero-inner > *:nth-child(5) { animation-delay: .49s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-inner > * { animation: none; opacity: 1; transform: none; }
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--borda);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--roxo);
  margin-bottom: 24px;
  box-shadow: none;
}
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rosa); }
.hero h1 {
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--tinta-suave);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Faixa de logos / stats ===== */
.stats {
  padding: 64px 0;
  background: transparent;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat h3 {
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 8px;
}
.stat p { color: var(--tinta-suave); font-size: 15px; font-weight: 500; }

/* ===== Seções gerais ===== */
.section { padding: 90px 0; }
.section.alt { background: var(--branco); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--rosa);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-head p { color: var(--tinta-suave); font-size: 17px; }

/* ===== Serviços ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 30px 28px;
  transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.card:hover { border-color: var(--rosa); transform: translateY(-4px); box-shadow: var(--sombra-sm); }
.card .ico svg, .card:hover .ico svg { transition: stroke .35s ease; }
.card:hover .ico svg { stroke: var(--rosa); }
.card .ico {
  width: auto; height: auto;
  background: none; border: none;
  margin-bottom: 22px;
}
.card .ico svg { width: 32px; height: 32px; stroke: var(--preto); stroke-width: 1.6; fill: none; }
.card h3 { font-size: 21px; font-weight: 700; letter-spacing: -.3px; margin-bottom: 10px; }
.card p { color: var(--tinta-suave); font-size: 15px; }

/* ===== Cases ===== */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  overflow: hidden;
  padding: 30px 28px;
  transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.case:hover { border-color: var(--rosa); transform: translateY(-4px); box-shadow: var(--sombra-sm); }
.case-top {
  height: auto;
  background: none;
  color: var(--rosa);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  display: block;
}
.case-body { padding: 0; }
.case-body .kpi {
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: .95;
  margin-bottom: 14px;
}
.case-body h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.case-body p { color: var(--tinta-suave); font-size: 14px; }

/* ===== Depoimentos ===== */
.depos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depo {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 30px 28px;
  transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.depo:hover { border-color: var(--rosa); transform: translateY(-4px); box-shadow: var(--sombra-sm); }
.depo .quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.45;
  color: var(--tinta);
  margin-bottom: 24px;
}
.depo .autor { display: flex; align-items: center; gap: 12px; }
.depo .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  color: #fff; font-weight: 700;
}
.depo .autor strong { display: block; font-size: 15px; }
.depo .autor span { font-size: 13px; color: var(--tinta-suave); }

/* ===== CTA final ===== */
.cta-final {
  background: var(--grad);
  color: #fff;
  padding: 96px 0;
}
.cta-box {
  padding: 0;
  text-align: center;
  color: #fff;
  position: relative;
}
.cta-box h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; letter-spacing: -1px; }
.cta-box p { font-size: 18px; opacity: .9; max-width: 540px; margin: 0 auto 30px; }
.cta-box .btn-primary { background: #fff; color: var(--roxo); box-shadow: none; }
.cta-box .btn-primary:hover { background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.25); }

/* ===== Footer ===== */
.footer {
  background: #14101A;
  color: #C9BFD6;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer p { font-size: 14px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: 14px; transition: color .2s; overflow-wrap: anywhere; }
.footer-grid > div { min-width: 0; }
.split > * { min-width: 0; }
.footer ul a:hover { color: var(--rosa); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #8A7F97;
}

/* ===== Attus Imob — página ===== */
.imob-hero {
  background: var(--grad);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.imob-hero::after {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  border-radius: 50%;
}
.imob-hero .badge { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: #fff; }
.imob-hero .badge .dot { background: #fff; }
.imob-hero-inner { max-width: 720px; position: relative; z-index: 2; }
.imob-hero h1 { font-size: clamp(38px, 6vw, 58px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 22px; }
.imob-hero p { font-size: 20px; opacity: .95; margin-bottom: 32px; max-width: 600px; }
.imob-hero .btn-primary { background: #fff; color: var(--roxo); }
.imob-hero .btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }

/* fluxo / como funciona */
.fluxo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: passo;
}
.passo {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
  transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.passo:hover { border-color: var(--rosa); transform: translateY(-4px); box-shadow: var(--sombra-sm); }
.passo .num {
  width: auto; height: auto; border-radius: 0;
  background: none;
  color: var(--tinta);
  font-weight: 800; font-size: 44px; letter-spacing: -2px; line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.passo h3 { font-size: 18px; margin-bottom: 8px; }
.passo p { font-size: 14px; color: var(--tinta-suave); }

/* features imob */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat {
  padding: 28px 26px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--borda);
  transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.feat:hover { border-color: var(--rosa); transform: translateY(-4px); box-shadow: var(--sombra-sm); }
.feat .ico { font-size: 32px; margin-bottom: 16px; }
.feat h3 { font-size: 18px; margin-bottom: 8px; }
.feat p { font-size: 14px; color: var(--tinta-suave); }

/* mockup dashboard */
.mock {
  background: var(--grad-suave);
  border: 1px solid var(--borda);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--sombra);
}
.mock-bar { display: flex; gap: 7px; padding: 0 6px 14px; }
.mock-bar i { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.mock-bar i:nth-child(1){ background:#FF5F57 } .mock-bar i:nth-child(2){ background:#FEBC2E } .mock-bar i:nth-child(3){ background:#28C840 }
.mock-screen { background: #fff; border-radius: 14px; padding: 22px; }
.mock-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 16px; }
.mock-kpi { background: var(--cinza-bg); border-radius: 12px; padding: 16px; min-width: 0; }
.mock-kpi span { font-size: 12px; color: var(--tinta-suave); overflow-wrap: anywhere; }
.mock-kpi strong { display:block; font-size: 24px; margin-top: 4px; }
.mock-chart { height: 140px; border-radius: 12px; background: linear-gradient(180deg, rgba(109, 52, 201,.12), rgba(123,75,201,.04)); display: grid; place-items: center; color: var(--tinta-suave); font-size: 14px; }

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

/* ===== Quem Somos ===== */
.quem .quem-foto { position: relative; }
.quem .quem-foto img {
  width: 100%; height: 100%; max-height: 520px; object-fit: cover;
  border-radius: 6px; border: none; box-shadow: none;
}
.quem .quem-selo {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(255,255,255,.92); color: var(--preto); font-weight: 700; font-size: 13px;
  padding: 9px 16px; border-radius: 6px; box-shadow: none;
}
.quem h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 18px; }
.quem p { color: var(--tinta-suave); font-size: 17px; margin-bottom: 16px; }
.quem .assinatura { margin: 22px 0 26px; }
.quem .assinatura strong { display: block; font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 24px; }
.quem .assinatura span { font-size: 14px; color: var(--tinta-suave); }

/* ===== Reveal on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s cubic-bezier(.16,.8,.24,1), transform .9s cubic-bezier(.16,.8,.24,1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Hero claro (roxo clarinho) ===== */
.hero-dark {
  background: radial-gradient(120% 130% at 82% -10%, #FFFFFF 0%, #FBF9F5 52%, #F5F2EC 100%);
  color: var(--tinta);
  padding: 96px 0 108px;
  position: relative;
  overflow: hidden;
}
.hero-dark::before {
  content: '';
  position: absolute; top: -140px; right: -80px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(110,58,214,.10), transparent 68%);
  border-radius: 50%;
  filter: blur(10px);
}
.hero-dark::after {
  content: '';
  position: absolute; bottom: -160px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(110,58,214,.06), transparent 70%);
  border-radius: 50%;
}
.hero-dark .container { position: relative; z-index: 2; }
.hero-dark .grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.hero-center {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-dark .badge {
  background: #fff;
  border-color: var(--borda);
  color: var(--preto);
}
.hero-dark h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.3px;
  margin-bottom: 22px;
}
.hero-dark h1 .grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-dark p { font-size: clamp(16px, 2vw, 18px); color: var(--tinta-suave); max-width: 860px; margin-bottom: 32px; }
.hero-dark .btn-ghost { background: rgba(255,255,255,.7); color: var(--preto); border-color: var(--borda); }
.hero-dark .btn-ghost:hover { background: #fff; }

/* card flutuante no hero */
.hero-card {
  background: #fff;
  border: 1px solid var(--borda);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 20px 50px -30px rgba(26,19,48,.35);
}
.hero-card .hc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hero-card .hc-top span { font-size: 13px; color: var(--tinta-suave); }
.hero-card .hc-live { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: #159A52; font-weight: 600; }
.hero-card .hc-live i { width: 8px; height: 8px; border-radius: 50%; background: #22B368; display: inline-block; box-shadow: 0 0 0 0 rgba(53,208,127,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(53,208,127,.5)} 70%{box-shadow:0 0 0 10px rgba(53,208,127,0)} 100%{box-shadow:0 0 0 0 rgba(53,208,127,0)} }
.hero-card .hc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.hero-card .hc-kpi { background: var(--cinza-bg); border: 1px solid var(--borda); border-radius: 14px; padding: 16px; }
.hero-card .hc-kpi small { font-size: 12px; color: var(--tinta-suave); }
.hero-card .hc-kpi strong { display: block; font-size: 26px; margin-top: 4px; color: var(--tinta); }
.hero-card .hc-bar { height: 90px; border-radius: 14px; background: var(--cinza-bg); display: flex; align-items: flex-end; gap: 8px; padding: 12px; }
.hero-card .hc-bar b { flex: 1; background: linear-gradient(180deg,#2C2145,#141020); border-radius: 5px 5px 0 0; opacity: .9; transform: scaleY(0); transform-origin: bottom; transition: transform .8s cubic-bezier(.16,.8,.24,1); }
.reveal.visible .hc-bar b { transform: scaleY(1); }
.reveal.visible .hc-bar b:nth-child(1) { transition-delay: .30s; }
.reveal.visible .hc-bar b:nth-child(2) { transition-delay: .38s; }
.reveal.visible .hc-bar b:nth-child(3) { transition-delay: .46s; }
.reveal.visible .hc-bar b:nth-child(4) { transition-delay: .54s; }
.reveal.visible .hc-bar b:nth-child(5) { transition-delay: .62s; }
.reveal.visible .hc-bar b:nth-child(6) { transition-delay: .70s; }
@media (prefers-reduced-motion: reduce) {
  .hero-card .hc-bar b { transform: none; transition: none; }
}

/* ===== Seção escura genérica ===== */
.section.dark {
  background: radial-gradient(120% 120% at 20% 0%, #241653 0%, #160E38 55%, #120B2E 100%);
  color: #fff;
}
.section.dark .section-head h2 { color: #fff; }
.section.dark .section-head p { color: #C0B6D8; }
.section.dark .eyebrow { color: #FF8FD0; }

/* ===== Método numerado ===== */
.metodo { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.etapa {
  padding: 26px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--borda);
  position: relative;
  transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.etapa:hover { border-color: var(--rosa); transform: translateY(-4px); box-shadow: var(--sombra-sm); }
.etapa .passo-n {
  font-size: 44px; font-weight: 800; letter-spacing: -2px;
  color: var(--tinta);
  margin-bottom: 16px; display: block; line-height: 1;
}
.etapa h3 { font-size: 19px; margin-bottom: 8px; }
.etapa p { font-size: 14px; color: var(--tinta-suave); }

/* ===== Feature split (Político / Imobiliário) ===== */
.feat-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding: 44px; border-radius: 20px; background: #fff; border: 1px solid var(--borda);
  box-shadow: none; margin-bottom: 24px;
  transition: border-color .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.feat-block:hover { border-color: var(--borda); transform: none; box-shadow: var(--sombra-sm); }
.feat-block.inv .fb-visual { order: -1; }
.fb-visual {
  border-radius: 14px; min-height: 240px;
  background: var(--cinza-bg);
  display: grid; place-items: center;
  border: 1px solid var(--borda);
}
.fb-visual svg {
  width: 140px; height: 140px;
  color: var(--tinta); opacity: .9;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.feat-block:hover .fb-visual svg { transform: translateY(-6px) scale(1.03); }
.feat-block h3 { font-size: 26px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 12px; }
.feat-block .tag { display:inline-block; font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--rosa); margin-bottom:12px; }
.feat-block p { color: var(--tinta-suave); font-size: 16px; margin-bottom: 18px; }
.feat-block ul { list-style: none; }
.feat-block ul li { padding: 6px 0 6px 26px; position: relative; font-size: 15px; }
.feat-block ul li::before { content: '✓'; position: absolute; left: 0; color: var(--roxo); font-weight: 800; }
.feat-block .mini-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--tinta); margin: 4px 0 10px; }

/* ===== Parcerias / selos ===== */
.parcerias { text-align: center; }
.parcerias .selos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 8px; }
.selo {
  display: inline-flex; align-items: center; gap: 10px;
  background: none; border: 1.5px solid var(--borda); border-radius: 999px;
  padding: 11px 22px; font-weight: 600; font-size: 15px; box-shadow: none;
}
.selo .pt { width: 10px; height: 10px; border-radius: 50%; }

/* ===== Showcase Attus Imob (estilo editorial, numerado) ===== */
.serif { font-family: 'Fraunces', Georgia, serif; font-style: italic; }
.showcase {
  background: radial-gradient(120% 120% at 85% -10%, #1E1533 0%, #141020 55%, #0E0A1A 100%);
  color: #fff;
  padding: 96px 0;
}
.showcase .sc-intro { max-width: 720px; margin-bottom: 56px; }
.showcase .eyebrow-imob {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--verde-claro); margin-bottom: 18px;
}
.showcase .eyebrow-imob i { width: 8px; height: 8px; border-radius: 50%; background: var(--verde-claro); }
.showcase .sc-intro h2 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin-bottom: 18px; }
.showcase .sc-intro h2 em { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 500; color: var(--verde-claro); }
.showcase .sc-intro p { font-size: 17px; color: #B9B0CF; }

.sc-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-auto-rows: minmax(160px, auto); gap: 18px; }
.sc-item {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  transition: border-color .3s ease, transform .3s ease;
}
.sc-item:hover { border-color: rgba(34,179,104,.6); transform: translateY(-4px); }
.sc-item .sc-num { font-size: 13px; font-weight: 700; letter-spacing: 2px; color: var(--verde-claro); }
.sc-item .sc-cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #8A80A6; margin-top: 22px; }
.sc-item .sc-name { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 500; font-size: clamp(30px, 3.6vw, 44px); line-height: 1.05; margin: 6px 0 14px; }
.sc-item p { font-size: 14px; color: #B0A7C6; max-width: 320px; }
.sc-item.flag {
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(31,169,113,.14), rgba(255,255,255,.02));
  border-color: rgba(34,179,104,.35);
  display: flex; flex-direction: column; justify-content: space-between;
}
.sc-item.flag .sc-mock {
  margin-top: 22px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1); background: #0C0916;
}
.sc-mock .m-bar { display: flex; gap: 6px; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,.06); }
.sc-mock .m-bar i { width: 10px; height: 10px; border-radius: 50%; }
.sc-mock .m-bar i:nth-child(1){background:#FF5F57} .sc-mock .m-bar i:nth-child(2){background:#FEBC2E} .sc-mock .m-bar i:nth-child(3){background:#28C840}
.sc-mock .m-body { padding: 16px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.sc-mock .m-kpi { background: rgba(255,255,255,.04); border-radius: 10px; padding: 12px; }
.sc-mock .m-kpi small { font-size: 11px; color: #8A80A6; }
.sc-mock .m-kpi strong { display: block; font-size: 20px; margin-top: 2px; color: #fff; }
.sc-mock .m-kpi strong.g { color: var(--verde-claro); }
.showcase .sc-cta { margin-top: 40px; }
.showcase .btn-imob {
  background: var(--grad-verde); color: #fff;
  box-shadow: 0 10px 30px rgba(31,169,113,.35);
}
.showcase .btn-imob:hover { transform: translateY(-2px); }

/* tag Imob no menu vira verde */
.nav-links a.tag-imob { background: var(--grad-verde); }
.nav-links a.tag-imob:hover { color: #fff; }

/* ===== Blog ===== */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post {
  background: transparent; border: none; border-radius: 0;
  overflow: visible; transition: none;
}
.post .post-cover { height: 260px; border-radius: 10px; background: var(--grad); overflow: hidden; position: relative; }
.post .post-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post:hover .post-cover img { transform: scale(1.05); }
.post .post-body { padding: 22px 0 0; }
.post .post-cat { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rosa); }
.post h3 { font-size: 21px; font-weight: 700; letter-spacing: -.3px; margin: 10px 0; line-height: 1.25; }
.post p { font-size: 14px; color: var(--tinta-suave); margin-bottom: 14px; }
.post .ler { font-size: 14px; font-weight: 600; color: var(--preto); display: inline-block; }
.post:hover .ler { text-decoration: underline; }
.post:hover h3 { color: var(--rosa); }

/* ===== Página interna (hero compacto) ===== */
.page-hero {
  background: radial-gradient(120% 130% at 82% -20%, #FFFFFF 0%, #FBF9F5 52%, #F5F2EC 100%);
  padding: 70px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--borda);
}
.page-hero .eyebrow { color: var(--rosa); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 16px; }
.page-hero p { max-width: 620px; margin: 0 auto; color: var(--tinta-suave); font-size: clamp(16px,2vw,19px); }
.breadcrumb { font-size: 13px; color: var(--tinta-suave); margin-bottom: 18px; }
.breadcrumb a { font-weight: 600; }

/* ===== Artigo ===== */
.artigo { max-width: 760px; margin: 0 auto; }
.artigo .capa { border-radius: 8px; overflow: hidden; border: none; box-shadow: none; margin-bottom: 36px; }
.artigo .capa img { width: 100%; display: block; }
.artigo h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -.5px; margin: 34px 0 14px; }
.artigo p { font-size: 17px; color: var(--tinta); margin-bottom: 18px; line-height: 1.75; }
.artigo ul { margin: 0 0 18px 0; padding-left: 22px; }
.artigo ul li { font-size: 17px; margin-bottom: 10px; }
.artigo .meta { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--tinta-suave); margin-bottom: 8px; }
.artigo .meta .tag { font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--rosa); font-size: 12px; }

/* ===== Contato ===== */
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.form-card { background: none; border: none; border-top: 1.5px solid var(--tinta); border-radius: 0; padding: 28px 0 0; box-shadow: none; }
.campo { margin-bottom: 18px; }
.campo label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.campo input, .campo textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--borda);
  font-family: inherit; font-size: 15px; background: var(--cinza-bg); color: var(--tinta);
}
.campo input:focus, .campo textarea:focus { outline: none; border-color: var(--preto); }
.contato-info li { list-style: none; margin-bottom: 20px; }
.contato-info .rot { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--tinta-suave); font-weight: 700; }
.contato-info .val { font-size: 18px; font-weight: 600; }
.contato-info .quem-foto img { width: 100%; height: 340px; object-fit: cover; object-position: center 22%; border-radius: 6px; box-shadow: none; margin-bottom: 24px; }
.info-lista { display: grid; gap: 18px; }
.info-item { display: flex; flex-direction: column; gap: 3px; }
.info-item .info-lbl { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--tinta-suave); font-weight: 700; }
.info-item a, .info-item span:not(.info-lbl) { font-size: 17px; font-weight: 600; color: var(--tinta); }
.info-item a:hover { color: var(--preto); }

/* ===== Responsivo ===== */
@media (max-width: 960px) {
  .cards, .cases, .depos, .fluxo, .feat-grid, .metodo, .posts { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .split, .hero-dark .grid, .feat-block, .feat-block.inv, .contato-grid { grid-template-columns: 1fr; gap: 36px; }
  .feat-block.inv .fb-visual { order: 0; }
  .sc-grid { grid-template-columns: 1fr 1fr; }
  .sc-item.flag { grid-row: auto; grid-column: 1 / -1; }
  /* No mobile a foto aparece inteira, sem cortar as pessoas. */
  .quem .quem-foto img,
  .contato-info .quem-foto img {
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 74px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--borda);
    box-shadow: var(--sombra);
    transform: translateY(-140%);
    transition: transform .3s ease;
  }
  .nav-links.aberto { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 10px 0; font-size: 16px; }
  .nav-links a.tag-imob { display: inline-block; width: auto; padding: 8px 16px; }
  .menu-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 72px; }
}

@media (max-width: 480px) {
  .cards, .cases, .depos, .fluxo, .feat-grid, .metodo, .posts, .sc-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .cta-box { padding: 44px 24px; }
  .hero-actions .btn, .imob-hero .btn, .hero-dark .btn { width: 100%; justify-content: center; }
  .feat-block { padding: 26px; }
}

/* ============================================================
   TEMA DARK (todas as paginas menos a Attus Imob)
   Ativado por <body class="dark">. Roxo continua o destaque.
   ============================================================ */
body.dark {
  --lavanda: #0C0912;      /* fundo base quase preto arroxeado */
  --lavanda-2: #14101C;
  --branco: #120F1A;       /* section.alt */
  --cinza-bg: #1A1526;
  --borda: #2A2438;
  --tinta: #ECEAF3;        /* texto principal claro */
  --tinta-suave: #A29CB4;  /* texto secundario */
  --preto: #ECEAF3;        /* usado como cor de texto/icone -> vira claro */
  --roxo: #ECEAF3;
  --grad: linear-gradient(120deg, #6E3AD6 0%, #8B5CF6 100%); /* CTA em roxo */
  --sombra: 0 18px 50px rgba(0,0,0,.5);
  --sombra-sm: 0 10px 30px rgba(0,0,0,.4);
}

/* Header translucido escuro */
body.dark .header { background: rgba(14,11,20,.82); border-bottom-color: var(--borda); }

/* Menu mobile escuro */
body.dark .nav-links { }
@media (max-width: 720px) {
  body.dark .nav-links { background: #14101C; border-bottom-color: var(--borda); box-shadow: var(--sombra); }
}

/* Marquee de apoio: faixa roxa vibrante, porem discreta */
body.dark .marquee { background: linear-gradient(90deg, #6E3AD6 0%, #8B5CF6 50%, #6E3AD6 100%); padding: 8px 0; }
body.dark .marquee-track span { color: rgba(255,255,255,.82); font-size: 12px; letter-spacing: 1.2px; }
body.dark .marquee-track span.hl { color: #EBDDFF; }
body.dark .marquee-track span::after { background: rgba(255,255,255,.5); }

/* Heros claros -> escuros */
body.dark .hero-dark {
  background: radial-gradient(120% 130% at 80% -10%, #1B1330 0%, #130E24 52%, #0C0912 100%);
  color: var(--tinta);
}
body.dark .hero-dark::before { background: radial-gradient(circle, rgba(139,92,246,.18), transparent 68%); }
body.dark .hero-dark::after { background: radial-gradient(circle, rgba(139,92,246,.10), transparent 70%); }
body.dark .page-hero {
  background: radial-gradient(120% 130% at 82% -20%, #1B1330 0%, #130E24 52%, #0C0912 100%);
  border-bottom-color: var(--borda);
}

/* Badge e caixinhas */
body.dark .badge, body.dark .hero-dark .badge {
  background: rgba(255,255,255,.05);
  border-color: var(--borda);
  color: var(--tinta);
}
body.dark .card,
body.dark .case,
body.dark .depo,
body.dark .etapa,
body.dark .feat-block,
body.dark .hero-card {
  background: #14101C;
  border-color: var(--borda);
}
body.dark .fb-visual { background: #1A1526; border-color: var(--borda); }
body.dark .hero-card .hc-kpi { background: #1A1526; border-color: var(--borda); }

/* Ritmo de blocos: base bem escuro, .alt com um leve tom (sem linhas duras) */
body.dark .section.alt {
  background: #161120;
}
/* Legenda sobre foto: selo claro pede texto escuro mesmo no dark */
body.dark .quem-selo { color: #14101C; }
/* Cards dentro do bloco mais claro sobem de tom para continuar destacando */
body.dark .section.alt .card,
body.dark .section.alt .case,
body.dark .section.alt .depo,
body.dark .section.alt .etapa,
body.dark .section.alt .feat-block,
body.dark .section.alt .passo { background: #221B33; border-color: #322A45; }
body.dark .section.alt .fb-visual { background: #221B33; border-color: #322A45; }

/* Bloco claro isolado dentro do site escuro: respiro visual */
body.dark .section.light { background: #F6F4FA; }
body.dark .section.light .eyebrow { color: #6E3AD6; }
body.dark .section.light h2,
body.dark .section.light h3 { color: #14101C; }
body.dark .section.light p { color: #4A4458; }
body.dark .section.light h2 .grad-text {
  background: linear-gradient(120deg, #6E3AD6 0%, #8B5CF6 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
body.dark .section.light .etapa,
body.dark .section.light .card,
body.dark .section.light .feat-block,
body.dark .section.light .depo { background: #FFFFFF; border-color: #E7E2F0; }
body.dark .section.light .passo-n { color: #6E3AD6; }
/* Cards claros: icones, tags e textos secundarios legiveis */
body.dark .section.light .card .ico { background: #F1EDFA; border-color: #E7E2F0; color: #6E3AD6; }
body.dark .section.light .card .ico svg { stroke: #6E3AD6; }
body.dark .section.light .tag { background: #F1EDFA; color: #6E3AD6; }
body.dark .section.light .mini-eyebrow { color: #6E3AD6; }
body.dark .section.light .fb-visual { background: #F1EDFA; border-color: #E7E2F0; color: #6E3AD6; }
body.dark .section.light li { color: #4A4458; }
body.dark .section.light .quote { color: #14101C; }
body.dark .section.light .autor strong { color: #14101C; }
body.dark .section.light .autor span { color: #6B6579; }

/* Botao secundario (ghost) no escuro */
body.dark .btn-ghost,
body.dark .hero-dark .btn-ghost { background: rgba(255,255,255,.06); color: var(--tinta); border-color: var(--borda); }
body.dark .btn-ghost:hover,
body.dark .hero-dark .btn-ghost:hover { background: rgba(255,255,255,.12); }

/* CTA final: botao branco mantem texto escuro */
body.dark .cta-box .btn-primary { color: #14101C; }

/* Grad-text do hero volta a ser roxo vivo (nao o gradiente escuro) */
body.dark .hero-dark h1 .grad-text {
  background: linear-gradient(120deg, #8B5CF6 0%, #B794F6 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Selo com contorno claro */
body.dark .selo { border-color: var(--borda); }

/* Blog: capa mantem gradiente roxo */
body.dark .post .ler { color: var(--tinta); }

/* Botão flutuante de WhatsApp */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #6E3AD6 0%, #8B5CF6 100%);
  box-shadow: 0 10px 26px rgba(110, 58, 214, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 32px rgba(110, 58, 214, .55);
}
.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}
/* Na página Attus Imob o botão fica verde (verde é exclusivo do Imob) */
body.imob .wa-float {
  background: linear-gradient(135deg, #12B76A 0%, #25D366 100%);
  box-shadow: 0 10px 26px rgba(18, 183, 106, .45);
}
body.imob .wa-float:hover {
  box-shadow: 0 14px 32px rgba(18, 183, 106, .55);
}
@media (max-width: 520px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 29px; height: 29px; }
}

/* ==========================================================================
   Attus Imob — identidade verde (escopo body.imob)
   ========================================================================== */
.imob .logo .im { color: var(--verde); font-weight: 700; }
.imob .grad-text { background: var(--grad-verde); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.imob .eyebrow { color: var(--verde); }
.imob .btn-primary { background: var(--grad-verde); box-shadow: 0 8px 24px rgba(31,169,113,.35); }
.imob .imob-hero { background: radial-gradient(120% 130% at 80% -10%, #1F8F5E 0%, #146E48 45%, #0E5236 100%); }
.imob .imob-hero-inner { max-width: 1000px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.imob .imob-hero h1 { font-size: clamp(32px,4.6vw,54px); line-height: 1.12; letter-spacing: -1.3px; max-width: 900px; }
.imob .imob-hero p { margin-left: auto; margin-right: auto; }
.imob .imob-hero .hero-actions { justify-content: center; }
.imob .passo .num, .imob .feat .ico { color: var(--verde); }
.imob .card:hover, .imob .feat:hover { box-shadow: 0 12px 40px rgba(31,169,113,.16); }
.imob .cta-box { background: var(--grad-verde); }
.imob .av { background: var(--grad-verde); }
.imob .faixa { background: var(--grad-verde); color: #fff; text-align: center; }
.imob .faixa h2 { color: #fff; font-size: clamp(24px,3.4vw,34px); font-weight: 800; letter-spacing: -.6px; margin-bottom: 14px; }
.imob .faixa p { color: rgba(255,255,255,.92); font-size: 17px; max-width: 720px; margin: 0 auto; }
.imob .check-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 28px; margin-top: 10px; }
.imob .check-grid li { list-style: none; padding-left: 26px; position: relative; font-size: 15px; font-weight: 500; }
.imob .check-grid li::before { content: '✔'; position: absolute; left: 0; color: var(--verde); font-weight: 800; }
