:root {
  --brand: #00aa55;
  --ink: #0b4154;
  --paper: #f4f4f4;
  --line: #e9eef0;
}

/* Sem setar peso aqui — quem manda é a classe stage-grotesk-* */
body {
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  scroll-behavior: smooth;
}

/* Ícones Google em #00AA55, FILL=0 */
.msr {
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  color: var(--brand);
  line-height: 1;
  vertical-align: middle;
  font-size: 24px;
}

/* Layout */
.section {
  padding: 72px 0;
}

.kicker.stage-grotesk-bold {
  color: var(--brand);
  display: inline-block;
}

.kicker.stage-grotesk-bold::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
  margin-top: 0.4rem;
}

.navbar {
  border-bottom: 1px solid var(--line);
}

.brand-logo {
  height: 72px;
  width: auto;
}

.text-brand {
  color: var(--brand) !important;
}

.nav-link.stage-grotesk-regular {
  color: var(--ink) !important;
}

.nav-link.stage-grotesk-regular:hover,
.nav-link.stage-grotesk-regular.active {
  color: var(--brand) !important;
}

.stamp {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 170, 85, 0.08);
  border: 1px solid rgba(0, 170, 85, 0.22);
  color: var(--brand);
}

.card-flat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card-flat:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 65, 84, 0.08);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 170, 85, 0.08);
  border: 1px solid rgba(0, 170, 85, 0.22);
}

footer {
  background: #0a3947;
  color: #e7eef1;
  padding: 28px 0;
}

footer a {
  color: #e7eef1;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

/* Botão topo */
#toTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1030;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

#toTop.show {
  opacity: 1;
  pointer-events: auto;
}

/* ========== MVV (Missão • Visão • Valores) ========== */
:root {
  --brand: #00aa55;
  --ink: #0b4154;
  --paper: #f4f4f4;
  --line: #e9eef0;
}

/* Section */
#mvv {
  padding: 72px 0;
  background: #fff;
  color: var(--ink);
}

/* Kicker + títulos */
#mvv .mvv-kicker {
  color: var(--brand);
  display: inline-block;
  position: relative;
}
#mvv .mvv-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 36px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}
#mvv .mvv-title,
#mvv .mvv-subtitle {
  color: var(--ink);
}

/* Ícones Google (Material Symbols) — cor da marca, sem traçado/sem preenchimento */
#mvv .msr {
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  color: var(--brand);
  line-height: 1;
  vertical-align: middle;
  font-size: 24px;
}

/* Cards principais (Missão/Visão) */
#mvv .mvv-col {
  display: flex;
} /* força colunas com mesma altura */
#mvv .mvv-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
#mvv .mvv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 65, 84, 0.08);
}

/* Figura das ilustrações com mesma proporção */
#mvv .mvv-figure {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
#mvv .mvv-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mvv .mvv-ratio {
  --bs-aspect-ratio: 58%;
} /* ajuste fino da altura do banner ilustrado */

/* Parágrafo sem “estourar” o card */
#mvv .mvv-card p {
  margin-bottom: 0;
}

/* Mini-cards (Valores) normalizados */
#mvv .mvv-mini {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

/* ========== CASES ========== */
:root {
  --brand: #00aa55;
  --ink: #0b4154;
  --paper: #f4f4f4;
  --line: #e9eef0;
}

#cases {
  padding: 72px 0;
  background: #fdfdfd;
  color: var(--ink);
}

/* Kicker + título */
#cases .cases-kicker {
  color: var(--brand);
  display: inline-block;
  position: relative;
}
#cases .cases-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 36px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}

/* Card */
#cases .card-case {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
#cases .card-case:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 65, 84, 0.08);
}

/* Logo do cliente */
#cases .logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
#cases .logo {
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* “Chips” de métricas/resultados */
#cases .chip {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 0.85rem;
}
#cases .chip.brand {
  border-color: rgba(0, 170, 85, 0.25);
  background: rgba(0, 170, 85, 0.06);
  color: var(--brand);
}

/* Link do case */
#cases .case-link {
  color: var(--brand);
  text-decoration: none;
}
#cases .case-link:hover {
  color: #00964c;
  text-decoration: underline;
}


/* ========== BOTÃO WHATSAPP FIXO ========== */
#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  background: #25D366;            /* cor oficial WhatsApp */
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
#whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
  color: #fff;
  text-decoration: none;
}


.footer {
  border-top: 1px solid #eee;
  padding: 24px 0;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.footer-contact .material-symbols-rounded {
  font-size: 18px;
  opacity: .6;
}

#whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  z-index: 1050;
  transition: transform .2s ease, box-shadow .2s ease;
}

#whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
