/* ============================================================
   JCW ELEVADORES — style.css
   Conceito: "Passeio de Elevador" — cada seção é um andar.
   ============================================================ */

:root {
  --verde: #007A33;
  --verde-claro: #00A046;
  --vermelho: #E30613;
  --vermelho-claro: #FF2233;
  --branco: #FFFFFF;
  --cinza-claro: #F5F5F5;
  --cinza-medio: #DADADA;
  --texto: #1A1A1A;
  --texto-suave: #4A4A4A;
  --preto-painel: #0A0A0A;
  --preto-secao: #111111;

  --fonte-titulo: 'Montserrat', sans-serif;
  --fonte-corpo: 'Inter', sans-serif;
  --fonte-led: 'Share Tech Mono', monospace;

  --raio: 6px;
  --transicao: 0.3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--fonte-corpo);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3 { font-family: var(--fonte-titulo); margin: 0; line-height: 1.15; }

.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;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--verde-claro);
  outline-offset: 2px;
}

/* ============================================================
   LOGO OFICIAL
   ============================================================ */
.topbar__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.hero__logo-img--rodape {
  max-width: 220px;
  margin: 0 0 0.6rem 0;
  filter: none;
}

/* ============================================================
   CABEÇALHO / TOPBAR
   ============================================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
}
.topbar__nav { display: flex; gap: 1.6rem; }
.topbar__nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transicao);
  position: relative;
}
.topbar__nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--verde-claro);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transicao);
}
.topbar__nav a:hover { color: var(--branco); }
.topbar__nav a:hover::after { transform: scaleX(1); }
.topbar__cta {
  background: var(--verde);
  color: var(--branco);
  padding: 0.55rem 1.1rem;
  border-radius: var(--raio);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transicao), box-shadow var(--transicao);
}
.topbar__cta:hover { background: var(--verde-claro); box-shadow: 0 0 16px rgba(0,160,70,0.5); }

.topbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
}
.topbar__burger span {
  display: block; height: 2px; background: var(--branco); border-radius: 2px;
  transition: transform var(--transicao), opacity var(--transicao);
}
.topbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.98);
  padding: 0 1.5rem 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transicao), padding var(--transicao);
}
.mobile-menu.is-open { max-height: 400px; padding: 0.5rem 1.5rem 1.25rem; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

/* ============================================================
   BOTOEIRA LATERAL
   ============================================================ */
.botoeira {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  align-items: center;
}
.botoeira__trilho {
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px;
  padding: 0.7rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  backdrop-filter: blur(6px);
}
.botoeira__btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.55);
  font-family: var(--fonte-led);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transicao);
}
.botoeira__btn:hover { border-color: var(--verde-claro); color: var(--branco); }
.botoeira__btn[aria-current="true"] {
  border-color: var(--verde-claro);
  color: var(--verde-claro);
  background: rgba(0,160,70,0.12);
  box-shadow: 0 0 10px rgba(0,160,70,0.7), inset 0 0 6px rgba(0,160,70,0.4);
  text-shadow: 0 0 6px rgba(0,160,70,0.9);
}
.botoeira__indicador { display: none; }

/* ============================================================
   LAYOUT GERAL DOS ANDARES
   ============================================================ */
.andar {
  position: relative;
  min-height: 100vh;
  padding: 7rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.andar--claro { background: var(--branco); }
.andar--escuro { background: var(--preto-secao); color: var(--branco); }

/* Hero: precisa de espaço no topo por causa do topbar fixo */
.andar--hero {
  padding: calc(64px + 2rem) 1.5rem 3rem;
  min-height: 100vh;
}

/* Seção Cobertura (Contato) */
.andar--cobertura {
  justify-content: flex-start;
}
.andar--cobertura .andar__content {
  padding-bottom: 2rem;
}

.andar__content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.andar__content--split {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3rem;
  align-items: start;
}
.andar__col--img img {
  border-radius: var(--raio);
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 560px;
}

/* Vídeo no Andar 1 (substitui a imagem) */
.andar__col--video {
  position: sticky;
  top: 6rem;
}
.andar__video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--raio);
  background: #000;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 122, 51, 0.2);
}

