/* Captar v2 — Astro · cookbook aesthetics · imagens IA */

:root {
  --bg: #070708;
  --bg-2: #101014;
  --bg-3: #18181f;
  --line: rgba(250, 204, 21, 0.16);
  --line-strong: rgba(250, 204, 21, 0.42);
  --text: #fafafa;
  --muted: #9ca3af;
  --gold: #facc15;
  --gold-2: #fde047;
  --gold-d: #ca8a04;
  --ink: #09090b;
  --ok: #4ade80;
  --bad: #fb7185;
  --font-d: "Sora", system-ui, sans-serif;
  --font-b: "Source Sans 3", system-ui, sans-serif;
  --wrap: min(1240px, 100% - 2rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --r: 18px;
  --r-lg: 28px;
  --header-pad-y: 0.9rem;
  --logo-h: 7.65rem;
  --header-bar-h: 8.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.wrap { width: var(--wrap); margin-inline: auto; padding-inline: 1rem; }

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9990;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Motion */
.anim {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--d, 0) * 0.07s);
}
.anim.is-in { opacity: 1; transform: none; }
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* Type */
.display {
  font-family: var(--font-d);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin: 0.6rem 0 0;
}
.display--sm { font-size: clamp(1.75rem, 4vw, 2.6rem); }
.display--light { color: #fff; }
.display__accent {
  background: linear-gradient(120deg, var(--gold-2), var(--gold-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-d);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid var(--line);
  background: rgba(250, 204, 21, 0.06);
}
.tag--solid { background: var(--gold); color: var(--ink); border-color: transparent; }

/* Prose cards — formatos distintos */
.prose-card {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.prose-card p { margin: 0; }
.prose-card strong { color: var(--text); }
.prose-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-d);
  font-size: 1.1rem;
  color: var(--text);
}

.prose-card--glass {
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.prose-card--slice {
  padding: 1rem 1.2rem 1rem 1.5rem;
  border-radius: 4px var(--r) var(--r) 4px;
  background: linear-gradient(90deg, rgba(250, 204, 21, 0.12), transparent);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
}

.prose-card--ribbon {
  padding: 1.15rem 1.25rem 1.15rem 3.5rem;
  border-radius: var(--r);
  background: var(--bg-3);
  border: 1px solid var(--line);
  position: relative;
}
.prose-card--ribbon::before {
  content: "→";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

.prose-card--quote {
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-radius: var(--r);
  background: var(--bg-2);
  border-left: 5px solid var(--gold);
  font-size: 1.08rem;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.prose-card--notch {
  padding: 1.1rem 1.2rem;
  border-radius: var(--r);
  background: var(--bg-3);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.prose-card--notch::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), transparent 55%);
  opacity: 0.35;
  border-bottom-left-radius: 100%;
}

.prose-card--panel {
  padding: 1rem 1.15rem;
  border-radius: var(--r-lg);
  background: repeating-linear-gradient(
    -45deg,
    rgba(250, 204, 21, 0.04),
    rgba(250, 204, 21, 0.04) 8px,
    transparent 8px,
    transparent 16px
  );
  border: 2px dashed var(--line-strong);
}

/* Media */
.media { position: relative; overflow: hidden; border-radius: var(--r-lg); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 45%, transparent 60%, rgba(250, 204, 21, 0.08));
  pointer-events: none;
}
.media--wide { aspect-ratio: 16/10; }
.media--portrait { aspect-ratio: 4/5; max-height: 520px; }
.media--float { aspect-ratio: 1; border-radius: var(--r-lg); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5); }
.media--banner { position: absolute; inset: 0; border-radius: 0; opacity: 0.35; }
.media--banner img { object-fit: cover; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, filter 0.25s;
}
.btn--gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-d));
  box-shadow: 0 14px 36px rgba(250, 204, 21, 0.35);
}
.btn--gold:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn--glass {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
}
.btn--glass:hover { background: rgba(250, 204, 21, 0.1); }
.btn--dark {
  background: var(--ink);
  color: var(--gold-2);
  border: 1px solid var(--line-strong);
}
.btn--xl { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn--block { width: 100%; }

/* Header (compat) */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  min-height: var(--header-bar-h);
  padding: var(--header-pad-y) 0;
  box-sizing: border-box;
  background: rgba(7, 7, 8, 0.96);
  transition: background 0.35s, backdrop-filter 0.35s, box-shadow 0.35s;
}
.header > .wrap {
  width: var(--wrap);
  margin-inline: auto;
}
.header.is-scrolled {
  background: rgba(7, 7, 8, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: calc(var(--header-bar-h) - var(--header-pad-y) * 2);
}
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.header__logo img {
  height: var(--logo-h);
  width: auto;
  max-width: min(18rem, 58vw);
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 900px) {
  :root {
    --logo-h: 8.5rem;
    --header-bar-h: 9.25rem;
  }
  .header__logo img { max-width: 22rem; }
}
.header__nav {
  display: none;
  gap: 0.2rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
@media (min-width: 1024px) { .header__nav { display: flex; } }
.header__link {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--muted);
}
.header__link:hover { color: var(--text); background: rgba(250, 204, 21, 0.1); }
.header__actions { display: flex; align-items: center; gap: 0.5rem; }
.header__burger {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.header__burger span { display: block; width: 16px; height: 2px; margin: 0 auto; background: #fff; transition: transform 0.25s; }
.header__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
@media (min-width: 1024px) { .header__burger { display: none; } }
.drawer { position: fixed; inset: 0; z-index: 300; background: rgba(0, 0, 0, 0.65); }
.drawer[hidden] { display: none; }
.drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(300px, 88vw);
  height: 100%;
  padding: 2rem 1.25rem;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
}
.drawer__title { font-family: var(--font-d); margin: 0 0 1rem; }
.drawer__link { display: block; padding: 0.75rem 0; font-weight: 600; border-bottom: 1px solid var(--line); }

/* Hero v2 */
.hero-v2 {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0.75rem;
  padding-bottom: 2rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  pointer-events: none;
  user-select: none;
}
.hero-v2__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 8, 0.94) 0%,
      rgba(7, 7, 8, 0.82) 42%,
      rgba(7, 7, 8, 0.68) 68%,
      rgba(7, 7, 8, 0.52) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 7, 8, 0.55) 0%,
      rgba(7, 7, 8, 0.35) 45%,
      rgba(7, 7, 8, 0.5) 100%
    );
  pointer-events: none;
}
.hero-v2__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  padding-top: 0;
  padding-bottom: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 960px) {
  .hero-v2__content { grid-template-columns: 1fr; }
}
.hero-v2__copy > .display {
  margin-bottom: 1.15rem;
}
.hero-v2__copy .prose-card,
.hero-v2__copy .prose-card p {
  color: #fff;
}
.hero-v2__copy .prose-card strong {
  color: #fff;
}
.hero-v2__list {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.hero-v2__list li { display: flex; gap: 0.65rem; align-items: flex-start; color: #d4d4d8; font-weight: 500; }
.hero-v2__list li.is-highlight { color: #fff; font-weight: 700; }
.tick {
  width: 8px;
  height: 8px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
  flex-shrink: 0;
}
.hero-v2__cta { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; margin-bottom: 0; }
.hero-v2__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 2rem;
  align-items: stretch;
}
@media (min-width: 640px) { .hero-v2__stats { grid-template-columns: repeat(4, 1fr); } }
.stat-pill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.9rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line);
  border-radius: var(--r);
  backdrop-filter: blur(8px);
}
.stat-pill b {
  display: block;
  font-family: var(--font-d);
  font-size: 1.4rem;
  color: var(--gold-2);
  line-height: 1.2;
}
.stat-pill small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* Sections */
.sec { padding: 5.5rem 0; position: relative; }
.sec--panel { background: var(--bg-2); }
.sec__intro { margin-bottom: 2.5rem; max-width: 640px; }
.sec__intro--center { text-align: center; margin-inline: auto; }
.sec__split {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .sec__split { grid-template-columns: 1fr 0.85fr; } }
.sec__action { text-align: center; margin-top: 2rem; }

