/* ============================================================
   Reconecta Oficial · Home
   Reconstruída do zero (deixa de Framer) seguindo Figma desktop+mobile
   Mobile-first, responsivo de verdade.
   ============================================================ */

/* ============================================================
   FONTES (self-hosted, mesmas das outras paginas)
   ============================================================ */
@font-face {
  font-family: 'Sfizia Bold';
  src: url('../_shared/assets/fonts/sfizia-bold.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sfizia Regular';
  src: url('../_shared/assets/fonts/sfizia-regular.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bebas Neue';
  src: url('../_shared/assets/fonts/bebas-neue.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   TOKENS · cores e fontes Reconecta Oficial
   ============================================================ */
:root {
  --bg-black:           #000000;
  --bg-black-elevated:  #121111;
  --red-institucional:  #6B0F0F;
  --red-depth:          #4C000D;
  --red-cta:            #D3111B;
  --cream-gold:         #FFE1A6;
  --white:              #FFFFFF;
  --white-soft:         rgba(255, 255, 255, 0.78);
  --white-faint:        rgba(255, 255, 255, 0.50);

  --font-display:       'Sfizia Bold', Georgia, 'Times New Roman', serif;
  --font-body:          'Sfizia Regular', 'Inter', system-ui, -apple-system, sans-serif;
  --font-ui:            'Inter', system-ui, -apple-system, sans-serif;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.page {
  background: var(--bg-black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0 !important; height: 0 !important; }
html, body { scrollbar-width: none !important; }

/* ============================================================
   SITE HEADER · navbar transparente sobre hero, sticky depois
   ============================================================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
}

.navbar {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

/* Coluna 2 (nav) sempre central; coluna 3 (CTA) sempre à direita */
.navbar__links { justify-self: center; }
.navbar__cta   { justify-self: end; }

.navbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.navbar__logo img {
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar__logo-icon { height: 28px; }
.navbar__logo-text { height: 12px; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--white);
}

.navbar__links a {
  transition: color 0.2s;
}

.navbar__links a:hover {
  color: var(--cream-gold);
}

.navbar__cta {
  background: var(--cream-gold);
  color: var(--red-depth);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 28px;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Garantir nav inteira em 1 linha (sem wrap) */
.navbar {
  flex-wrap: nowrap;
}

.navbar__links { flex-shrink: 1; min-width: 0; }
.navbar__logo  { flex-shrink: 0; }

.navbar__cta:hover {
  background: var(--white);
}

/* ============================================================
   Mobile navbar: tudo mais encorpado (estilo Framer original)
   ============================================================ */

/* ============================================================
   Mobile navbar (≤ 700): 2 linhas como Figma mobile
   Linha 1: logo centralizado
   Linha 2: Sobre · Clientes · Contato | [Login] (lado a lado)
   Implementação: flex wrap + logo width 100% → quebra natural
   ============================================================ */
/* Mobile (≤ 700): valores EXATOS do Figma frame 86:89 (mobile 390px)
   - Logo total: 175x32px (icon ~36x32, text ~135x14)
   - Linha 1: logo centralizado em y=19
   - Linha 2: Sobre/Clientes/Contato à ESQUERDA + Login à DIREITA em y=70-75
   - Nav font 12.8px gap 35px; CTA font 12.8px padding ~6px 22px (81x28) */
@media (max-width: 700px) {
  .site-header {
    padding: 14px 0 10px;
  }
  /* Grid 4 colunas iguais: 3 cols pros links + 1 pro Login.
     Linha 1: logo (span all). Linha 2: 4 itens uniformes. */
  .navbar {
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 6px;
    row-gap: 12px;
    align-items: center;
    justify-items: stretch;
  }
  .navbar__logo {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-content: center;
    justify-self: center;
    gap: 8px;
    width: auto;
  }
  /* 3 links nas colunas 1-3 */
  .navbar__links {
    grid-column: 1 / 4;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    font-size: 14px;
    width: 100%;
    justify-self: stretch;
  }
  .navbar__links li {
    text-align: center;
  }
  .navbar__links a {
    display: block;
    font-weight: 500;
    padding: 6px 0;
  }
  /* Login na coluna 4: mesma altura visual, com border cream-gold */
  .navbar__cta {
    grid-column: 4 / 5;
    grid-row: 2;
    text-align: center;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
    color: var(--cream-gold);
    border: 1.5px solid var(--cream-gold);
    border-radius: 2px;
    justify-self: stretch;
    width: 100%;
    line-height: 1;
  }
  .navbar__cta:hover {
    background: var(--cream-gold);
    color: var(--red-depth);
  }
  .navbar__logo-icon { height: 30px; }
  .navbar__logo-text { height: 13px; }
}

/* Mobile médio (≤ 480) */
@media (max-width: 480px) {
  .navbar__links { font-size: 13.5px; }
  .navbar__cta { font-size: 13.5px; }
  .navbar__logo-icon { height: 28px; }
  .navbar__logo-text { height: 12px; }
}

/* Mobile pequeno (<360) */
@media (max-width: 360px) {
  .navbar__links { font-size: 12.5px; }
  .navbar__cta { font-size: 12.5px; }
  .navbar__logo-icon { height: 26px; }
  .navbar__logo-text { height: 11px; }
}

/* ============================================================
   HERO · S0/S1
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background: imagem cobrindo + escurecimento radial nas bordas */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../_shared/assets/imgs/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

/* Mobile: mulher concentrada na metade INFERIOR (Figma), topo respira preto.
   Imagem paisagem (1648x1000) → forço altura = 60% do hero e colo embaixo.
   Mulher na foto está em ~63% horizontal, então uso bg-position: 63% pra centralizar. */
/* hero__bg-mobile: replica EXATA do Figma frame 86:89.
   Figma source (390x689):
     - Container "BG Início" (86:79): 926×417, top=272, left=calc(12.5%+1.25), translateX(-50%)
     - Img dentro: 111.51% × 150.58%, offset left=-11.51% top=-12.7%
   Hidden por padrão; só ativa em mobile */
.hero__bg-mobile-wrap {
  display: none;
}

@media (max-width: 700px) {
  /* desativa BG image desktop */
  .hero__bg {
    display: none;
  }

  /* Hero mobile = primeira dobra inteira (sem scroll).
     Texto compacto em cima + imagem flexível ocupando o resto. */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
  }

  /* Imagem mulher: vira flex item que preenche o resto da viewport
     (não mais position absolute). Order: 2 pra ficar EMBAIXO do texto. */
  .hero__bg-mobile-wrap {
    display: block;
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    flex: 1 1 auto;
    min-height: 180px;
    top: auto;
    bottom: auto;
    left: auto;
    transform: none;
    overflow: hidden;
    pointer-events: none;
    order: 2;
  }

  .hero__bg-mobile {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* mulher na imagem está em ~63% horizontal. Pra centralizar ela no frame
       (object-fit cover c/ frame portrait + imagem landscape), uso ~70%
       que centraliza mulher + auréola completa */
    object-position: 70% 36%;
    max-width: none;
    display: block;
  }

  /* Overlay sutil só sobre a imagem (não cobre o texto) */
  .hero__overlay {
    display: none;
  }
}

/* Overlay sutil pra texto legivel sobre BG vermelho */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.10) 50%, rgba(0,0,0,0.30) 100%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(0,0,0,0.45) 0%, transparent 60%);
}

/* Mobile: overlay leve sobre a imagem (parte inferior) — topo já é preto
   por causa do bg-color, então aqui só suavizo a transição */
@media (max-width: 700px) {
  .hero__overlay {
    background:
      linear-gradient(180deg,
        transparent 0%,
        transparent 40%,
        rgba(0,0,0,0.20) 60%,
        rgba(0,0,0,0.40) 100%);
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 24px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  min-height: 100svh;
}

/* H1: Sfizia Bold cream-gold uppercase
   Figma exato: 4 linhas (RECONECTANDO/QUEM VOCÊ É/E COMO VOCÊ/É VISTA.) com ponto final.
   Tamanho proporcional ao Figma (~54px desktop, ~28px mobile) */
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream-gold);
  text-transform: uppercase;
  margin: 0 0 20px;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .hero__title { max-width: 600px; }
}

/* Subtitle: Inter Regular branco. Figma desktop = 32px, mobile = 16px */
.hero__subtitle {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  max-width: 590px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* Desktop: hero alinhado a ESQUERDA com padding lateral igual Figma (left ~18.75% do viewport)
   Figma: left = 18.75% - 120px = ~240px em 1920 → usar clamp(40px, 14vw, 280px) */
@media (min-width: 1024px) {
  .hero__inner {
    text-align: left;
    /* Figma left=18.75% do viewport (~270px em 1440 / ~360px em 1920) */
    padding-left: clamp(80px, 17vw, 360px);
    padding-right: 64px;
    padding-top: clamp(200px, 22vw, 340px);
    padding-bottom: 60px;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: none;
  }
  .hero__subtitle { margin: 0; max-width: 590px; }
}

/* Mobile (≤ 700): tamanhos EXATOS Figma frame 86:89
   - H1: 28px Sfizia Bold cream-gold, top=149, 4 linhas centradas
   - Sub: 16px Inter Regular branco, top=305, max-width=296
   - Hero S1 height total = 689 no Figma (mobile 390x689) */
@media (max-width: 700px) {
  .hero__inner {
    padding: 64px 22px 18px;
    text-align: center !important;
    align-items: center !important;
    justify-content: flex-start;
    min-height: auto;
    flex: 0 0 auto;
    max-width: none;
    order: 1;
    gap: 18px;
    margin-top: 95px;
  }
  .hero__title {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: none !important;
    font-size: 42px !important;           /* aumentado: era 32px */
    line-height: 1 !important;
    letter-spacing: -0.03em !important;
    font-weight: 400 !important;
  }
  .hero__title-line {
    text-align: center;
    display: block;
  }
  .hero__subtitle {
    text-align: center !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    color: rgba(255,255,255,0.92) !important;
  }
}

/* iPhone SE / pequenos: leve redução */
@media (max-width: 380px), (max-height: 700px) {
  .hero__inner {
    padding: 48px 18px 14px;
    gap: 12px;
    margin-top: 82px;
  }
  .hero__title { font-size: 36px !important; }
  .hero__subtitle { font-size: 14.5px !important; max-width: 300px !important; line-height: 1.35 !important; }
}

/* ============================================================
   S1 · QUEM SOMOS
   BG preto com folhas decorativas nos cantos inferiores
   Linhas separadoras top + bottom em gradient cream-gold
   ============================================================ */
.quem-somos {
  position: relative;
  background:
    url('../_shared/assets/imgs/quem-somos-bg.jpg') no-repeat center center / 100% auto,
    var(--bg-black);
  padding: 80px 24px 100px;
  text-align: center;
  min-height: 360px;
}

@media (min-width: 1024px) {
  .quem-somos {
    background-size: cover;
    min-height: 645px;
    padding: 140px 24px 140px;
  }
}

/* Linhas separadoras (gradient cream-gold, fade nas pontas) */
.quem-somos::before,
.quem-somos::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 225, 166, 0.7) 30%,
    rgba(255, 225, 166, 0.7) 68.5%,
    transparent 100%);
  pointer-events: none;
}

