@charset "UTF-8";
/* ============================================================
   Espaço Interdisciplinar Somos — Design System
   Paleta: roxo, lilás, amarelo, azul (identidade do logo)
   ============================================================ */

:root {
  --roxo-950: #2a1245;
  --roxo-900: #3b1e63;
  --roxo-700: #5b2d8f;
  --roxo-500: #7c3fad;
  --roxo-400: #9a5fc9;
  --lilas-300: #c9b3e6;
  --lilas-100: #ede5f8;
  --lavanda-50: #f8f5fd;
  --amarelo-400: #f7c948;
  --amarelo-300: #ffd970;
  --azul-400: #5db6cf;
  --azul-300: #8fd0e2;
  --verde-wa: #25d366;
  --verde-wa-dark: #1eae55;
  --ink: #2d2440;
  --ink-soft: #5d5375;
  --branco: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 10px 40px rgba(59, 30, 99, 0.10);
  --shadow-hover: 0 18px 60px rgba(59, 30, 99, 0.18);
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--branco);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--roxo-900); }

.grad-text {
  background: linear-gradient(100deg, var(--roxo-500) 10%, var(--azul-400) 55%, var(--amarelo-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 1rem; font-family: var(--font-display);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(120deg, var(--roxo-500), var(--roxo-700));
  color: #fff; box-shadow: 0 10px 30px rgba(124, 63, 173, .35);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(124, 63, 173, .45); }
.btn-wa {
  background: var(--verde-wa); color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
}
.btn-wa:hover { background: var(--verde-wa-dark); }
.btn-ghost {
  background: rgba(255,255,255,.14); color: #fff;
  border: 1.5px solid rgba(255,255,255,.45); backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.24); }
.btn-outline {
  border: 2px solid var(--roxo-500); color: var(--roxo-700);
}
.btn-outline:hover { background: var(--lilas-100); }
.btn svg { flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124,63,173,.10);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 30px rgba(59,30,99,.10); }
.header-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.logo img { height: 48px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; color: var(--ink);
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover, .nav-link.active { background: var(--lilas-100); color: var(--roxo-700); }
.nav-link .caret { transition: transform .25s ease; }
li.has-mega:hover .caret, li.has-mega.open .caret { transform: rotate(180deg); }

/* ---------- Mega-menu ---------- */
.mega {
  position: fixed; left: 0; right: 0; top: var(--header-h);
  background: #fff;
  border-bottom: 1px solid rgba(124,63,173,.12);
  box-shadow: 0 30px 60px rgba(59,30,99,.16);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
li.has-mega:hover .mega, li.has-mega.open .mega,
li.has-mega:focus-within .mega {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-inner {
  display: grid; grid-template-columns: 1.1fr 1.1fr 1.1fr 1.3fr;
  gap: 34px; padding: 38px 0 42px;
}
.mega-col h4 {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.mega-col h4 .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot-roxo { background: var(--roxo-500); }
.dot-azul { background: var(--azul-400); }
.dot-amarelo { background: var(--amarelo-400); }
.mega-col ul { display: grid; gap: 2px; }
.mega-link {
  display: block; padding: 9px 12px; border-radius: 12px;
  font-size: .95rem; font-weight: 500; color: var(--ink);
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.mega-link:hover { background: var(--lilas-100); color: var(--roxo-700); padding-left: 18px; }
.mega-link small { display: block; font-size: .78rem; color: var(--ink-soft); font-weight: 400; }
.mega-feature {
  border-radius: var(--radius-md);
  background: linear-gradient(140deg, var(--roxo-700), var(--roxo-500) 60%, var(--azul-400) 130%);
  color: #fff; padding: 26px; display: flex; flex-direction: column; gap: 10px; align-self: start;
}
.mega-feature h4 { color: #fff; font-size: 1.05rem; letter-spacing: 0; text-transform: none; margin: 0; }
.mega-feature p { font-size: .88rem; color: rgba(255,255,255,.85); }
.mega-feature .btn { padding: 11px 20px; font-size: .88rem; margin-top: 6px; align-self: flex-start; }

/* ---------- Mobile nav ---------- */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--roxo-700); transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 90px;
  background: linear-gradient(165deg, var(--lavanda-50) 0%, var(--lilas-100) 100%);
  overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: .45; pointer-events: none;
  animation: floaty 14s ease-in-out infinite alternate;
}
.blob-1 { width: 460px; height: 460px; background: var(--roxo-400); top: -140px; right: -100px; }
.blob-2 { width: 380px; height: 380px; background: var(--azul-300); bottom: -120px; left: -110px; animation-delay: -4s; }
.blob-3 { width: 300px; height: 300px; background: var(--amarelo-300); top: 40%; left: 42%; opacity: .35; animation-delay: -8s; }
@keyframes floaty {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -30px) scale(1.12); }
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--lilas-300);
  padding: 8px 18px; border-radius: 999px;
  font-weight: 600; font-size: .85rem; color: var(--roxo-700);
  box-shadow: var(--shadow-soft); margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; margin-bottom: 20px; }
.hero p.lead { font-size: 1.13rem; color: var(--ink-soft); max-width: 54ch; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.stat b {
  display: block; font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 800; color: var(--roxo-700);
}
.stat span { font-size: .85rem; color: var(--ink-soft); }

.hero-media { position: relative; }
.hero-media .photo {
  width: 100%; aspect-ratio: 5/4.4; object-fit: cover;
  border-radius: 44% 56% 52% 48% / 46% 44% 56% 54%;
  box-shadow: var(--shadow-hover);
  animation: morph 16s ease-in-out infinite alternate;
}
@keyframes morph {
  0%   { border-radius: 44% 56% 52% 48% / 46% 44% 56% 54%; }
  50%  { border-radius: 56% 44% 46% 54% / 52% 56% 44% 48%; }
  100% { border-radius: 48% 52% 58% 42% / 44% 52% 48% 56%; }
}
.float-card {
  position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-radius: 16px; box-shadow: var(--shadow-soft);
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
  font-size: .85rem; font-weight: 600; color: var(--roxo-900);
  animation: bob 6s ease-in-out infinite;
}
.float-card .emoji { font-size: 1.4rem; }
.fc-1 { top: 8%; left: -6%; }
.fc-2 { bottom: 10%; right: -4%; animation-delay: -3s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--roxo-900); color: #fff;
  padding: 16px 0; overflow: hidden; white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 40px; animation: scrollx 40s linear infinite; }
.marquee span { font-family: var(--font-display); font-weight: 600; font-size: .95rem; opacity: .9; }
.marquee i { color: var(--amarelo-400); font-style: normal; margin-right: 40px; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Seções ---------- */
.section { padding: 92px 0; }
.section-alt { background: var(--lavanda-50); }
.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head .kicker {
  display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--roxo-500);
  background: var(--lilas-100); padding: 7px 16px; border-radius: 999px; margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Filtros + grid de especialidades ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 42px; }
.chip {
  padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: .88rem;
  background: #fff; color: var(--ink-soft); border: 1.5px solid var(--lilas-300);
  transition: all .22s ease;
}
.chip:hover { border-color: var(--roxo-500); color: var(--roxo-700); }
.chip.active {
  background: linear-gradient(120deg, var(--roxo-500), var(--roxo-700));
  color: #fff; border-color: transparent;
  box-shadow: 0 8px 24px rgba(124,63,173,.32);
}

.esp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.esp-card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  background: #fff; border-radius: var(--radius-md); padding: 28px 24px;
  border: 1px solid rgba(124,63,173,.10);
  box-shadow: 0 4px 18px rgba(59,30,99,.06);
  transition: transform .3s ease, box-shadow .3s ease, opacity .35s ease, scale .35s ease;
  overflow: hidden;
}
.esp-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--roxo-500), var(--azul-400), var(--amarelo-400));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.esp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.esp-card:hover::before { transform: scaleX(1); }
.esp-card.hidden { display: none; }
.esp-icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  font-size: 1.5rem; background: var(--lilas-100);
}
.esp-card h3 { font-size: 1.06rem; font-weight: 700; }
.esp-card p { font-size: .88rem; color: var(--ink-soft); flex: 1; }
.esp-card .tag {
  align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 999px; background: var(--lilas-100); color: var(--roxo-700);
}
.esp-card .link {
  font-weight: 700; font-size: .9rem; color: var(--roxo-500);
  display: inline-flex; align-items: center; gap: 6px;
}
.esp-card .link::after { content: "\2192"; transition: transform .25s ease; }
.esp-card:hover .link::after { transform: translateX(5px); }