/* Clientes — faixa contínua de logos */
.sec--clientes {
  padding-top: 4rem;
  padding-bottom: 3.5rem;
}
.sec--clientes .sec__intro {
  margin-bottom: 1.75rem;
}
.logos3 {
  width: 100vw;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.logos3__strip {
  position: relative;
  background: #fff;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}
.logos3__viewport {
  overflow: hidden;
}
.logos3__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: logos3-scroll 55s linear infinite;
}
.logos3:hover .logos3__track {
  animation-play-state: paused;
}
.logos3__cell {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11rem;
  height: 4.75rem;
  padding: 0.75rem 1.25rem;
  background: #fff;
  border-right: 1px solid rgba(7, 7, 8, 0.08);
}
.logos3__cell:last-child {
  border-right: none;
}
.logos3__cell img {
  max-width: 100%;
  max-height: 2.35rem;
  width: auto;
  height: auto;
  object-fit: contain;
}
.logos3__cell--tall {
  height: 5.25rem;
}
.logos3__cell--tall img {
  max-height: 3.35rem;
}
.logos3__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}
.logos3__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.logos3__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}
@keyframes logos3-scroll {
  to { transform: translateX(-50%); }
}

/* Landing pages (Alvará / Vigilância) */
.landing-benefits {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.landing-benefits li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 500;
}
.landing-servico__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.landing-servico .alvara-v2__copy {
  max-width: 920px;
  margin-inline: auto;
}

