/* =========================================================
   ASSYST ENGENHARIA · Design System v3
   Engenharia contemporânea · Editorial técnico moderno
   Imagens de São Paulo · Brasil
   ========================================================= */

:root {
  /* Cores oficiais Pantone Assyst */
  --orange: #F26729;            /* Pantone 165 C */
  --orange-hover: #D85518;
  --orange-soft: #FEF2EB;
  --orange-line: rgba(242, 103, 41, 0.25);

  --graphite: #1D242B;          /* Pantone 433 C */
  --graphite-2: #2C343C;
  --graphite-line: rgba(29, 36, 43, 0.1);
  --graphite-line-2: rgba(29, 36, 43, 0.2);

  /* Canvas */
  --bg: #FBFAF8;
  --bg-2: #F4F1EC;
  --bg-3: #E8E3DA;

  /* Texto */
  --ink: #1D242B;
  --ink-2: #4B545D;
  --ink-3: #5F6770;
  --ink-on-dark: #FBFAF8;
  --ink-on-dark-2: rgba(251, 250, 248, 0.65);
  --ink-on-dark-3: rgba(251, 250, 248, 0.55);

  /* Fontes */
  --ff-display: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-serif: 'Instrument Serif', 'Times New Roman', serif;
  --ff-body: 'Archivo', -apple-system, sans-serif;
  --ff-mono: 'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Layout */
  --max: 1400px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-h: 78px;

  /* Motion */
  --ease: cubic-bezier(.2, .65, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   TIPOGRAFIA
   ========================================================= */
.h1, .h2, .h3 {
  font-family: var(--ff-display);
  color: var(--ink);
  margin: 0;
}
.h1 {
  font-weight: 600;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.h2 {
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.h2--light { color: var(--bg); }
.h3 {
  font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.h1 em, .h2 em, .h3 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -0.01em;
}

.code {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}
.code--orange { color: var(--orange); }

/* =========================================================
   TOPBAR técnica
   ========================================================= */
.topbar {
  background: var(--graphite);
  color: var(--ink-on-dark-2);
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(251, 250, 248, 0.08);
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 20px;
}
.topbar__left { display: flex; align-items: center; gap: 10px; }
.topbar__coord { color: var(--orange); font-weight: 500; }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__item { transition: color .2s var(--ease); }
.topbar__item:hover { color: var(--orange); }
.topbar__divider { width: 1px; height: 11px; background: rgba(251, 250, 248, 0.2); }
@media (max-width: 820px) {
  /* No mobile: esconde a coordenada (decorativa) e mostra o endereco real,
     pra nao competir com os dados principais (telefone/endereco). */
  .topbar__coord { display: none; }
  .topbar__right { justify-content: center; width: 100%; flex-wrap: wrap; gap: 8px; }
  .topbar__divider { display: none; }
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--graphite-line);
  height: var(--header-h);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  transition: opacity .25s var(--ease);
}
.logo:hover { opacity: 0.72; }
.logo__img { display: block; height: 42px; width: auto; }
@media (max-width: 520px) {
  .logo__img { height: 34px; }
}
.footer__logo { display: block; height: 52px; width: auto; }

.nav {
  display: flex;
  gap: 28px;
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 500;
}
.nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-2);
  transition: color .2s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after,
.nav a.is-active::after { width: 100%; }
.nav a.is-active { color: var(--ink); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all .3s var(--ease);
}
@media (max-width: 1080px) {
  .nav { display: none; }
  .header .btn { display: none; }
  .nav__toggle { display: flex; }
  /* Trava a rolagem da pagina enquanto o menu mobile esta aberto */
  body.nav-locked { overflow: hidden; }
}

/* ---------- Mega-menu (segmentos) ---------- */
.nav__group { position: relative; display: flex; align-items: center; }
.nav__group-btn {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-2);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .2s var(--ease);
}
.nav__group-btn:hover,
.nav__group:focus-within .nav__group-btn { color: var(--ink); }
.nav__caret {
  width: 6px; height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease);
}
.nav__group:hover .nav__caret,
.nav__group:focus-within .nav__caret { transform: rotate(225deg) translateY(1px); }

