/* Empire Assessoria de Marketing — v2
   Mobile first. Paleta da logo: laranja #FF3300, preto, branco.
   Assinatura: o "skyline" — pilares com o topo inclinado do símbolo, que carregam os números. */

:root {
  --laranja: #ff3300;
  --laranja-texto: #d42a00;
  --preto: #111010;
  --grafite: #1f1d1c;
  --grafite-2: #2c2927;
  --branco: #ffffff;
  --papel: #f4f2f0;
  --texto-2: #5b5552;
  --texto-inv-2: #b8b0ab;
  --linha: #e4dfdb;
  --linha-inv: #34302e;

  --f-display: "Archivo", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --f-corpo: "Public Sans", "Helvetica Neue", Arial, sans-serif;

  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 144px;

  --max: 1240px;
  --gutter: 20px;
  --nav-h: 64px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --grao: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  color-scheme: light;
}
@media (min-width: 720px)  { :root { --gutter: 40px; --nav-h: 80px; } }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--branco);
  color: var(--preto);
  font-family: var(--f-corpo);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (min-width: 720px) { body { font-size: 17px; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--preto); outline-offset: 3px; }
.inv :focus-visible, .rodape :focus-visible { outline-color: var(--laranja); }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- tipografia ---------- */

.rotulo {
  font-family: var(--f-display);
  font-stretch: 62%;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 720px) { .rotulo { font-size: 14px; } }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 115%;
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}
h2 { font-size: clamp(2.1rem, 8.4vw, 4.4rem); }
h3 { font-size: 1.45rem; font-weight: 800; line-height: 1.1; }
@media (min-width: 720px) { h1, h2, h3 { font-stretch: 125%; } }

p { margin: 0; text-wrap: pretty; }
.lead { font-size: 1.1rem; line-height: 1.5; }
@media (min-width: 720px) { .lead { font-size: 1.25rem; } }

/* ---------- botões ---------- */