.andar__porta {
  position: absolute;
  top: 0; bottom: 0;
  width: 51%;
  background: linear-gradient(135deg, #151515, #050505);
  z-index: 50;
  pointer-events: none;
  border-right: 1px solid rgba(0,160,70,0.15);
}
.andar__porta--esq { left: 0; transform-origin: left; }
.andar__porta--dir { right: 0; transform-origin: right; border-right: none; border-left: 1px solid rgba(0,160,70,0.15); }
.andar.is-revealed .andar__porta--esq { animation: abrirEsq 0.9s cubic-bezier(.77,0,.18,1) forwards; }
.andar.is-revealed .andar__porta--dir { animation: abrirDir 0.9s cubic-bezier(.77,0,.18,1) forwards; }
@keyframes abrirEsq { to { transform: translateX(-100%); } }
@keyframes abrirDir { to { transform: translateX(100%); } }

.secao-titulo {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 1.25rem 0 1rem;
  max-width: 20ch;
}
.secao-titulo--claro { color: var(--branco); }
.secao-texto { color: var(--texto-suave); max-width: 62ch; margin: 0 0 1rem; }
.secao-texto--claro { color: rgba(255,255,255,0.78); }

/* ============================================================
   PAINEL LED
   ============================================================ */
.led-panel {
  display: inline-block;
  background: var(--preto-painel);
  border: 2px solid #222;
  border-radius: 4px;
  padding: 0.7rem 1.1rem;
  font-family: var(--fonte-led);
  font-size: clamp(0.85rem, 1.6vw, 1.15rem);
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.8), 0 0 18px rgba(0,0,0,0.35);
  margin-bottom: 0.5rem;
  min-height: 1.4em;
}
.led-panel__text { white-space: pre; }
.led-panel--verde .led-panel__text {
  color: var(--verde-claro);
  text-shadow: 0 0 4px var(--verde-claro), 0 0 10px rgba(0,160,70,0.8), 0 0 18px rgba(0,160,70,0.5);
}
.led-panel--vermelho .led-panel__text {
  color: var(--vermelho-claro);
  text-shadow: 0 0 4px var(--vermelho-claro), 0 0 10px rgba(255,34,51,0.8), 0 0 18px rgba(255,34,51,0.5);
}
.led-panel--ambar .led-panel__text {
  color: #FFB300;
  text-shadow: 0 0 4px #FFB300, 0 0 10px rgba(255,179,0,0.8), 0 0 18px rgba(255,179,0,0.5);
}

/* Piscante padrão (vermelho — reserva) */
.led-panel--piscando { animation: piscarPainel 1.6s infinite; }
@keyframes piscarPainel {
  0%, 100% { box-shadow: inset 0 0 12px rgba(0,0,0,0.8), 0 0 18px rgba(227,6,19,0.35); }
  50% { box-shadow: inset 0 0 12px rgba(0,0,0,0.8), 0 0 26px rgba(227,6,19,0.75); }
}

/* Piscante verde (usado na Cobertura) */
.led-panel--verde.led-panel--piscando { animation: piscarPainelVerde 1.6s infinite; }
@keyframes piscarPainelVerde {
  0%, 100% { box-shadow: inset 0 0 12px rgba(0,0,0,0.8), 0 0 18px rgba(0,160,70,0.4); }
  50% { box-shadow: inset 0 0 12px rgba(0,0,0,0.8), 0 0 26px rgba(0,160,70,0.85); }
}

/* ============================================================
   ANDAR T — HERO
   ============================================================ */
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.65) 0%, rgba(5,5,5,0.82) 60%, rgba(5,5,5,0.94) 100%);
}
.hero__content {
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--branco);
  padding: 0 1.25rem;
}
.hero__titulo {
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  max-width: 22ch;
  font-weight: 800;
  margin: 1rem 0 1.75rem;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.25rem; }
.hero__destaques {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}
.hero__destaques strong { color: var(--verde-claro); }