.quem-somos::before { top: 0; }
.quem-somos::after  { bottom: 0; }

.quem-somos__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}

.quem-somos__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem); /* Figma: 38px desktop / 24px mobile */
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--cream-gold);
  text-transform: uppercase;
  margin: 0 0 20px;
  position: relative;
  display: inline-block;
}

/* Separador dourado pequeno depois do título — âncora visual */
.quem-somos__title::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  background: var(--cream-gold);
  margin: 18px auto 0;
  opacity: 0.7;
}

.quem-somos__text {
  font-family: var(--font-ui);
  font-size: clamp(0.875rem, 1.5vw, 1.5rem); /* Figma: 24px desktop / 14px mobile */
  font-weight: 400;
  line-height: 1.55;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto;
}

/* Mobile: padding apertado + fontes legíveis */
@media (max-width: 700px) {
  .quem-somos {
    padding: 48px 22px 56px;
    min-height: auto;
  }
  .quem-somos__title {
    font-size: 1.65rem;
    margin-bottom: 12px;
  }
  .quem-somos__title::after {
    width: 52px;
    margin-top: 14px;
  }
  .quem-somos__text {
    font-size: 1rem;
    line-height: 1.55;
    max-width: 340px;
  }
}

/* ============================================================
   S2 · LEONARDO ROSSO
   BG gradient vermelho institucional → preto (radial profundo)
   Desktop: foto à esquerda + texto à direita
   Mobile: empilhado (foto top, depois texto, tagline e bullets)
   ============================================================ */