.nav__mega {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--bg);
  border: 1px solid var(--graphite-line);
  border-radius: 14px;
  box-shadow: 0 24px 48px -24px rgba(29, 36, 43, 0.30);
  padding: 16px;
  min-width: 260px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 60;
}
.nav__mega::before { /* ponte de hover sobre o gap */
  content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.nav__group:hover .nav__mega,
.nav__group:focus-within .nav__mega {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__mega-grid { display: grid; gap: 1px; }
.nav__mega--2col .nav__mega-grid { grid-template-columns: 1fr 1fr; gap: 1px 16px; }
.nav__mega-grid a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav__mega-grid a::after { display: none; }
.nav__mega-grid a:hover { background: var(--orange-soft); color: var(--orange); }
.nav__mega-cta {
  display: block;
  margin-top: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--graphite-line);
  color: var(--orange);
  font-weight: 600;
  font-size: 0.82rem;
}
.nav__mega-cta::after { display: none; }

@media (max-width: 1080px) {
  .nav__group { display: block; width: 100%; }
  .nav__group-btn { width: 100%; justify-content: space-between; padding: 10px 0; font-size: 1rem; }
  .nav__group.is-open .nav__caret { transform: rotate(225deg) translateY(1px); }
  .nav__mega {
    position: static; transform: none; left: auto;
    opacity: 1; visibility: visible; pointer-events: auto;
    background: none; border: 0; box-shadow: none; border-radius: 0;
    min-width: 0; padding: 0;
    display: none; max-height: none; overflow: visible;
  }
  .nav__group.is-open .nav__mega { display: block; padding: 0 0 8px 12px; }
  /* Robustez mobile: (1) !important impede o transform/centralizacao do desktop de
     empurrar o submenu pra fora da tela; (2) usa display (nao max-height) pra evitar
     bug de repaint no Safari iOS que deixava os itens invisiveis ao abrir. */
  .nav__group:hover .nav__mega,
  .nav__group:focus-within .nav__mega { transform: none !important; left: auto !important; }
  .nav__mega::before { display: none; }
  .nav__mega--2col .nav__mega-grid { grid-template-columns: 1fr; }
  .nav__mega-grid a { padding: 8px 4px; white-space: normal; }
  .nav__mega-cta { margin-top: 4px; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
  white-space: nowrap;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  border: 0;
  cursor: pointer;
}
.btn--sm { padding: 11px 20px; font-size: 0.72rem; }

/* Mobile: rótulos longos de botão quebram linha em vez de vazar (overflow horizontal) */
@media (max-width: 520px) {
  .btn { white-space: normal; text-align: center; justify-content: center; }
}

/* Fix overflow mobile: itens do grid da seção Autoridade podem encolher abaixo do min-content */
.svc-authority__grid > * { min-width: 0; }
.btn__arrow {
  font-family: var(--ff-mono);
  transition: transform .25s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--graphite);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.btn--orange {
  background: var(--orange);
  color: var(--bg);
}
.btn--orange:hover {
  background: var(--graphite);
  color: var(--bg);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--graphite-line-2);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}

.btn--ghost-light {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(251, 250, 248, 0.3);
}
.btn--ghost-light:hover {
  background: var(--orange);
  color: var(--bg);
  border-color: var(--orange);
}

/* =========================================================
   HERO — Av. Paulista em P&B (foto de Raphael Brasileiro)
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 34px);
  display: grid;
  align-items: end;
  padding: clamp(60px, 10vw, 120px) 0 clamp(50px, 8vw, 90px);
  background: var(--graphite);
  color: var(--bg);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg,
      rgba(29, 36, 43, 0.35) 0%,
      rgba(29, 36, 43, 0.6) 60%,
      rgba(29, 36, 43, 0.95) 100%
    ),
    url('images/hero/hero-bg.webp');
  background-size: cover;
  background-position: center 30%;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(251, 250, 248, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(251, 250, 248, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: clamp(40px, 10vh, 80px);
  gap: 20px;
  flex-wrap: wrap;
}
.hero__coord {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--bg);                                /* branco puro pra máximo contraste */
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 18px;
  background: rgba(29, 36, 43, 0.55);              /* fundo semi-transparente grafite */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 2px solid var(--orange);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero__coord strong { color: var(--orange); font-weight: 600; }
.hero__coord--right { align-items: flex-end; text-align: right; border-left: 0; border-right: 2px solid var(--orange); }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-on-dark-2);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) forwards;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 0;
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--bg);
  margin: 0 0 40px;
  max-width: 1200px;
  opacity: 0;
  animation: fadeUp .9s .1s var(--ease) forwards;
}
.hero__title em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -0.01em;
}