/* ---------- Split (sobre) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .photo-wrap { position: relative; }
.split .photo-wrap img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3.4; object-fit: cover; width: 100%;
}
.photo-wrap .accent {
  position: absolute; inset: auto -22px -22px auto; width: 58%; height: 58%;
  border-radius: var(--radius-lg); z-index: -1;
  background: linear-gradient(140deg, var(--amarelo-300), var(--azul-300));
}
.split h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 18px; }
.split p { color: var(--ink-soft); margin-bottom: 16px; }
.check-list { display: grid; gap: 12px; margin: 22px 0 30px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.check-list .ck {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; color: #fff; font-weight: 800;
  background: linear-gradient(130deg, var(--roxo-500), var(--azul-400)); margin-top: 2px;
}

/* ---------- Seção escura / diferenciais ---------- */
.dark-section {
  background: radial-gradient(1000px 500px at 85% -10%, rgba(124,63,173,.55), transparent 60%),
              radial-gradient(700px 420px at 8% 110%, rgba(93,182,207,.35), transparent 60%),
              var(--roxo-950);
  color: #fff;
}
.dark-section .section-head h2, .dark-section h3 { color: #fff; }
.dark-section .section-head p { color: rgba(255,255,255,.75); }
.dark-section .kicker { background: rgba(255,255,255,.12); color: var(--amarelo-300); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.diff-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md); padding: 30px 26px;
  backdrop-filter: blur(6px);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.diff-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.10); border-color: rgba(255,215,112,.5); }