.leo {
  position: relative;
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(107, 15, 15, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, var(--red-institucional) 0%, var(--red-institucional) 60%, #0d0c0c 100%);
  padding: 80px 24px 100px;
  overflow: hidden;
}

.leo__inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Bloco intro: foto + nome + descrição (desktop side-by-side, mobile stacked) */
.leo__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
}

.leo__foto {
  margin: 0;
  width: 100%;
  max-width: 360px;
}

.leo__foto img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.leo__bloco {
  text-align: center;
  max-width: 540px;
}

.leo__nome {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.leo__divider {
  border: none;
  height: 1px;
  background: var(--cream-gold);
  margin: 0 0 16px;
  width: 100%;
}

.leo__desc {
  font-family: var(--font-ui);
  font-size: clamp(0.875rem, 1.4vw, 1.5rem);
  line-height: 1.55;
  color: var(--white);
  margin: 0;
  font-weight: 400;
}

.leo__desc strong {
  font-weight: 700;
  color: var(--white);
}

/* Tagline central */
.leo__tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.75rem);
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  max-width: 1141px;
  margin: 0 auto 48px;
  letter-spacing: -0.01em;
}

.leo__tagline-destaque {
  color: var(--cream-gold);
  font-weight: 400;
  font-style: normal;
}

/* Lista de bullets */
.leo__bullets {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1103px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.leo__bullet {
  position: relative;
  padding-left: 60px;
  font-family: var(--font-ui);
  font-size: clamp(0.875rem, 1.4vw, 1.5rem);
  line-height: 1.55;
  color: var(--white);
  font-weight: 400;
}

/* Bullet decorativo: círculo cream-gold sólido com halo expandido */
.leo__bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      var(--cream-gold) 0%,
      var(--cream-gold) 32%,
      rgba(255, 225, 166, 0.35) 34%,
      rgba(255, 225, 166, 0.18) 70%,
      transparent 100%);
  box-shadow:
    0 0 0 1px rgba(255, 225, 166, 0.30),
    0 0 28px rgba(255, 225, 166, 0.20);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
}