.hero__lead {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink-on-dark-2);
  margin: 0 0 48px;
  opacity: 0;
  animation: fadeUp .9s .2s var(--ease) forwards;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: clamp(50px, 8vh, 80px);
  opacity: 0;
  animation: fadeUp 1s .3s var(--ease) forwards;
}

.hero__indicators {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(251, 250, 248, 0.12);
  opacity: 0;
  animation: fadeUp 1s .4s var(--ease) forwards;
}
@media (max-width: 760px) {
  .hero__indicators { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
}
.indicator {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 24px;
  border-right: 1px solid rgba(251, 250, 248, 0.1);
}
.indicator:first-child { padding-left: 0; }
.indicator:last-child { border-right: 0; }
@media (max-width: 760px) {
  .indicator { padding-left: 0; border-right: 0; }
}
.indicator__label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-on-dark-3);
}
.indicator__value {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bg);
}
.indicator__value sup {
  font-size: 0.5em;
  color: var(--orange);
  font-weight: 500;
  vertical-align: super;
  margin-left: 2px;
}

/* =========================================================
   MARQUEE de credenciais
   ========================================================= */
.marquee {
  background: var(--orange);
  color: var(--graphite);
  overflow: hidden;
  border-bottom: 1px solid var(--orange-hover);
}
.marquee__track {
  display: flex;
  gap: 0;
  animation: slide 60s linear infinite;
  width: max-content;
  padding: 14px 0;
}
.marquee__item {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0 40px;
  border-right: 1px solid rgba(29, 36, 43, 0.2);
  white-space: nowrap;
}
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
}
.section--tight {
  padding: clamp(60px, 8vw, 100px) 0;
}

.section__kicker {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--graphite-line);
}
.section__index {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.section__label {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-2);
}
.section__label--light { color: var(--ink-on-dark-2); }

.section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: end;
}
@media (max-width: 820px) {
  .section__header { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
}
.section__header-lead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 520px;
  margin: 0;
}

/* =========================================================
   ABOUT — com foto de prédio brasileiro
   ========================================================= */
.about {
  background: var(--bg);
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
}
.about__image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.about__image {
  width: 100%; height: 100%;
  background-image:
    linear-gradient(180deg, rgba(29, 36, 43, 0) 0%, rgba(29, 36, 43, 0.15) 100%),
    url('../assets/images/sp-icons/masp.webp');
  background-size: cover;
  background-position: right center;
  transition: transform .7s var(--ease);
}
.about__image-wrap:hover .about__image {
  transform: scale(1.03);
}
.about__image-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--orange);
  color: var(--graphite);
  padding: 10px 16px;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.about__content p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 20px;
  max-width: 560px;
}
.about__credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--graphite-line);
}
@media (max-width: 560px) {
  .about__credentials { grid-template-columns: 1fr; gap: 20px; }
}
.cred__label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.cred__value {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* =========================================================
   SOBRE — Riscos (lista de prejuízos)
   ========================================================= */
.about__risks {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 480px) {
  .about__risks { grid-template-columns: 1fr; }
}
.about__risks li {
  position: relative;
  padding: 12px 14px 12px 38px;
  background: var(--bg-2);
  border-left: 2px solid var(--orange);
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
}
.about__risks li::before {
  content: '×';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--orange);
  background: rgba(232, 110, 56, 0.12);
  border-radius: 50%;
  line-height: 1;
}

/* Frase de fechamento do "Sobre" */
.about__closing {
  margin-top: 28px !important;
  padding: 22px 26px;
  background: var(--ink);
  color: var(--bg) !important;
  border-radius: 6px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.05rem !important;
  line-height: 1.5 !important;
  letter-spacing: -0.01em;
  max-width: none !important;
}

/* =========================================================
   SOBRE — Blocos secundários (Como atuamos / O que entregamos)
   ========================================================= */
.about__block {
  margin-top: 96px;
  padding-top: 72px;
  border-top: 1px solid var(--graphite-line);
}
.about__block-header {
  margin-bottom: 48px;
  max-width: 720px;
}
.about__block-label {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 16px;
  font-weight: 600;
}
.about__block-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.about__block-title em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}