.diff-card .emoji { font-size: 2rem; margin-bottom: 14px; display: block; }
.diff-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.diff-card p { font-size: .92rem; color: rgba(255,255,255,.78); }

/* ---------- Depoimentos ---------- */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.testi-card {
  background: #fff; border-radius: var(--radius-md); padding: 32px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(124,63,173,.08);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.stars { color: var(--amarelo-400); letter-spacing: 3px; font-size: 1.05rem; }
.testi-card blockquote { font-size: 1rem; color: var(--ink); font-style: italic; }
.testi-card cite { font-style: normal; font-weight: 700; color: var(--roxo-700); font-size: .9rem; }
.testi-card cite span { display: block; font-weight: 400; color: var(--ink-soft); font-size: .8rem; }

/* ---------- CTA final ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--roxo-700) 0%, var(--roxo-500) 55%, var(--azul-400) 130%);
  border-radius: var(--radius-lg); color: #fff;
  padding: 70px 8%; text-align: center;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(50px); opacity: .4;
}
.cta-band::before { width: 300px; height: 300px; background: var(--amarelo-400); top: -120px; right: -60px; }
.cta-band::after { width: 260px; height: 260px; background: var(--azul-300); bottom: -110px; left: -50px; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 60ch; margin: 0 auto 30px; position: relative; z-index: 1; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Página de especialidade ---------- */
.svc-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 70px;
  background: linear-gradient(160deg, var(--roxo-900) 0%, var(--roxo-700) 70%, var(--roxo-500) 110%);
  color: #fff;
}
.svc-hero .blob-1 { opacity: .3; }
.svc-hero .blob-2 { background: var(--amarelo-300); opacity: .22; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: .84rem; color: rgba(255,255,255,.75); margin-bottom: 26px; position: relative; z-index: 2;
}
.breadcrumb a:hover { color: var(--amarelo-300); }
.breadcrumb .sep { opacity: .5; }
.svc-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; }
.svc-hero .tagline {
  display: inline-flex; gap: 8px; align-items: center;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  padding: 7px 16px; border-radius: 999px; font-size: .82rem; font-weight: 600; margin-bottom: 20px;
}
.svc-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; margin-bottom: 18px; }
.svc-hero p.lead { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 56ch; margin-bottom: 30px; }
.svc-hero .icon-bubble {
  width: min(240px, 60%); aspect-ratio: 1; margin-inline: auto;
  display: grid; place-items: center; font-size: 5rem;
  background: rgba(255,255,255,.10); border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 44% 56% 52% 48% / 46% 44% 56% 54%;
  animation: morph 14s ease-in-out infinite alternate;
  backdrop-filter: blur(4px);
}