/* DESKTOP: 2 colunas (foto à esquerda, texto à direita) */
@media (min-width: 1024px) {
  .leo {
    padding: 120px 64px 140px;
  }
  .leo__intro {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    margin-bottom: 96px;
  }
  .leo__foto {
    max-width: 527px;
    flex-shrink: 0;
  }
  .leo__bloco {
    text-align: left;
    max-width: 540px;
  }
}

/* ============================================================
   S2 extension · BLOCOS CEO (PA + Reconecta)
   Continuação do BG vermelho da S2, foto + legenda
   ============================================================ */
.leo__ceos {
  position: relative;
  max-width: 1014px;
  margin: 96px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.leo__ceo {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.leo__ceo-foto {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  max-height: 360px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.leo__ceo-foto:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 56px rgba(0,0,0,0.45);
}

.leo__ceo-foto--grande {
  max-height: 676px;
}

.leo__ceo-legenda {
  font-family: var(--font-ui);
  font-size: clamp(0.875rem, 1.4vw, 1.4rem);
  line-height: 1.55;
  color: var(--white);
  font-weight: 400;
  text-align: center;
  max-width: 1007px;
  margin: 0;
}

.leo__ceo-legenda strong {
  font-weight: 700;
  color: var(--white);
}

.leo__ceo-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 225, 166, 0.35) 20%,
    rgba(255, 225, 166, 0.70) 50%,
    rgba(255, 225, 166, 0.35) 80%,
    transparent 100%);
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .leo__ceos {
    margin-top: 140px;
    padding: 0 64px;
    gap: 100px;
  }
  .leo__ceo-legenda {
    text-align: center;
    padding: 0 32px;
  }
}