/* Como atuamos — 3 cenários */
.about__scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .about__scenarios { grid-template-columns: 1fr; }
}
.scenario {
  position: relative;
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--graphite-line);
  border-radius: 6px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.scenario:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 14px 32px -16px rgba(29, 36, 43, 0.2);
}
.scenario__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--orange);
  background: rgba(232, 110, 56, 0.1);
  border-radius: 50%;
  margin-bottom: 18px;
}
.scenario__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 12px;
}
.scenario p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* O que entregamos — 4 itens em grid */
.about__deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .about__deliverables { grid-template-columns: 1fr; }
}
.about__deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 26px;
  background: var(--bg-2);
  border-radius: 6px;
  border-left: 3px solid var(--orange);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.about__deliverables li:hover {
  transform: translateY(-3px);
  background: var(--bg);
  box-shadow: 0 14px 28px -14px rgba(29, 36, 43, 0.16);
}
.about__deliverables-num {
  flex-shrink: 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.04em;
  min-width: 38px;
}
.about__deliverables li > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__deliverables li strong {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.about__deliverables li span {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-2);
}

/* =========================================================
   SOBRE — Posicionamento (quote final)
   ========================================================= */
.about__positioning {
  margin-top: 96px;
  padding: 64px 56px;
  background: linear-gradient(135deg, var(--ink) 0%, #2a323a 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.about__positioning::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 32px;
  font-family: var(--ff-serif);
  font-size: 12rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.2;
  pointer-events: none;
}
@media (max-width: 720px) {
  .about__positioning { padding: 40px 28px; }
  .about__positioning::before { font-size: 8rem; }
}
.about__positioning-label {
  display: block;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.about__positioning-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin: 0 0 24px;
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.about__positioning-text {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 720px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}
.about__positioning-text strong {
  color: var(--orange);
  font-weight: 600;
}

/* =========================================================
   NOSSO TIME
   ========================================================= */
.team {
  background: var(--bg-2);
  border-top: 1px solid var(--graphite-line);
  border-bottom: 1px solid var(--graphite-line);
}

/* Card destaque Elaine */
.team-lead {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--graphite-line);
  align-items: start;
}
@media (max-width: 900px) {
  .team-lead {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.team-lead__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
  border-radius: 16px;
}
.team-lead__photo::before {
  content: '';
  position: absolute;
  left: -14px; bottom: -14px;
  width: 58%; height: 58%;
  background: var(--orange);
  border-radius: 14px;
  z-index: 0;
}
.team-lead__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
}
.team-lead__content .code--orange {
  display: inline-block;
  margin-bottom: 20px;
}
.team-lead__name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 20px;
}
.team-lead__name em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.team-lead__role {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 32px;
  max-width: 640px;
}
.team-lead__creds {
  list-style: none;
  padding: 28px 0 0;
  margin: 0;
  column-count: 2;
  column-gap: 24px;
  border-top: 1px solid var(--graphite-line);
}
.team-lead__creds li {
  break-inside: avoid;
  margin-bottom: 10px;
}
@media (max-width: 560px) {
  .team-lead__creds { column-count: 1; }
}
.team-lead__creds li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}
.team-lead__creds li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 2px;
  background: var(--orange);
}
.team-lead__creds li strong {
  font-weight: 600;
  color: var(--ink);
}
.team-lead__creds li a {
  color: var(--orange);
  border-bottom: 1px solid var(--orange-line);
  transition: border-color .2s var(--ease);
}
.team-lead__creds li a:hover { border-bottom-color: var(--orange); }

/* Elaine na mídia — fontes de terceiros (E-E-A-T / autoridade citável por IA) */
.team-lead__media {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--graphite-line);
}
.team-lead__media-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.team-lead__media-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.team-lead__media-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink-2);
}
.team-lead__media-list li::before {
  content: '↗';
  position: absolute;
  left: 0; top: 0;
  color: var(--orange);
  font-size: 0.82rem;
}
.team-lead__media-list a {
  color: var(--ink);
  border-bottom: 1px solid var(--graphite-line-2);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.team-lead__media-list a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Transição: sociedade técnica (antes dos 3 sócios) */
.team-bridge {
  margin: 80px 0 48px;
  padding: 40px 0 0;
  border-top: 1px solid var(--graphite-line);
  max-width: 880px;
}
.team-bridge__label {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 18px;
}
.team-bridge__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
}
.team-bridge__title em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.team-bridge__desc {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 720px) {
  .team-bridge { margin: 56px 0 32px; }
}