/* Serviços — fundo com foto da cidade */
.sec--servicos {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sec--servicos__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}
.sec--servicos__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 8, 0.72) 0%,
    rgba(7, 7, 8, 0.82) 50%,
    rgba(7, 7, 8, 0.88) 100%
  );
  pointer-events: none;
}
.sec--servicos .wrap,
.sec--servicos .svc-grid,
.sec--servicos .sec__action {
  position: relative;
  z-index: 2;
}

/* Serviços — retângulos horizontais compridos */
.svc-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
.svc-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 10rem;
  border: 1px solid rgba(250, 204, 21, 0.4);
  border-radius: 14px;
  background: var(--bg-2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.svc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 204, 21, 0.65);
}
.svc-card__head {
  flex: 0 0 28%;
  max-width: 16rem;
  display: flex;
  align-items: center;
  padding: 1.35rem 1.15rem;
  border-right: 1px solid rgba(250, 204, 21, 0.38);
  background: rgba(250, 204, 21, 0.05);
}
.svc-card__title {
  margin: 0;
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}
.svc-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.svc-card__title a:hover {
  color: var(--gold-2);
}
.svc-card__text {
  flex: 1;
  margin: 0;
  padding: 1.35rem 1.25rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #b4b8c2;
  align-self: center;
}
@media (max-width: 560px) {
  .svc-card {
    flex-direction: column;
    min-height: 10.5rem;
  }
  .svc-card__head {
    flex: none;
    max-width: none;
    border-right: none;
    border-bottom: 1px solid rgba(250, 204, 21, 0.38);
  }
}

/* Alvará v2 */
.alvara-v2 {
  display: block;
}
.alvara-v2__mid {
  display: grid;
  gap: 1.25rem;
  margin: 1rem 0;
  align-items: start;
}
@media (min-width: 900px) {
  .alvara-v2__mid {
    grid-template-columns: 1fr minmax(220px, 280px);
    gap: 1.5rem;
  }
}
.alvara-v2__aside {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dock-card--alvara {
  width: 100%;
  padding: 1.25rem 1.35rem;
  background: rgba(7, 7, 8, 0.88);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  backdrop-filter: blur(10px);
  text-align: center;
}
.dock-card--alvara .dock-card__label {
  font-family: var(--font-d);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0 0 0.75rem;
}
.dock-card--alvara ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dock-card--alvara li {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.dock-card--alvara li:last-child { margin-bottom: 0; }
.dock-card--alvara span {
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-d);
}
.alvara-v2__visual { position: relative; }
.alvara-v2__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-d);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
#alvaras.sec {
  padding-top: 3rem;
}
.alvara-v2__copy {
  text-align: center;
}
.alvara-v2__copy > .tag {
  display: inline-block;
  margin-bottom: 0.4rem;
}
.alvara-v2__copy > .display {
  margin: 0 auto 1rem;
}
.alvara-v2__copy .prose-card {
  text-align: center;
}
.alvara-v2__copy .prose-card--quote {
  border-left: none;
  border-top: 5px solid var(--gold);
  padding-top: 1.35rem;
}
.alvara-v2__copy .verdict {
  text-align: center;
}
.alvara-v2__copy .verdict ul {
  display: inline-block;
  text-align: center;
}
.alvara-v2__copy .acc__item summary {
  position: relative;
  justify-content: center;
  padding-right: 3rem;
  text-align: center;
}
.alvara-v2__copy .acc__item summary i {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
}
.alvara-v2__copy .acc__item p {
  text-align: center;
}
.verdict-grid { display: grid; gap: 0.75rem; margin: 1rem 0; }
@media (min-width: 540px) { .verdict-grid { grid-template-columns: 1fr 1fr; } }
.verdict {
  padding: 1rem 1.1rem;
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.verdict h4 { margin: 0 0 0.6rem; font-family: var(--font-d); font-size: 0.95rem; }
.verdict ul { margin: 0; padding: 0; list-style: none; font-size: 0.88rem; color: var(--muted); }
.verdict li::before { content: "· "; color: var(--gold); font-weight: 700; }
.verdict--up { background: rgba(74, 222, 128, 0.08); border-color: rgba(74, 222, 128, 0.25); }
.verdict--up h4 { color: var(--ok); }
.verdict--down { background: rgba(251, 113, 133, 0.08); border-color: rgba(251, 113, 133, 0.2); }
.verdict--down h4 { color: var(--bad); }

/* Accordion */
.acc__item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 0.5rem;
  background: var(--bg);
  overflow: hidden;
}
.acc__item[open] { border-color: var(--line-strong); }
.acc__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc--faq .acc__item summary em {
  font-style: normal;
  font-family: var(--font-d);
  font-size: 0.8rem;
  background: var(--gold);
  color: var(--ink);
  min-width: 1.6rem;
  height: 1.6rem;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  margin-right: 0.5rem;
}
.acc__item summary i {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
}
.acc__item summary i::before,
.acc__item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.acc__item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc__item[open] summary i::after { transform: translate(-50%, -50%) rotate(90deg) scaleX(0); }
.acc__item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