/* MOBILE: fontes legíveis + paddings respirados (não excessivos) */
@media (max-width: 700px) {
  .leo {
    padding: 48px 22px 56px;
  }
  .leo__ceos {
    margin-top: 40px;
    padding: 0;
    gap: 32px;
  }
  .leo__ceo {
    gap: 18px;
  }
  .leo__ceo-foto {
    max-height: 260px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .leo__ceo-foto--grande {
    max-height: 280px;
  }
  .leo__ceo-legenda {
    font-size: 0.95rem;
    padding: 0 4px;
    line-height: 1.55;
  }
  .leo__ceo-divider {
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 225, 166, 0.4) 20%,
      rgba(255, 225, 166, 0.7) 50%,
      rgba(255, 225, 166, 0.4) 80%,
      transparent 100%);
    height: 1px;
    margin: 4px auto;
    max-width: 280px;
  }
  .leo__intro {
    gap: 22px;
    margin-bottom: 36px;
  }
  .leo__foto {
    max-width: 320px;
  }
  .leo__foto img {
    box-shadow: 0 10px 32px rgba(0,0,0,0.4);
  }
  .leo__nome {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .leo__desc {
    font-size: 1rem;
    max-width: none;
    margin: 0 auto;
    line-height: 1.55;
  }
  .leo__tagline {
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: none;
    line-height: 1.4;
  }
  .leo__bullets {
    gap: 18px;
    max-width: none;
  }
  .leo__bullet {
    font-size: 1rem;
    padding-left: 36px;
    line-height: 1.55;
    text-align: left;
  }
  .leo__bullet::before {
    width: 22px;
    height: 22px;
    top: 4px;
    box-shadow:
      0 0 0 1px rgba(255, 225, 166, 0.30),
      0 0 16px rgba(255, 225, 166, 0.25);
  }
}

/* ============================================================
   S3 · SOBRE O NOSSO TRABALHO
   BG cream-gold solid + texto red-institucional + lista de 4 servicos
   ============================================================ */
.trabalho {
  background: var(--cream-gold);
  color: var(--red-institucional);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trabalho__inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.trabalho__header {
  margin-bottom: 56px;
}

.trabalho__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem); /* Figma: 38px desktop / 24px mobile */
  letter-spacing: -0.015em;
  color: var(--red-institucional);
  text-transform: uppercase;
  margin: 0 0 28px;
  line-height: 1.2;
}

.trabalho__intro {
  font-family: var(--font-ui);
  font-size: clamp(0.875rem, 1.5vw, 1.5rem); /* Figma: 24px desktop / 14px mobile */
  line-height: 1.55;
  color: var(--red-institucional);
  margin: 0 auto;
  max-width: 880px;
  font-weight: 400;
}

/* Corpo: lista esquerda + media (foto + logo decor) direita */
.trabalho__corpo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.trabalho__lista {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: center;
}

.trabalho__media {
  position: relative;
  width: 100%;
  max-width: 487px;
  display: flex;
  justify-content: center;
}

.trabalho__foto {
  margin: 0;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(76, 0, 13, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(107, 15, 15, 0.15);
  position: relative;
  z-index: 2;
}

.trabalho__foto img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.trabalho__logo-decor {
  display: none; /* só aparece em desktop como overlay decorativo */
}

.trabalho__item {
  position: relative;
}

.trabalho__item-titulo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--red-institucional);
  text-transform: uppercase;
  margin: 0 0 6px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Bullet sólido cream-gold-escuro com halo */