/* Grid dos 3 sócios */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 860px) {
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform .3s var(--ease);
}
.team-member:hover { transform: translateY(-4px); }

.team-member__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: box-shadow .3s var(--ease);
}
.team-member:hover .team-member__photo {
  box-shadow: 0 16px 34px -16px rgba(29, 36, 43, 0.28);
}
.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Foto da Autoridade (Elaine nas páginas de serviço): círculo -> retrato retangular editorial.
   Especificidade maior que o condominios.css para vencer sem depender de ordem. */
.svc-authority__grid .svc-authority__photo {
  position: relative;
  display: block;
  max-width: 340px;
  margin: 0 auto;
}
.svc-authority__grid .svc-authority__photo::before {
  content: '';
  position: absolute;
  left: -14px; bottom: -14px;
  width: 58%; height: 58%;
  background: var(--orange);
  border-radius: 14px;
  z-index: 0;
}
.svc-authority__grid .svc-authority__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  object-position: top center;
}

.team-member__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-member__tag {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 2px;
}
.team-member__info h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 4px;
}
.team-member__info p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 320px;
}

/* =========================================================
   SERVIÇOS
   ========================================================= */
.services {
  background: var(--bg);
  border-top: 1px solid var(--graphite-line);
  border-bottom: 1px solid var(--graphite-line);
}

.service-group {
  margin-bottom: 80px;
}
.service-group:last-child { margin-bottom: 0; }

.service-group__header {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 40px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid var(--graphite-line-2);
  border-bottom: 1px solid var(--graphite-line);
}
@media (max-width: 720px) {
  .service-group__header {
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px 0;
  }
}
.service-group__num {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.03em;
}
.service-group__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.service-group__nbr {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: right;
}
@media (max-width: 720px) {
  .service-group__nbr { display: none; }
}
.service-group__desc {
  padding: 20px 0 28px;
  border-bottom: 1px solid var(--graphite-line);
}
.service-group__desc p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 760px;
  margin: 0;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 760px) {
  .services__list { grid-template-columns: 1fr; }
}

.service {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 32px 32px 32px 0;
  border-bottom: 1px solid var(--graphite-line);
  transition: all .3s var(--ease);
  position: relative;
  cursor: pointer;
}
.service:nth-child(odd) { padding-right: 40px; border-right: 1px solid var(--graphite-line); }
@media (max-width: 760px) {
  .service:nth-child(odd) { padding-right: 0; border-right: 0; }
}
.service:hover {
  background: var(--bg-2);
  padding-left: 16px;
}
.service::before {
  content: '';
  position: absolute;
  left: 0; top: 32px; bottom: 32px;
  width: 2px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s var(--ease);
}
.service:hover::before { transform: scaleY(1); }
.service--full { grid-column: 1 / -1; }
.service--full:nth-child(odd) { padding-right: 0; border-right: 0; }

.service__num {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  padding-top: 4px;
}
.service__body h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 8px;
}
.service__body p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.service__arrow {
  font-family: var(--ff-mono);
  font-size: 1.1rem;
  color: var(--ink-3);
  transition: all .3s var(--ease);
  padding-top: 4px;
}
.service:hover .service__arrow {
  color: var(--orange);
  transform: translateX(8px);
}

/* =========================================================
   PORTFÓLIO — lista grande de condomínios
   ========================================================= */
.portfolio {
  background: var(--graphite);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(242, 103, 41, 0.12), transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(242, 103, 41, 0.05), transparent 50%);
  pointer-events: none;
}
.portfolio .section__kicker { border-color: rgba(251, 250, 248, 0.15); }
.portfolio .section__label { color: var(--ink-on-dark-2); }
.portfolio .h2 { color: var(--bg); }
.portfolio .section__header-lead { color: var(--ink-on-dark-2); }

.portfolio__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 820px) {
  .portfolio__list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 520px) {
  .portfolio__list { grid-template-columns: 1fr; gap: 16px; }
}

.portfolio-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(251, 250, 248, 0.04);
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  cursor: default;
}
.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px -22px rgba(0,0,0,.7);
}