/* Section background layer */
.sec-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Bloco contínuo: Resultados + Quem somos — uma imagem só */
.sec-continuum {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sec-continuum__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}
.sec-continuum__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 8, 0.52) 0%,
    rgba(7, 7, 8, 0.62) 50%,
    rgba(7, 7, 8, 0.7) 100%
  );
  pointer-events: none;
}
.sec-continuum .sec {
  position: relative;
  z-index: 2;
  background: transparent;
}
.sec-continuum .sec--about {
  padding-top: 0;
}

/* Stats section */
.sec--stats .wrap { position: relative; }
.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-block {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.stat-block__ico { width: 2.5rem; height: 2.5rem; margin: 0 auto 0.75rem; color: var(--gold); }
.stat-block__ico svg { width: 100%; height: 100%; }
.stat-block__num {
  font-family: var(--font-d);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-d));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-block__lbl { font-size: 0.85rem; color: var(--muted); margin-top: 0.25rem; }

/* About v2 */
.sec--about .wrap { position: relative; }
.about-v2__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .about-v2__grid { grid-template-columns: 1fr 1fr; }
}
.about-v2__lead { display: grid; gap: 1rem; }
@media (min-width: 900px) {
  .about-v2__lead { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; align-items: start; }
  .about-v2__lead .tag,
  .about-v2__lead .display,
  .about-v2__lead .about-v2__cta { grid-column: 1 / -1; }
}
.about-v2__cta { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.pillar {
  padding: 1.25rem;
  border-radius: var(--r);
  background: var(--bg-3);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease);
}
.pillar:hover { transform: rotate(-1deg) translateY(-4px); border-color: var(--line-strong); }
.pillar__n { font-family: var(--font-d); font-size: 2rem; font-weight: 800; color: rgba(250, 204, 21, 0.25); }
.pillar:hover .pillar__n { color: var(--gold); }
.pillar h3 { margin: 0.35rem 0; font-family: var(--font-d); font-size: 1rem; }
.pillar p { margin: 0; font-size: 0.86rem; color: var(--muted); }

/* Benefits */
.benefit-deck {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) { .benefit-deck { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefit-deck { grid-template-columns: repeat(3, 1fr); } }
.benefit-deck__card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem;
  border-radius: 2px var(--r-lg) 2px var(--r-lg);
  background: var(--bg-3);
  border: 1px solid var(--line);
}
.benefit-deck__card span {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--gold-d);
}
.benefit-deck__card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* Process rail */
.process-rail {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .process-rail { grid-template-columns: repeat(4, 1fr); }
}
.process-rail__item { display: flex; flex-direction: column; gap: 0.65rem; }
.process-rail__n {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-d);
  font-weight: 800;
}

/* CTA v2 */
.cta-v2 {
  position: relative;
  padding: 4.5rem 0;
  overflow: hidden;
  background: linear-gradient(120deg, var(--gold-d), var(--gold-2));
}
.cta-v2__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-v2__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cta-v2__inner p { margin: 0.5rem 0 0; max-width: 28rem; color: rgba(9, 9, 11, 0.75); }