.svc-body { display: grid; grid-template-columns: 1.6fr .9fr; gap: 54px; align-items: start; }
.svc-content h2 { font-size: 1.6rem; margin: 38px 0 14px; }
.svc-content h2:first-child { margin-top: 0; }
.svc-content p { color: var(--ink-soft); margin-bottom: 14px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.benefit {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--lavanda-50); border: 1px solid var(--lilas-100);
  padding: 16px 18px; border-radius: 14px; font-size: .93rem; font-weight: 500;
}
.benefit .ck {
  flex: none; width: 24px; height: 24px; border-radius: 50%; margin-top: 1px;
  display: grid; place-items: center; font-size: .72rem; color: #fff; font-weight: 800;
  background: linear-gradient(130deg, var(--roxo-500), var(--azul-400));
}

.svc-aside { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 20px; }
.aside-card {
  background: #fff; border: 1px solid rgba(124,63,173,.12);
  border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-soft);
}
.aside-card.grad {
  background: linear-gradient(150deg, var(--roxo-700), var(--roxo-500));
  color: #fff; border: none;
}
.aside-card.grad h3 { color: #fff; }
.aside-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.aside-card p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 16px; }
.aside-card.grad p { color: rgba(255,255,255,.85); }
.aside-card .btn { width: 100%; justify-content: center; padding: 13px 20px; font-size: .92rem; }
.aside-info { display: grid; gap: 10px; font-size: .88rem; color: var(--ink-soft); }
.aside-info b { color: var(--roxo-900); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; margin-top: 10px; }
.faq-item {
  background: #fff; border: 1px solid rgba(124,63,173,.12);
  border-radius: 14px; overflow: hidden; transition: box-shadow .25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-soft); }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 18px 22px; font-weight: 600; cursor: pointer; color: var(--roxo-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "\002B"; font-size: 1.4rem; color: var(--roxo-500); transition: transform .3s ease; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--ink-soft); font-size: .95rem; }

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

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-card {
  background: #fff; border-radius: var(--radius-md); padding: 34px;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(124,63,173,.1);
  display: grid; gap: 20px;
}
.contact-line { display: flex; gap: 16px; align-items: flex-start; }
.contact-line .ico {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.3rem; background: var(--lilas-100);
}
.contact-line b { display: block; color: var(--roxo-900); font-family: var(--font-display); font-size: .95rem; }
.contact-line span, .contact-line a { color: var(--ink-soft); font-size: .92rem; }
.contact-line a:hover { color: var(--roxo-500); }
.map-frame {
  width: 100%; aspect-ratio: 4/3.2; border: 0;
  border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--roxo-950); color: rgba(255,255,255,.8); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-grid ul { display: grid; gap: 9px; font-size: .9rem; }