.portfolio-item__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: rgba(251, 250, 248, 0.05);
  transition: transform .7s var(--ease), filter .5s var(--ease);
  filter: saturate(0.92);
}
.portfolio-item:hover .portfolio-item__image {
  transform: scale(1.06);
  filter: saturate(1.08);
}

/* Gradiente para legibilidade do nome sobre a foto */
.portfolio-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(15, 19, 23, 0.88) 0%, rgba(15, 19, 23, 0.4) 30%, transparent 58%);
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.portfolio-item:hover::after { opacity: 0.92; }

.portfolio-item__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 16px 18px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  color: #fff;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color .3s var(--ease), transform .4s var(--ease);
}
.portfolio-item:hover .portfolio-item__label {
  color: var(--orange);
  transform: translateY(-2px);
}
.portfolio-item__label::after {
  content: '→';
  font-family: var(--ff-mono);
  font-size: 1.05rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.portfolio-item:hover .portfolio-item__label::after {
  opacity: 1;
  transform: translateX(0);
}

.portfolio-item__meta {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-on-dark-3);
  padding: 0 20px 16px;
}

/* =========================================================
   CLIENTES (grid de logos)
   ========================================================= */
.clients {
  background: var(--bg);
  border-top: 1px solid var(--graphite-line);
}
.clients-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--graphite-line);
  border: 1px solid var(--graphite-line);
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

.clients-grid__cell {
  background: var(--bg);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.clients-grid__cell:hover {
  background: var(--bg-2);
  transform: scale(1.02);
  z-index: 1;
}
.clients-grid__cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.85;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.clients-grid__cell:hover img {
  opacity: 1;
}

/* ===== Consentimento de cookies (LGPD) ===== */
.cookie-consent {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9999;
  max-width: 660px;
  margin: 0 auto;
  background: var(--graphite);
  border: 1px solid rgba(251, 250, 248, 0.14);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  transform: translateY(150%);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.cookie-consent.is-visible { transform: translateY(0); opacity: 1; }
.cookie-consent__text {
  margin: 0;
  flex: 1 1 300px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(251, 250, 248, 0.86);
}
.cookie-consent__text .cookie-consent__link { color: var(--orange); border-bottom: 1px solid rgba(242,103,41,0.5); white-space: nowrap; }
.cookie-consent__text .cookie-consent__link:hover { border-bottom-color: var(--orange); }
.cookie-consent__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-consent__btn {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: filter .2s var(--ease), background .2s var(--ease);
}
.cookie-consent__btn--accept { background: var(--orange); color: #fff; }
.cookie-consent__btn--accept:hover { filter: brightness(1.08); }
.cookie-consent__btn--refuse {
  background: transparent;
  color: rgba(251, 250, 248, 0.8);
  border: 1px solid rgba(251, 250, 248, 0.25);
}
.cookie-consent__btn--refuse:hover { background: rgba(251, 250, 248, 0.08); }
@media (prefers-reduced-motion: reduce) {
  .cookie-consent { transition: opacity .2s var(--ease); transform: translateY(0); }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none !important; }
}

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
.testimonials {
  background: var(--bg-2);
  border-top: 1px solid var(--graphite-line);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testimonials__grid { grid-template-columns: 1fr; gap: 20px; }
}

.quote {
  margin: 0;
  padding: 40px 32px 32px;
  background: var(--bg);
  border-top: 3px solid var(--orange);
  position: relative;
  transition: transform .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.quote:hover { transform: translateY(-4px); }
.quote::before {
  content: '"';
  position: absolute;
  top: -4px; right: 28px;
  font-family: var(--ff-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.2;
  font-style: italic;
}
.quote p {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 24px;
  flex: 1;
}
.quote footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 20px;
  border-top: 1px solid var(--graphite-line);
}
.quote footer strong {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.quote footer span {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
}

/* =========================================================
   ASSYSTCAST · podcast
   ========================================================= */
.podcast {
  background: var(--graphite);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.podcast__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 75% 30%, rgba(242, 103, 41, 0.22), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(242, 103, 41, 0.08), transparent 50%);
  pointer-events: none;
}
.podcast__inner { position: relative; z-index: 2; }
.podcast__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .podcast__grid { grid-template-columns: 1fr; gap: 50px; }
}
.podcast__content .section__kicker {
  border-color: rgba(251, 250, 248, 0.2);
  margin-bottom: 32px;
}
.podcast__lead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--ink-on-dark-2);
  margin: 28px 0 36px;
  max-width: 560px;
}
.podcast__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.podcast__ctas .btn svg {
  margin-right: 4px;
}