.andar__scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  animation: flutuar 2.2s ease-in-out infinite;
}
@keyframes flutuar { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ============================================================
   ANIMAÇÃO DE ENTRADA DO HERO (recriada do Framer Motion)
   ============================================================ */
[data-hero-anim] {
  opacity: 0;
  animation: heroContainerFade 0.4s ease-out forwards;
}
@keyframes heroContainerFade {
  to { opacity: 1; }
}

[data-hero-anim] .hero__anim-item {
  opacity: 0;
  transform: translateY(20px);
  animation: heroItemIn 0.5s ease-out forwards;
}

[data-hero-anim] .hero__anim-item:nth-child(1) { animation-delay: 0.10s; }
[data-hero-anim] .hero__anim-item:nth-child(2) { animation-delay: 0.25s; }
[data-hero-anim] .hero__anim-item:nth-child(3) { animation-delay: 0.40s; }
[data-hero-anim] .hero__anim-item:nth-child(4) { animation-delay: 0.55s; }

@keyframes heroItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-hero-anim],
  [data-hero-anim] .hero__anim-item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--raio);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transicao), box-shadow var(--transicao), background var(--transicao);
}
.btn--verde { background: var(--verde); color: var(--branco); }
.btn--verde:hover { background: var(--verde-claro); box-shadow: 0 0 20px rgba(0,160,70,0.55); transform: translateY(-2px); }
.btn--vermelho { background: var(--vermelho); color: var(--branco); }
.btn--vermelho:hover { background: var(--vermelho-claro); box-shadow: 0 0 20px rgba(227,6,19,0.55); transform: translateY(-2px); }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn--lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   ANDAR 1 — QUEM SOMOS
   ============================================================ */
.valores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.75rem 0;
}
.valores__item h3 {
  font-size: 1rem;
  color: var(--verde);
  margin-bottom: 0.4rem;
}
.valores__item p { font-size: 0.88rem; color: var(--texto-suave); margin: 0; }
.diferenciais li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--texto-suave);
}
.diferenciais li::before {
  content: '';
  position: absolute; left: 0; top: 0.5em;
  width: 8px; height: 8px;
  background: var(--verde);
  border-radius: 50%;
}

/* ============================================================
   ANDAR 2 — SERVIÇOS
   ============================================================ */
.botoes-servico {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2rem;
}
.botao-servico {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: #1B1B1B;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--raio);
  padding: 1rem 1.25rem;
  transition: border-color var(--transicao), background var(--transicao);
}
.botao-servico:hover { border-color: var(--verde-claro); }
.botao-servico__num {
  font-family: var(--fonte-led);
  color: var(--verde-claro);
  font-size: 1rem;
  min-width: 2.2em;
}
.botao-servico__nome { flex: 1; color: var(--branco); font-weight: 500; }
.botao-servico__icone {
  font-size: 1.3rem;
  color: var(--verde-claro);
  transition: transform var(--transicao);
}
.botao-servico[aria-expanded="true"] .botao-servico__icone { transform: rotate(45deg); }
.botao-servico[aria-expanded="true"] {
  border-color: var(--verde-claro);
  background: rgba(0,160,70,0.1);
  box-shadow: 0 0 14px rgba(0,160,70,0.25);
}
.servico-detalhe {
  background: #161616;
  border-left: 3px solid var(--verde-claro);
  padding: 1.1rem 1.4rem;
  margin: -0.3rem 0 0.3rem;
  border-radius: 0 0 var(--raio) var(--raio);
  color: rgba(255,255,255,0.82);
}
.servico-detalhe p { margin-top: 0; }
.servico-detalhe ul { margin: 0.75rem 0; }
.servico-detalhe li { position: relative; padding-left: 1.2rem; margin-bottom: 0.4rem; font-size: 0.9rem; }
.servico-detalhe li::before { content: '›'; position: absolute; left: 0; color: var(--verde-claro); }
.servicos-nota { margin-top: 2rem; color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ============================================================
   ANDAR 3 — DEPOIMENTOS / STATS
   ============================================================ */
.depoimentos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
.depoimento {
  background: var(--cinza-claro);
  border-radius: var(--raio);
  padding: 1.5rem;
  margin: 0;
  border-top: 3px solid var(--verde);
}
.depoimento p { font-style: italic; color: var(--texto); margin: 0 0 1rem; font-size: 0.92rem; }
.depoimento cite { font-style: normal; font-size: 0.82rem; color: var(--texto-suave); font-weight: 600; }

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--cinza-medio);
  border-bottom: 1px solid var(--cinza-medio);
}
.stats__item { text-align: center; }
.stats__num {
  display: block;
  font-family: var(--fonte-titulo);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--verde);
}
.stats__label { font-size: 0.85rem; color: var(--texto-suave); }