.trabalho__item-titulo::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      var(--red-institucional) 0%,
      var(--red-institucional) 50%,
      rgba(107, 15, 15, 0.30) 55%,
      transparent 100%);
  box-shadow:
    0 0 0 1px rgba(107, 15, 15, 0.20),
    0 2px 4px rgba(76, 0, 13, 0.15);
  flex-shrink: 0;
}

.trabalho__item-desc {
  font-family: var(--font-ui);
  font-size: clamp(0.9rem, 1.4vw, 1.4rem);
  line-height: 1.5;
  color: var(--red-institucional);
  margin: 0;
  font-weight: 400;
}

/* Logo Reconecta (red-institucional com baixa opacidade) - simbolo decorativo */
.trabalho__logo,
.trabalho__logo-decor {
  /* SVG nasce em #6B0F0F. Como o BG é cream-gold, mantemos cor com baixa opacidade
     pra criar marca-d'água sutil em vez de sumir no cream→cream */
  opacity: 0.10;
}

/* DESKTOP: 2 COLUNAS - Lista esquerda + Foto+Logo decorativa direita */
@media (min-width: 1024px) {
  .trabalho {
    padding: 120px 64px 140px;
  }
  .trabalho__inner {
    max-width: 1320px;
  }
  .trabalho__header {
    margin-bottom: 64px;
    text-align: center;
  }
  .trabalho__corpo {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
  }
  .trabalho__lista {
    text-align: left;
    max-width: 500px;
    gap: 32px;
    flex-shrink: 0;
  }
  .trabalho__media {
    max-width: 487px;
    flex-shrink: 0;
    overflow: visible;
  }
  .trabalho__logo-decor {
    display: block;
    position: absolute;
    right: -140px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: auto;
    pointer-events: none;
    opacity: 0.12;
    z-index: 1;
  }
}

@media (min-width: 1280px) {
  .trabalho__logo-decor {
    right: -180px;
    width: 420px;
  }
}

/* Mobile: fontes legíveis + paddings respirados */
@media (max-width: 700px) {
  .trabalho {
    padding: 48px 22px 56px;
  }
  .trabalho__header {
    margin-bottom: 28px;
  }
  .trabalho__title {
    font-size: 1.65rem;
    margin-bottom: 14px;
  }
  .trabalho__intro {
    font-size: 1rem;
    max-width: 340px;
    line-height: 1.55;
  }
  .trabalho__corpo {
    gap: 28px;
  }
  .trabalho__lista {
    gap: 18px;
    margin-bottom: 0;
    max-width: 340px;
  }
  .trabalho__item-titulo {
    font-size: 1.1rem;
  }
  .trabalho__item-desc {
    font-size: 0.95rem;
    padding-left: 24px;
  }
  .trabalho__media {
    max-width: 340px;
  }
}

/* ============================================================
   S4 · MANIFESTO (Figma mobile node 90:403 - 390x1046)
   Mobile = source of truth. Desktop escala proporcional.
   ============================================================ */
.manifesto {
  position: relative;
  background: var(--red-institucional);
  overflow: hidden;
  isolation: isolate;
}

.manifesto__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* Overlay vinhetado pra dar profundidade ao centro */
.manifesto::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, transparent 0%, rgba(0,0,0,0.25) 70%, rgba(0,0,0,0.40) 100%);
  pointer-events: none;
}

.manifesto__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Headline: "Somos só" (regular) + "uma possibilidade..." (bold)
   Mobile Figma: 28px, cream-gold, uppercase, width 280, top 56 */
.manifesto__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream-gold);
  text-transform: uppercase;
  max-width: 280px;
  margin: 0 0 32px;
  text-wrap: balance;
  position: relative;
}

/* Separador cream-gold pequeno entre headline e sub */
.manifesto__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--cream-gold);
  margin: 28px auto 0;
  opacity: 0.65;
}

.manifesto__title-line {
  display: inline;
}

.manifesto__title-line--light {
  font-weight: 400;
}

.manifesto__title-line--bold {
  font-weight: 800;
}