.podcast__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}
.podcast__logo-wrap {
  position: relative;
  max-width: 380px;
  width: 100%;
}
.podcast__logo-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(242, 103, 41, 0.3);
  border-radius: 50%;
  pointer-events: none;
  animation: spin-slow 40s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.podcast__logo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s var(--ease);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}
.podcast__visual:hover .podcast__logo {
  transform: scale(1.03);
}

.podcast__card {
  background: var(--orange);
  color: var(--graphite);
  padding: 28px 32px;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  margin-top: -30px;
  z-index: 2;
  transition: transform .3s var(--ease);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.podcast__card:hover { transform: translateY(-4px); }
.podcast__card::before {
  content: '♪';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.6rem;
  color: var(--graphite);
  opacity: 0.5;
}
.podcast__card-label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 6px;
}
.podcast__card-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.podcast__card-role {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* =========================================================
   EQUIPAMENTOS
   ========================================================= */
.equipment {
  background: var(--bg);
}
.equipment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 820px) {
  .equipment__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 520px) {
  .equipment__grid { grid-template-columns: 1fr; gap: 24px; }
}
.equipment-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--graphite-line);
  transition: all .35s var(--ease);
  position: relative;
}
.equipment-item:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 14px 32px -12px rgba(29, 36, 43, 0.2);
}
.equipment-item__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.equipment-item__photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform .6s var(--ease);
}
.equipment-item:hover .equipment-item__photo img {
  transform: scale(1.06);
}
.equipment-item__content {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  border-top: 2px solid var(--orange);
}
.equipment-item__num {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.12em;
}
.equipment-item h3 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.equipment-item p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* =========================================================
   CTA FINAL + FORMULÁRIO
   ========================================================= */
.cta {
  background: var(--graphite);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(29, 36, 43, 0.98) 0%, rgba(29, 36, 43, 0.85) 50%, rgba(29, 36, 43, 0.6) 100%),
    url('images/hero/cta-bg.webp');
  background-size: cover;
  background-position: center;
}
.cta__inner { position: relative; z-index: 2; }
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .cta__grid { grid-template-columns: 1fr; gap: 50px; }
}
.cta__left .code--orange { display: inline-block; margin-bottom: 24px; }
.cta__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--bg);
  margin: 0 0 28px;
}
.cta__title em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.cta__lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-on-dark-2);
  max-width: 520px;
  margin: 0 0 40px;
}

.cta__channels {
  border-top: 1px solid rgba(251, 250, 248, 0.15);
}
.channel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(251, 250, 248, 0.15);
  transition: padding-left .3s var(--ease);
  position: relative;
}
.channel::before {
  content: '→';
  position: absolute;
  left: -30px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-mono);
  color: var(--orange);
  opacity: 0;
  transition: all .3s var(--ease);
}
.channel:hover { padding-left: 20px; }
.channel:hover::before { opacity: 1; left: 0; }
.channel__label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-on-dark-3);
}
.channel__value {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--bg);
  letter-spacing: -0.015em;
}
.channel:hover .channel__value { color: var(--orange); }

/* Formulário */
.form {
  background: var(--bg);
  color: var(--ink);
  padding: 48px 40px;
  position: relative;
}
@media (max-width: 560px) {
  .form { padding: 36px 24px; }
}
.form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.form__hidden {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
.form__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 8px;
}
.form__subtitle {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 28px;
}
.form__row {
  margin-bottom: 16px;
}
.form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .form__row--2 { grid-template-columns: 1fr; }
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__field label {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  font-weight: 500;
}
.form__field .required {
  color: var(--orange);
  font-weight: 700;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--graphite-line-2);
  padding: 12px 14px;
  border-radius: 0;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--orange-soft);
}
.form__field textarea {
  font-family: var(--ff-body);
  resize: vertical;
  min-height: 100px;
}
/* ===== Preferência de contato (radio) ===== */
.contact-pref {
  display: block;
}
.contact-pref__title {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 14px;
}
.contact-pref__title .required {
  color: var(--orange);
  font-weight: 700;
}
.contact-pref__options {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.contact-pref__opt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 0;
  margin: 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.contact-pref__opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.contact-pref__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--graphite-line-2);
  background: var(--bg);
  position: relative;
  flex-shrink: 0;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-pref__dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-pref__text {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  transition: color .2s var(--ease);
}
.contact-pref__opt:hover .contact-pref__dot { border-color: var(--orange); }
.contact-pref__opt:hover .contact-pref__text { color: var(--orange); }