.footer-grid a:hover { color: var(--amarelo-300); }
.footer-logo {
  background: #fff; border-radius: 14px; padding: 10px 14px; display: inline-block; margin-bottom: 16px;
}
.footer-logo img { height: 44px; }
.footer-about p { font-size: .9rem; max-width: 34ch; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  transition: background .25s ease, transform .25s ease;
}
.social-row a:hover { background: var(--roxo-500); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0; font-size: .78rem; color: rgba(255,255,255,.55);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--verde-wa); display: grid; place-items: center;
  box-shadow: 0 12px 34px rgba(37, 211, 102, .5);
  transition: transform .25s ease;
  animation: pulse-wa 2.6s ease-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse-wa {
  0% { box-shadow: 0 12px 34px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 12px 34px rgba(37,211,102,.5), 0 0 0 20px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 34px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; } .reveal-d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .esp-grid { grid-template-columns: repeat(3, 1fr); }
  .mega-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  /* O header tem backdrop-filter, então ele é o containing block deste fixed:
     usamos height explícita em vez de bottom:0 */
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
    background: #fff; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 24px 6%; overflow-y: auto;
    transform: translateX(100%); transition: transform .35s ease;
  }
  .main-nav.open { transform: translateX(0); }
  .nav-link { justify-content: space-between; padding: 14px 16px; font-size: 1.05rem; }
  .mega {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; display: none; background: var(--lavanda-50);
    border-radius: 14px; margin-top: 6px;
  }
  li.has-mega.open .mega { display: block; }
  .mega-inner { grid-template-columns: 1fr; padding: 22px; gap: 24px; }
  .nav-cta-desktop { display: none; }
  .hero-grid, .split, .svc-hero-grid, .svc-body, .contact-grid { grid-template-columns: 1fr; }
  .svc-hero-grid { gap: 30px; }
  .svc-aside { position: static; }
  .hero-media { order: -1; max-width: 460px; margin-inline: auto; }
  .diff-grid, .related-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .esp-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .esp-grid, .diff-grid, .related-grid, .benefit-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--header-h) + 40px); }
  .hero-stats { gap: 20px; }
  .float-card { display: none; }
  .cta-band { padding: 50px 7%; }
}

/* ---------- Blog: tipografia dos artigos ---------- */
.post-content h2 { font-size: 1.45rem; margin: 36px 0 12px; }
.post-content h2:first-child { margin-top: 0; }
.post-content p { font-size: 1.02rem; line-height: 1.8; }
.post-list { display: grid; gap: 10px; margin: 6px 0 20px; }
.post-list li {
  position: relative; padding-left: 30px; color: var(--ink-soft);
  font-size: .98rem; line-height: 1.65;
}
.post-list li::before {
  content: "\2713"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: .66rem; font-weight: 800; color: #fff;
  background: linear-gradient(130deg, var(--roxo-500), var(--azul-400));
}

/* ---------- Carrossel de avaliações do Google ---------- */
.rv-viewport {
  position: relative; display: flex; gap: 22px; overflow: hidden;
  padding: 6px 0 18px; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.rv-track {
  display: flex; gap: 22px; flex: none; align-items: stretch;
  animation: rv-scroll var(--rv-dur, 40s) linear infinite;
  will-change: transform;
}
@keyframes rv-scroll { to { transform: translateX(calc(-100% - 22px)); } }
.rv-viewport:hover .rv-track,
.rv-viewport:focus-within .rv-track { animation-play-state: paused; }

.rv-card {
  flex: none; width: clamp(280px, 78vw, 380px);
  display: flex; flex-direction: column; gap: 14px;
  background: #fff; border: 1px solid rgba(124,63,173,.10);
  border-radius: var(--radius-md); padding: 26px 26px 22px; margin: 0;
  box-shadow: 0 4px 18px rgba(59,30,99,.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.rv-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-hover);
  border-color: var(--lilas-300);
}
.rv-stars { color: var(--amarelo-400); letter-spacing: 3px; font-size: 1.05rem; line-height: 1; }
.rv-card blockquote {
  margin: 0; flex: 1; font-size: .96rem; line-height: 1.7; color: var(--ink);
  position: relative; padding-left: 22px;
}
.rv-card blockquote::before {
  content: "\201C"; position: absolute; left: -2px; top: -10px;
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
  color: var(--lilas-300);
}
.rv-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(124,63,173,.10); }
.rv-avatar {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .82rem;
  font-family: var(--font-display);
  background: linear-gradient(135deg, var(--roxo-500), var(--azul-400));
}
.rv-meta { display: grid; line-height: 1.35; }
.rv-meta b { font-family: var(--font-display); font-size: .93rem; color: var(--roxo-900); }
.rv-meta small { font-size: .76rem; color: var(--ink-soft); }
.rv-g { margin-left: auto; flex: none; }

.rv-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 30px; text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .rv-viewport {
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-mask-image: none; mask-image: none;
  }
  .rv-track { animation: none; }
  .rv-track[aria-hidden="true"] { display: none; }
  .rv-card { scroll-snap-align: center; }
}

/* ---------- Ações abaixo do mapa ---------- */
.map-acoes { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.map-acoes .btn { padding: 12px 22px; font-size: .92rem; }