/* Sub: Inter Regular 20px branco, width 289, top 348 (gap ~64 da headline) */
.manifesto__sub {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  max-width: 320px;
  margin: 0 0 56px;
  text-wrap: pretty;
  opacity: 0.92;
}

/* Ícones grid 2x2 (Figma: ~92x92 cada, gaps ~30px) */
.manifesto__icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 32px 30px;
  justify-content: center;
  align-items: center;
}

.manifesto__icon {
  position: relative;
  width: 92px;
  height: 92px;
  transition: transform 0.3s ease;
}

.manifesto__icon:hover {
  transform: translateY(-3px) scale(1.04);
}

.manifesto__icon-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

/* Ring SVG (gradient red→cream→red) atrás do ícone */
.manifesto__icon-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(255, 225, 166, 0.25));
}

/* Desktop: headline maior, sub maior, ícones maiores em linha horizontal */
@media (min-width: 1024px) {
  .manifesto__inner {
    padding: 140px 64px 160px;
    max-width: 1100px;
  }
  .manifesto__title {
    font-size: clamp(42px, 4vw, 64px);
    max-width: 880px;
    margin-bottom: 48px;
    line-height: 1.2;
  }
  .manifesto__sub {
    font-size: clamp(20px, 1.6vw, 26px);
    max-width: 620px;
    margin-bottom: 90px;
  }
  .manifesto__icons {
    grid-template-columns: repeat(4, auto);
    gap: 48px;
  }
  .manifesto__icon {
    width: 140px;
    height: 140px;
  }
}

/* Mobile (≤700): fontes ajustadas + gaps compactos */
@media (max-width: 700px) {
  .manifesto__inner {
    padding: 56px 22px 72px;
  }
  .manifesto__title {
    font-size: 30px;
    max-width: 320px;
    margin-bottom: 24px;
  }
  .manifesto__title::after {
    margin-top: 22px;
    width: 52px;
  }
  .manifesto__sub {
    font-size: 17px;
    max-width: 320px;
    margin-bottom: 40px;
  }
  .manifesto__icons {
    gap: 24px 22px;
  }
  .manifesto__icon { width: 88px; height: 88px; }
}

/* Mobile pequeno: leve redução */
@media (max-width: 360px) {
  .manifesto__title { font-size: 26px; max-width: 280px; }
  .manifesto__sub { font-size: 16px; max-width: 280px; }
  .manifesto__icon { width: 80px; height: 80px; }
}

/* ============================================================
   S6 · ULTIMA SESSÃO (Figma mobile node 90:400 - 390x1061)
   BG cream-gold + 3 CTAs + redes sociais + nav + disclaimer
   ============================================================ */
.ultima {
  background: var(--cream-gold);
  color: var(--red-institucional);
}

.ultima__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 56px 22px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Wrapper opcional pros 3 CTAs (caso queira agrupar — usamos seletor de irmão) */
.ultima__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  /* card sutil: borda fina + leve highlight pra "ancorar" cada CTA */
  padding: 22px 20px;
  background: rgba(107, 15, 15, 0.04);
  border: 1px solid rgba(107, 15, 15, 0.18);
  border-radius: 4px;
  width: 100%;
  max-width: 360px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.ultima__cta:hover {
  background: rgba(107, 15, 15, 0.08);
  border-color: rgba(107, 15, 15, 0.35);
  transform: translateY(-2px);
}

.ultima__cta-titulo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--red-institucional);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.ultima__cta-titulo--ajuda {
  color: var(--red-depth);
  max-width: 315px;
}

.ultima__cta-botao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red-institucional);
  color: var(--cream-gold);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  padding: 12px 26px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  border: none;
  box-shadow: 0 2px 0 rgba(76, 0, 13, 0.3);
}

.ultima__cta-botao:hover {
  background: var(--red-depth);
  transform: translateY(-1px);
  box-shadow: 0 4px 0 rgba(76, 0, 13, 0.4);
}

.ultima__cta--ajuda {
  margin-bottom: 36px;
}