.btn {
  --seta: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  min-height: 56px;
  padding: 0 var(--s5);
  font-family: var(--f-display);
  font-stretch: 100%;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 160ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn .seta { transition: transform 200ms var(--ease); transform: translateX(var(--seta)); }
@media (hover: hover) { .btn:hover { --seta: 4px; } }

.btn--preto { background: var(--preto); color: var(--branco); }
.btn--laranja { background: var(--laranja); color: var(--preto); }
.btn--branco { background: var(--branco); color: var(--preto); }
.btn--bloco { width: 100%; }
@media (min-width: 720px) { .btn--bloco { width: auto; } }
@media (hover: hover) {
  .btn--preto:hover { background: var(--grafite-2); }
  .btn--laranja:hover { background: var(--branco); }
  .btn--branco:hover { background: var(--laranja); }
}

/* ---------- navbar ---------- */

.nav {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 30;
  background: var(--branco);
  border-bottom: 1px solid var(--linha);
}
.nav__inner {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  height: var(--nav-h);
  gap: var(--s3);
}
.nav__logo { justify-self: center; display: block; }
.nav__logo img { height: 26px; width: auto; }
.icone-btn {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}
.icone-btn svg { width: 24px; height: 24px; }
.nav__whats { background: var(--preto); color: var(--branco); justify-self: end; }
.hamburguer { display: grid; gap: 6px; width: 24px; }
.hamburguer i { display: block; height: 2px; background: currentColor; transition: transform 200ms var(--ease); }
.hamburguer i:last-child { width: 16px; }
.nav__inner > nav, .nav__links, .nav__cta { display: none; }

@media (min-width: 1000px) {
  .nav__inner { grid-template-columns: 1fr auto 1fr; }
  .nav__logo img { height: 32px; }
  .nav__menu-btn, .nav__whats { display: none; }
  .nav__inner > nav { display: block; }
  .nav__links {
    display: flex;
    gap: var(--s6);
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav__links a {
    font-family: var(--f-display);
    font-stretch: 62%;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    padding-block: var(--s3);
    background: linear-gradient(var(--laranja), var(--laranja)) left bottom / 0 2px no-repeat;
    transition: background-size 220ms var(--ease);
  }
  .nav__links a:hover { background-size: 100% 2px; }
  .nav__cta { display: inline-flex; justify-self: end; min-height: 48px; font-size: 15px; }
}

/* menu mobile em tela cheia */
.menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--laranja);
  padding: calc(env(safe-area-inset-top, 0px) + var(--s3)) var(--gutter) calc(env(safe-area-inset-bottom, 0px) + var(--s5));
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.menu[hidden] { display: none; }
.menu__topo { display: flex; justify-content: space-between; align-items: center; height: calc(var(--nav-h) - var(--s3)); }
.menu__topo img { height: 26px; width: auto; }
.menu ul { list-style: none; margin: var(--s7) 0 0; padding: 0; display: grid; }
.menu li a {
  display: block;
  font-family: var(--f-display);
  font-stretch: 115%;
  font-weight: 900;
  font-size: clamp(2.2rem, 11vw, 3.4rem);
  line-height: 1.1;
  text-decoration: none;
  padding-block: var(--s2);
  border-bottom: 2px solid var(--preto);
}
.menu__rodape { margin-top: auto; padding-top: var(--s7); display: grid; gap: var(--s4); }
.menu__rodape p { font-size: 15px; }
@media (prefers-reduced-motion: no-preference) {
  .menu:not([hidden]) li { animation: sobe 420ms var(--ease) both; }
  .menu li:nth-child(2) { animation-delay: 40ms; }
  .menu li:nth-child(3) { animation-delay: 80ms; }
  .menu li:nth-child(4) { animation-delay: 120ms; }
  .menu li:nth-child(5) { animation-delay: 160ms; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--laranja);
  color: var(--preto);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grao);
  opacity: 0.16;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.hero__topo {
  display: flex;
  justify-content: space-between;
  gap: var(--s4);
  padding-top: var(--s6);
}
.hero__topo .rotulo:last-child { display: none; }

.hero h1 {
  font-size: clamp(2.5rem, 10.6vw, 7.6rem);
  line-height: 0.9;
  text-transform: uppercase;
  margin-top: var(--s5);
  letter-spacing: -0.02em;
}
.hero h1 .linha { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero h1 .linha > span { display: block; }
.hero h1 .mais { color: var(--branco); }

.hero__base {
  display: grid;
  gap: var(--s5);
  margin-top: var(--s6);
  padding-bottom: var(--s7);
}
.hero__base .lead { max-width: 40ch; }

@media (min-width: 720px) {
  .hero__topo { padding-top: var(--s8); }
  .hero__topo .rotulo:last-child { display: block; }
  .hero h1 { font-size: clamp(3rem, 9vw, 7.6rem); margin-top: var(--s6); }
  .hero__base {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: var(--s7);
    margin-top: var(--s7);
    padding-bottom: var(--s8);
  }
}

/* skyline: os pilares nascem da base do hero e "tocam o chão" da seção seguinte */
.skyline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  align-items: end;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pilar {
  --topo: 34px;
  clip-path: polygon(0 var(--topo), 100% 0, 100% 100%, 0 100%);
  background: var(--preto);
  color: var(--branco);
  padding: calc(var(--topo) + var(--s4)) var(--s4) var(--s4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--s1);
  font-variant-numeric: tabular-nums;
}
.pilar strong {
  font-family: var(--f-display);
  font-stretch: 112%;
  font-weight: 900;
  font-size: clamp(1.7rem, 8vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.pilar span { font-size: 14px; line-height: 1.35; color: var(--texto-inv-2); max-width: 22ch; }
.pilar--destaque { background: var(--branco); color: var(--preto); }
.pilar--destaque span { color: var(--texto-2); }
/* celular: o número principal ocupa a largura toda; os outros três formam uma fileira */
.pilar--destaque { grid-column: 1 / -1; }
.skyline { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pilar:not(.pilar--destaque) { --topo: 26px; padding: calc(var(--topo) + var(--s3)) var(--s3) var(--s3); }
.pilar:not(.pilar--destaque) strong { font-stretch: 100%; font-size: clamp(1.3rem, 5.6vw, 2rem); }
.pilar:not(.pilar--destaque) span { font-size: 12.5px; }
.pilar--destaque strong { font-size: clamp(2.6rem, 13vw, 3.6rem); }
/* alturas em degrau lembram o símbolo; não representam proporção entre os números */
.pilar:nth-child(1) { min-height: 200px; }
.pilar:nth-child(2) { min-height: 190px; }
.pilar:nth-child(3) { min-height: 172px; }
.pilar:nth-child(4) { min-height: 156px; }

@media (min-width: 900px) {
  .skyline { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
  .pilar--destaque { grid-column: auto; }
  .pilar, .pilar:not(.pilar--destaque) { --topo: 56px; padding: calc(var(--topo) + var(--s5)) var(--s5) var(--s5); }
  .pilar strong, .pilar:not(.pilar--destaque) strong, .pilar--destaque strong { font-stretch: 112%; font-size: clamp(1.8rem, 2.25vw, 2.6rem); }
  .pilar span, .pilar:not(.pilar--destaque) span { font-size: 15px; }
  .pilar:nth-child(1) { min-height: 360px; }
  .pilar:nth-child(2) { min-height: 310px; }
  .pilar:nth-child(3) { min-height: 270px; }
  .pilar:nth-child(4) { min-height: 235px; }
}

/* momento orquestrado: título sobe linha a linha, pilares crescem do chão */
@keyframes sobe { from { transform: translateY(105%); } }
@keyframes cresce { from { transform: translateY(46%); } }
@media (prefers-reduced-motion: no-preference) {
  .hero h1 .linha > span { animation: sobe 760ms var(--ease) both; }
  .hero h1 .linha:nth-child(2) > span { animation-delay: 70ms; }
  .hero h1 .linha:nth-child(3) > span { animation-delay: 140ms; }
  .skyline { overflow: hidden; }
  .pilar { animation: cresce 900ms var(--ease) both; animation-delay: 260ms; }
  .pilar:nth-child(2) { animation-delay: 320ms; }
  .pilar:nth-child(3) { animation-delay: 380ms; }
  .pilar:nth-child(4) { animation-delay: 440ms; }
}

/* ---------- serviços ---------- */

.servicos { padding-block: var(--s8) var(--s8); }
.secao-cab { display: grid; gap: var(--s4); margin-bottom: var(--s7); }
.secao-cab .rotulo { color: var(--laranja-texto); }
.secao-cab .lead { color: var(--texto-2); max-width: 46ch; }
@media (min-width: 900px) {
  .servicos { padding-block: var(--s10) var(--s9); }
  .secao-cab { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: end; gap: var(--s7); margin-bottom: var(--s8); }
}

.canais { display: grid; gap: var(--s3); }
@media (min-width: 900px) { .canais { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.canal {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: var(--s6);
  padding: var(--s6) var(--s5) 0;
  overflow: hidden;
  background: var(--papel);
}
.canal--escuro { background: var(--preto); color: var(--branco); }
.canal__texto { display: grid; gap: var(--s4); align-content: start; }
.canal__texto .rotulo { color: var(--laranja-texto); }
.canal--escuro .rotulo { color: var(--laranja); }
.canal__texto h3 { font-size: clamp(1.9rem, 7vw, 2.8rem); font-weight: 900; line-height: 0.98; }
.canal__texto > p { color: var(--texto-2); max-width: 44ch; }
.canal--escuro .canal__texto > p { color: var(--texto-inv-2); }
.entregas { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s2); }
.entregas li { display: flex; gap: var(--s3); align-items: baseline; font-size: 15px; font-weight: 600; }
.entregas li::before {
  content: "";
  flex: none;
  width: 9px;
  height: 11px;
  background: var(--laranja);
  clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 100%);
  transform: translateY(1px);
}
.canal__demo { display: grid; justify-items: center; align-content: end; }
.demo-legenda {
  font-size: 12px;
  color: var(--texto-2);
  margin-bottom: var(--s3);
  justify-self: center;
}
.canal--escuro .demo-legenda { color: var(--texto-inv-2); }
@media (min-width: 720px) { .canal { padding: var(--s7) var(--s7) 0; } }

/* demo: anúncio no feed */
.anuncio {
  width: min(320px, 100%);
  background: var(--branco);
  border: 1px solid var(--linha);
  border-bottom: 0;
  box-shadow: 0 -18px 40px -24px rgba(17, 16, 16, 0.35);
  font-size: 13px;
  color: var(--preto);
}
.anuncio__cab { display: flex; align-items: center; gap: var(--s2); padding: 10px 12px; }
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
  background: var(--laranja);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 13px;
  color: var(--preto);
}
.anuncio__cab b { display: block; font-size: 13px; line-height: 1.2; }
.anuncio__cab small { color: var(--texto-2); font-size: 11px; }
.anuncio__img {
  aspect-ratio: 1 / 1;
  background: var(--preto);
  color: var(--branco);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--s5);
  position: relative;
  overflow: hidden;
}
.anuncio__img::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -6%;
  width: 62%;
  aspect-ratio: 1;
  background: var(--laranja);
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}
.anuncio__img span {
  font-family: var(--f-display);
  font-stretch: 62%;
  font-weight: 600;
  letter-spacing: 0.3em;
  font-size: 11px;
  text-transform: uppercase;
}
.anuncio__img strong {
  position: relative;
  z-index: 1;
  font-family: var(--f-display);
  font-stretch: 125%;
  font-weight: 900;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}
.anuncio__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: #efefef;
  font-weight: 600;
}
.anuncio__cta svg { width: 16px; height: 16px; }
.anuncio__legenda { padding: 10px 12px 16px; line-height: 1.4; }

/* demo: mensagem no WhatsApp */
.celular {
  width: min(300px, 100%);
  background: #0c0b0b;
  border: 10px solid #26221f;
  border-bottom: 0;
  border-radius: 38px 38px 0 0;
  padding-top: 10px;
  overflow: hidden;
}
.celular__cab {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: 10px 12px;
  background: #1f2c33;
  color: #e9edef;
  font-size: 13px;
}
.celular__cab b { display: flex; align-items: center; gap: 4px; font-size: 14px; }
.celular__cab b svg { width: 14px; height: 14px; }
.celular__cab small { display: block; color: #8696a0; font-size: 11px; }
.celular__chat { background: #0b141a; padding: 14px 10px 18px; display: grid; gap: 4px; }
.balao {
  background: #202c33;
  color: #e9edef;
  border-radius: 0 8px 8px 8px;
  padding: 4px;
  font-size: 13.5px;
  line-height: 1.4;
  max-width: 92%;
}
.balao__img {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  background: var(--laranja);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-stretch: 125%;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--preto);
  text-transform: uppercase;
}
.balao p { padding: 6px 6px 0; }
.balao__hora { display: flex; justify-content: flex-end; align-items: center; gap: 3px; padding: 0 6px 2px; font-size: 11px; color: #8696a0; }
.balao__hora svg { width: 16px; height: 11px; color: #53bdeb; }
.balao-botao {
  max-width: 92%;
  background: #202c33;
  color: #53bdeb;
  border-radius: 8px;
  text-align: center;
  padding: 9px;
  font-size: 13.5px;
  font-weight: 600;
}

/* ---------- sobre ---------- */

.sobre { background: var(--preto); color: var(--branco); padding-block: var(--s8); }
.sobre__grid { display: grid; gap: var(--s6); }
.sobre__foto {
  --topo: 64px;
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 4.4;
  max-width: 100%;
  background: var(--grafite);
  clip-path: polygon(0 var(--topo), 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.sobre__foto img.foto { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sobre__foto .marca-dagua { position: absolute; right: -8%; bottom: -4%; width: 70%; opacity: 0.06; }
.sobre__foto figcaption { position: relative; padding: var(--s4); font-size: 13px; color: var(--texto-inv-2); }
.sobre__texto { display: grid; gap: var(--s5); align-content: center; }
.sobre__texto .rotulo { color: var(--laranja); }
.sobre__texto h2 { font-size: clamp(2.6rem, 12vw, 5.6rem); text-transform: uppercase; line-height: 0.9; }
.sobre__texto p { color: #d9d3cf; max-width: 56ch; }
.sobre__cargo { font-family: var(--f-display); font-stretch: 100%; font-weight: 700; font-size: 1.05rem; color: var(--branco) !important; }
.ficha {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: var(--s3) 0 0;
  border-top: 1px solid var(--linha-inv);
}
.ficha div { padding: var(--s4) var(--s3) 0 0; }
.ficha div + div { padding-left: var(--s3); border-left: 1px solid var(--linha-inv); }
.ficha dt {
  font-family: var(--f-display);
  font-stretch: 62%;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--texto-inv-2);
}
.ficha dd { margin: var(--s1) 0 0; font-weight: 600; font-size: 15px; }
@media (min-width: 900px) {
  .sobre { padding-block: var(--s10); }
  .sobre__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--s8); }
  .sobre__foto { --topo: 96px; aspect-ratio: 4 / 5; }
  .sobre__texto h2 { font-size: clamp(3rem, 4.6vw, 4.6rem); }
}

/* ---------- nichos ---------- */

.nichos { padding-block: var(--s8); }
.nichos .secao-cab { margin-bottom: var(--s6); }
.nichos__lista { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--preto); }
.nicho {
  display: grid;
  gap: var(--s2);
  padding-block: var(--s5);
  border-bottom: 1px solid var(--linha);
}
.nicho h3 { font-size: clamp(1.6rem, 6.4vw, 2.6rem); font-weight: 900; line-height: 1; }
.nicho p { color: var(--texto-2); max-width: 44ch; }
@media (min-width: 900px) {
  .nichos { padding-block: var(--s9) var(--s10); }
  .nicho { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; gap: var(--s7); padding-block: var(--s6); }
}

/* ---------- carrossel de clientes ---------- */

.clientes { background: var(--papel); padding-block: var(--s6); overflow: hidden; }
.clientes .rotulo { color: var(--texto-2); margin-bottom: var(--s5); }
.esteira { display: flex; width: max-content; }
.esteira__faixa { display: flex; align-items: center; gap: var(--s7); padding-right: var(--s7); list-style: none; margin: 0; }
.esteira__faixa li { flex: none; }
.esteira__faixa img { height: 40px; width: auto; filter: grayscale(1); opacity: 0.7; }
.logo-vazio {
  display: grid;
  place-items: center;
  width: 150px;
  height: 52px;
  border: 1px dashed #b9b1ab;
  color: #8a837e;
  font-size: 12px;
}
@media (prefers-reduced-motion: no-preference) {
  .esteira { animation: esteira 38s linear infinite; }
  @media (hover: hover) { .clientes:hover .esteira { animation-play-state: paused; } }
  @keyframes esteira { to { transform: translateX(-50%); } }
}
@media (prefers-reduced-motion: reduce) {
  .esteira { width: auto; padding-inline: var(--gutter); }
  .esteira__faixa { flex-wrap: wrap; gap: var(--s4); padding: 0; }
  .esteira__faixa[aria-hidden="true"] { display: none; }
}

/* ---------- chamada final ---------- */

.chamada {
  position: relative;
  background: var(--laranja);
  color: var(--preto);
  padding-block: var(--s8);
  overflow: hidden;
  isolation: isolate;
}
.chamada::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grao);
  opacity: 0.16;
  mix-blend-mode: multiply;
  z-index: -1;
}
.chamada__simbolo {
  position: absolute;
  right: -14%;
  bottom: -10%;
  width: 70%;
  max-width: 520px;
  opacity: 0.12;
  z-index: -1;
}
.chamada__grid { display: grid; gap: var(--s6); }
.chamada h2 { font-size: clamp(2.5rem, 11vw, 6.4rem); text-transform: uppercase; line-height: 0.9; }
.chamada__lado { display: grid; gap: var(--s5); }
.chamada__lado p { font-size: 1.1rem; max-width: 38ch; }
.chamada__lado small { font-size: 14px; }
@media (min-width: 900px) {
  .chamada { padding-block: var(--s10); }
  .chamada h2 { font-size: clamp(3rem, 5.6vw, 5.4rem); }
  .chamada__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); align-items: end; gap: var(--s8); }
  .chamada__simbolo { right: auto; left: 52%; bottom: -18%; width: 34%; }
}

/* ---------- rodapé ---------- */

.rodape {
  background: var(--preto);
  color: #d3ccc7;
  padding-block: var(--s8) calc(var(--s6) + 84px);
  font-size: 15px;
}
.rodape__marca img { width: 190px; }
.rodape__marca p { margin-top: var(--s4); color: var(--texto-inv-2); max-width: 32ch; }
.rodape__grid { display: grid; gap: var(--s6); }
.rodape h2 {
  font-family: var(--f-display);
  font-stretch: 62%;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: var(--s3);
  line-height: 1.3;
}
.rodape address { font-style: normal; display: grid; gap: var(--s2); }
.rodape ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s2); }
.rodape a { text-decoration-color: #6b6461; text-underline-offset: 3px; }
@media (hover: hover) { .rodape a:hover { color: var(--branco); text-decoration-color: var(--laranja); } }
.rodape__base {
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid var(--linha-inv);
  display: grid;
  gap: var(--s2);
  color: #8a837e;
  font-size: 13px;
}
@media (min-width: 720px) {
  .rodape__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rodape__base { display: flex; flex-wrap: wrap; justify-content: space-between; }
}
@media (min-width: 1000px) {
  .rodape { padding-bottom: var(--s6); }
  .rodape__grid { grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 3fr)); }
}

/* ---------- barra fixa de WhatsApp (só no celular) ---------- */

.barra-whats {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  padding: var(--s3) var(--gutter) calc(env(safe-area-inset-bottom, 0px) + var(--s3));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--linha);
  transform: translateY(110%);
  transition: transform 260ms var(--ease);
}
.barra-whats.ativa { transform: none; }
@media (min-width: 1000px) { .barra-whats { display: none; } }

/* ---------- página interna (política) ---------- */

.doc { padding-block: var(--s8) var(--s9); }
.doc__corpo { max-width: 68ch; display: grid; gap: var(--s4); }
.doc__corpo h1 { font-size: clamp(2.2rem, 8vw, 3.6rem); margin-bottom: var(--s3); }
.doc__corpo h2 { font-size: 1.35rem; font-weight: 800; margin-top: var(--s5); }
.doc__corpo ul { margin: 0; padding-left: 1.2em; display: grid; gap: var(--s2); }
.doc__corpo .rotulo { color: var(--laranja-texto); }
.voltar { font-weight: 600; text-decoration: none; display: inline-flex; min-height: 48px; align-items: center; }