/* Estado selecionado */
.contact-pref__opt:has(input:checked) .contact-pref__dot {
  background: var(--orange);
  border-color: var(--orange);
}
.contact-pref__opt:has(input:checked) .contact-pref__dot::after {
  transform: translate(-50%, -50%) scale(1);
}
.contact-pref__opt:has(input:checked) .contact-pref__text {
  color: var(--orange);
  font-weight: 600;
}

/* Foco acessível */
.contact-pref__opt:has(input:focus-visible) .contact-pref__dot {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ===== Detalhes adicionais (expansível) ===== */
.form__details {
  margin: 4px 0 24px;
  border-top: 1px dashed var(--graphite-line-2);
  padding-top: 20px;
}
.form__details > summary {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  user-select: none;
  transition: color .2s var(--ease);
}
.form__details > summary::-webkit-details-marker {
  display: none;
}
.form__details > summary::before {
  content: '+';
  font-family: var(--ff-mono);
  font-size: 1.05rem;
  line-height: 1;
  color: var(--orange);
  font-weight: 600;
  display: inline-block;
  width: 14px;
  text-align: center;
}
.form__details[open] > summary::before {
  content: '−';
}
.form__details > summary:hover {
  color: var(--orange);
}
.form__details[open] > summary {
  margin-bottom: 20px;
  color: var(--ink);
}

.form__consent {
  margin: 20px 0 24px;
}
.form__checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}
.form__checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}
.form__checkbox span {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-2);
}
.form__submit {
  width: 100%;
  justify-content: center;
  padding: 18px 24px;
  font-size: 0.85rem;
}
.form__note {
  margin: 16px 0 0;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--ink-3);
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
}

/* =========================================================
   INVESTIMENTO TÉCNICO
   ========================================================= */
.investimento {
  background: var(--bg-2);
  border-top: 1px solid var(--graphite-line);
  border-bottom: 1px solid var(--graphite-line);
}
.investimento__body {
  max-width: 760px;
  margin: 56px 0 0;
}
.investimento__intro {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-2);
  margin: 0 0 24px;
}
.investimento__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.investimento__list li {
  position: relative;
  padding-left: 32px;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.investimento__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-family: var(--ff-mono);
  font-weight: 600;
}
.investimento__closing {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 36px;
  letter-spacing: -0.01em;
}
@media (max-width: 720px) {
  .investimento__list li { font-size: 1rem; padding-left: 28px; }
  .investimento__closing { font-size: 1.2rem; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
}
.footer__social svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s var(--ease);
}
.footer__social:hover svg {
  opacity: 1;
}


.footer {
  background: #0F1317;
  color: var(--ink-on-dark-2);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(251, 250, 248, 0.08);
}
.footer__inner { display: flex; flex-direction: column; gap: 50px; }
.footer__brand { display: flex; align-items: center; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 900px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 560px) {
  .footer__cols { grid-template-columns: 1fr; }
}
.footer__col h4 {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer__col p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0 0 14px;
}
.footer__col a {
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 250, 248, 0.1);
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--ink-on-dark-3);
  letter-spacing: 0.04em;
}
@media (max-width: 720px) {
  .footer__bottom { flex-direction: column; gap: 10px; }
}

/* =========================================================
   WHATSAPP FLOATING
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  z-index: 100;
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

/* =========================================================
   ANIMAÇÕES
   ========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   ACESSIBILIDADE
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Hero LCP: imagem mais leve no mobile (mesmo overlay) */
@media (max-width: 768px) {
  .hero__bg {
    background-image:
      linear-gradient(180deg,
        rgba(29, 36, 43, 0.35) 0%,
        rgba(29, 36, 43, 0.6) 60%,
        rgba(29, 36, 43, 0.95) 100%
      ),
      url('images/hero/hero-bg-mobile.webp');
  }
}