/* ============================================================
   ANDAR C — COBERTURA (Contato)
   ============================================================ */
.form-orcamento { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.form-campo { display: flex; flex-direction: column; gap: 0.35rem; }
.form-campo label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.form-campo input, .form-campo select, .form-campo textarea {
  background: #1B1B1B;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--raio);
  padding: 0.7rem 0.9rem;
  color: var(--branco);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transicao);
}
.form-campo input:focus, .form-campo select:focus, .form-campo textarea:focus {
  border-color: var(--verde-claro);
}
.form-campo textarea { resize: vertical; }

.contato-info { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.contato-info__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color var(--transicao);
}
.contato-info__item:hover { color: var(--verde-claro); }
.contato-info__item svg { color: var(--verde-claro); flex-shrink: 0; }

.mapa-wrap {
  border-radius: var(--raio);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  aspect-ratio: 16/10;
}
.mapa-wrap iframe { width: 100%; height: 100%; border: 0; }
.area-atuacao { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.9rem; }

/* ============================================================
   RODAPÉ — fundo branco (fora da seção, largura total)
   ============================================================ */
.rodape {
  background: var(--branco);
  color: var(--texto);
  border-top: 1px solid var(--cinza-medio);
  padding: 4rem 1.5rem 2rem;
  width: 100%;
}
.rodape__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
}
.rodape__marca p { color: var(--texto-suave); font-size: 0.88rem; margin-top: 0.6rem; }
.rodape__col h3 {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--verde);
  margin-bottom: 0.9rem;
}
.rodape__col { display: flex; flex-direction: column; gap: 0.55rem; }
.rodape__col a, .rodape__col p {
  color: var(--texto-suave);
  font-size: 0.88rem;
  margin: 0;
}
.rodape__col a:hover { color: var(--verde); }
.rodape__copy {
  text-align: center;
  color: #999;
  font-size: 0.78rem;
  margin-top: 2.5rem;
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 600;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--branco);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  transition: transform var(--transicao);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============================================================
   REVEAL GERAL (Intersection Observer)
   ============================================================ */
.andar__content { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.andar.is-revealed .andar__content { opacity: 1; transform: translateY(0); }
.andar--hero .andar__content { opacity: 1; transform: none; transition: none; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 960px) {
  /* Topbar: esconde nav e CTA, mostra burger */
  .topbar__nav { display: none; }
  .topbar__cta { display: none; }
  .topbar__burger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero: padding ajustado para topbar mobile (logo menor) */
  .andar--hero {
    padding: calc(58px + 1.5rem) 1.25rem 2rem;
  }

  /* Botoeira vira barra horizontal */
  .botoeira {
    top: auto;
    bottom: 0;
    left: 0; right: 0;
    transform: none;
  }
  .botoeira__trilho {
    flex-direction: row;
    justify-content: space-evenly;
    border-radius: 0;
    width: 100%;
    padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
    border: none;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .botoeira__btn { width: 30px; height: 30px; font-size: 0.78rem; }

  /* Layouts em coluna única */
  .andar__content--split { grid-template-columns: 1fr; }
  .andar__col--img { order: -1; }
  .andar__col--img img { max-height: 300px; }
  .andar__col--video { position: static; }

  .valores { grid-template-columns: 1fr; }
  .depoimentos { grid-template-columns: 1fr; }
  .rodape__inner { grid-template-columns: 1fr 1fr; }

  .andar { padding-bottom: 6rem; }

  /* WhatsApp flutuante acima da botoeira */
  .whatsapp-float {
    bottom: calc(64px + 1rem + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }

  .topbar__logo-img { height: 34px; }
}

@media (max-width: 560px) {
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .rodape__inner { grid-template-columns: 1fr; }
  .stats { flex-direction: column; gap: 1.5rem; }
}