/* Redes sociais (mais peso visual + box) */
.ultima__redes {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.ultima__redes a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(107, 15, 15, 0.3);
  border-radius: 50%;
  transition: opacity 0.2s, transform 0.2s, border-color 0.2s, background 0.2s;
  background: transparent;
}

.ultima__redes a:hover {
  border-color: var(--red-institucional);
  background: rgba(107, 15, 15, 0.08);
  transform: scale(1.05);
}

.ultima__redes img {
  display: block;
  width: 32px;
  height: 32px;
}

/* Nav rodapé (Inter Regular 22px gap 52px) */
.ultima__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ultima__nav a {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 500;
  color: var(--red-institucional);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.ultima__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--red-depth);
  transition: width 0.25s;
}

.ultima__nav a:hover { color: var(--red-depth); }
.ultima__nav a:hover::after { width: 100%; }

/* Divider gradient mais largo e visível */
.ultima__divider {
  width: 100%;
  max-width: 520px;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(107, 15, 15, 0.45) 25%,
    rgba(107, 15, 15, 0.65) 50%,
    rgba(107, 15, 15, 0.45) 75%,
    transparent 100%);
  margin: 0 0 22px;
}

/* Disclaimer com mais respiro */
.ultima__disclaimer {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(107, 15, 15, 0.85);
  max-width: 720px;
  text-align: center;
}

.ultima__disclaimer p {
  margin: 0 0 12px;
}

.ultima__disclaimer p:last-child {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--red-institucional);
}

/* Desktop: 3 CTAs em GRID horizontal + layout mais espaçoso */
@media (min-width: 1024px) {
  .ultima__inner {
    padding: 110px 64px 80px;
  }

  /* Container dos 3 CTAs vira grid de 3 colunas no desktop
     Hack sem JS: usamos display:contents no .ultima__inner não funciona com 3 filhos não-CTA depois.
     Solução: aplicar grid no .ultima__inner e tratar elementos não-CTA com grid-column: 1/-1 */
  .ultima__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 0;
    justify-items: center;
  }

  .ultima__cta {
    margin-bottom: 0;
    max-width: 100%;
    height: 100%;
    padding: 40px 32px;
    gap: 28px;
  }

  .ultima__cta--ajuda { margin-bottom: 0; }

  .ultima__cta-titulo {
    font-size: 28px;
    min-height: 2.2em;
  }

  .ultima__cta-botao {
    font-size: 17px;
    padding: 14px 32px;
  }

  /* Elementos full-width depois dos 3 CTAs */
  .ultima__redes,
  .ultima__nav,
  .ultima__divider,
  .ultima__disclaimer {
    grid-column: 1 / -1;
    width: 100%;
  }

  .ultima__redes {
    margin-top: 70px;
    margin-bottom: 48px;
  }

  .ultima__redes a { width: 72px; height: 72px; }
  .ultima__redes img { width: 36px; height: 36px; }

  .ultima__nav a { font-size: 22px; }

  .ultima__divider { max-width: 640px; }

  .ultima__disclaimer {
    max-width: 820px;
    font-size: 13px;
  }
}

/* ============================================================
   FOOTER (Figma mobile node 90:399 - 390x60)
   BG preto, copyright + legal links
   ============================================================ */
.page-footer {
  background: #000;
  color: var(--white);
  padding: 22px 20px 22px;
}

.page-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.page-footer__copyright {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* SVG vem com preserveAspectRatio="none" — precisa width fixo proporcional
   ao viewBox (62.291 x 6 → ratio 10.38:1) pra não esticar. */
.page-footer__logo {
  width: 83px;
  height: 8px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.page-footer__year {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.page-footer__legal {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 0;
}

.page-footer__legal a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.page-footer__legal a:hover {
  color: var(--cream-gold);
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .page-footer { padding: 28px 24px 28px; }
  .page-footer__copyright { font-size: 14px; }
  .page-footer__year { font-size: 13px; }
  .page-footer__legal { font-size: 13px; }
  .page-footer__logo { height: 10px; width: 104px; }
}

/* Visually hidden util (acessível mas invisível) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Reduce motion + Focus
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--cream-gold);
  outline-offset: 3px;
}