/* Footer */
.footer {
  padding: 4rem 0 1.5rem;
  background: #050506;
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer__grid { grid-template-columns: 1.3fr repeat(3, 1fr); } }
.footer__logo-text { font-family: var(--font-d); font-size: 1.25rem; font-weight: 800; color: var(--gold); }
.footer__tagline { color: var(--muted); font-size: 0.9rem; max-width: 20rem; }
.footer__social { display: flex; gap: 0.4rem; margin-top: 0.75rem; }
.footer__social a {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
}
.footer__heading { font-family: var(--font-d); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 0.75rem; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; font-size: 0.88rem; color: var(--muted); }
.footer__list a:hover { color: var(--gold); }
.footer__bar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
@media (min-width: 640px) { .footer__bar { flex-direction: row; justify-content: space-between; } }
.footer__legal { display: flex; gap: 1rem; }

.wa-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 150;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.45);
}
.wa-fab svg { width: 1.55rem; height: 1.55rem; }

.trustindex-mount {
  min-height: 320px;
  width: 100%;
}
.trustindex-mount .ti-widget {
  margin: 0 auto;
}
#avaliacoes.trustindex-single-review {
  overflow: hidden;
}
.trustindex-single-review .ti-controls,
.trustindex-single-review .ti-controls-line {
  display: none !important;
}

/* Mobile — leitura e toque em smartphones */
@media (max-width: 767px) {
  :root {
    --logo-h: 3.75rem;
    --header-bar-h: 4.75rem;
    --header-pad-y: 0.55rem;
    --wrap: min(1240px, 100% - 1.35rem);
  }

  .wrap { padding-inline: 0.85rem; }

  .display {
    font-size: clamp(1.7rem, 7.5vw, 2.4rem);
    letter-spacing: -0.03em;
  }
  .display--sm { font-size: clamp(1.45rem, 5.2vw, 2rem); }

  .sec { padding: 3.25rem 0; }
  .sec__intro { margin-bottom: 1.75rem; }
  .sec--clientes {
    padding-top: 2.5rem;
    padding-bottom: 2.25rem;
  }
  #alvaras.sec { padding-top: 2.25rem; }

  .hero-v2 {
    min-height: auto;
    padding-bottom: 1.5rem;
  }
  .hero-v2__bg { object-position: center center; }
  .hero-v2__copy > .display { margin-bottom: 0.9rem; }
  .hero-v2__list { margin: 0.75rem 0; font-size: 0.92rem; }
  .hero-v2__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }
  .hero-v2__cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 2.85rem;
  }
  .hero-v2__stats { margin-top: 1.35rem; gap: 0.5rem; }
  .stat-pill { padding: 0.75rem 0.5rem; }
  .stat-pill b { font-size: 1.2rem; }

  .prose-card { font-size: 0.95rem; }
  .prose-card--glass,
  .prose-card--slice { padding: 0.95rem 1rem; }

  .logos3__cell {
    width: 8.25rem;
    height: 4rem;
    padding: 0.55rem 0.85rem;
  }
  .logos3__cell--tall { height: 4.35rem; }
  .logos3__fade { width: 2.25rem; }

  .svc-card__head { padding: 1rem; }
  .svc-card__text { padding: 1rem; font-size: 0.9rem; }

  .alvara-v2__copy .acc__item summary {
    padding: 1rem 2.75rem 1rem 1rem;
    font-size: 0.9rem;
    text-align: left;
  }
  .alvara-v2__copy .acc__item p { text-align: left; }

  .sec__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }
  .sec__action .btn {
    width: 100%;
    max-width: 22rem;
    justify-content: center;
  }

  .landing-servico__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .landing-servico__cta .btn { width: 100%; }

  .cta-v2 { padding: 2.75rem 0; }
  .cta-v2__inner .btn { width: 100%; justify-content: center; }

  .footer { padding: 2.75rem 0 1.25rem; }
  .footer__grid { gap: 1.5rem; }

  .trustindex-mount {
    min-height: 280px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header__burger {
    min-width: 2.75rem;
    min-height: 2.75rem;
  }
  .drawer__link {
    padding: 0.85rem 0;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }

  .wa-fab {
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    width: 3.25rem;
    height: 3.25rem;
  }

  .btn { -webkit-tap-highlight-color: transparent; }
}

@media (max-width: 380px) {
  :root {
    --logo-h: 3.1rem;
    --header-bar-h: 4.25rem;
  }

  .hero-v2__stats { grid-template-columns: repeat(2, 1fr); }
  .stat-pill small { font-size: 0.62rem; }
  .logos3__cell { width: 7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim, [data-reveal], .logos3__track { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}
