/* =====================================================================
   boavi · institucional
   Tokens extraídos do export do Figma (cores, tamanhos, espaçamentos)
   ===================================================================== */

:root {
  /* Paleta */
  --green-900: #17221E;   /* texto mais escuro / títulos */
  --green-700: #1F4D40;   /* verde primário */
  --green-600: #3C504A;   /* texto suave */
  --green-500: #485A53;   /* links footer */
  --green-400: #5B7068;   /* texto cinza-esverdeado */
  --green-350: #6B8076;   /* eyebrow */
  --mint-500:  #6BC0AD;   /* acento teal */
  --mint-200:  #DCEFE9;   /* fundo mint / banner */
  --mint-100:  #E8F1F0;   /* fundo da página */
  --tint:      #EFF5F3;   /* badges claros */
  --tint-2:    #FBFDFC;   /* faq fechado */
  --ink:       #2F3D37;   /* corpo de depoimento */
  --card-border: #E4EDE9;
  --chip-border: #D7E3DE;
  --line:      #CFDDD7;
  --gold:      #F2B705;
  --white:     #FFFFFF;
  --overlay:   rgba(15, 38, 32, 0.89);

  /* Tipografia */
  --font-display: 'Gabarito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1272px;
  --pad-x: 120px;
  --radius-btn: 14px;
  --radius-card: 22px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--mint-100);
  color: var(--green-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--pad-x) * 2);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* --------------------------------------------------- Placeholder foto */
/* Enquanto a imagem real não é adicionada em /assets, mostra um fundo
   temático com legenda. Quando o arquivo existir, ele cobre o fundo. */
.img-ph {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #cfe6df 0%, #aed6c9 50%, #8fc7b6 100%);
}
.img-ph::after {
  content: "📷 " attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--green-700);
  opacity: .7;
}
.img-ph img { position: relative; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.img-ph img.is-missing { display: none; }

/* ============================================================ BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 49px;
  padding: 0 26px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease),
              box-shadow .25s var(--ease), color .25s var(--ease);
}
.btn .ico { width: 16px; height: 16px; }
.btn--primary { background: var(--green-700); color: var(--mint-100); }
.btn--primary:hover {
  background: #16382e;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(31, 77, 64, .55);
}
.btn--primary .ico { color: var(--mint-500); }
.btn--ghost {
  background: transparent;
  color: var(--green-700);
  border: 1.5px solid var(--green-700);
}
.btn--ghost:hover { background: var(--green-700); color: var(--mint-100); transform: translateY(-2px); }
.btn--sm { height: 44px; font-size: 15px; padding: 0 22px; border-radius: 12px; }
.btn .ico { transition: transform .25s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }

/* =========================================================== PILLS */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--mint-200);
  color: var(--green-700);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  width: fit-content;
}
.pill__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint-500); flex: none; }
.pill--mint { background: var(--mint-200); font-size: 12px; letter-spacing: .04em; padding: 8px 16px; }
.pill--tint { background: var(--tint); color: var(--green-700); font-size: 12px; letter-spacing: .08em; font-family: var(--font-body); }

/* eyebrow */
.eyebrow { font-weight: 600; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow--muted { color: var(--green-350); text-align: center; }

/* títulos de seção */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.1;
  text-align: center;
  color: var(--green-900);
}
.section-sub {
  font-size: 15px;
  color: var(--green-400);
  text-align: center;
}
.section-title--left, .section-sub--left { text-align: left; }
.accent { color: var(--mint-500); }

/* =========================================================== TOPBAR */
.topbar {
  background: var(--green-700);
  color: var(--mint-100);
  text-align: center;
  padding: 11px 16px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .015em;
}

/* =========================================================== HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--mint-100);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.header.scrolled { box-shadow: 0 6px 24px -16px rgba(23, 34, 30, .5); background: rgba(232, 241, 240, .9); backdrop-filter: blur(10px); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 93px;
}
.logo { display: inline-flex; align-items: center; }
.logo__img { height: 38px; width: auto; }
.logo__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -.01em;
  color: var(--green-900);
  position: relative;
  align-items: flex-start;
}
.logo__dot { width: 7px; height: 7px; border-radius: 50% 50% 50% 0; background: var(--mint-500); margin-left: 2px; transform: rotate(45deg) translateY(4px); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: var(--green-900);
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--mint-500);
  border-radius: 2px;
  transition: width .28s var(--ease);
}
.nav a:hover { color: var(--green-700); }
.nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--green-900); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================= HERO */
.hero { padding: 50px 0; }
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero__left { max-width: 575px; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 41px;
  line-height: 1.08;
  color: var(--green-900);
}
.hero__text { font-size: 18px; line-height: 1.52; color: var(--green-600); }
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__right { flex: 1; max-width: 627px; }
.hero__img { width: 100%; aspect-ratio: 627 / 438; border-radius: 28px; }

/* ========================================================== NÚMEROS */
.numbers { padding: 80px 0; }
.numbers__inner { display: flex; flex-direction: column; align-items: center; gap: 36px; }
.numbers__row {
  display: flex;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
  width: 100%;
}
.stat { display: flex; flex-direction: column; gap: 12px; }
.stat__label { font-size: 16px; color: var(--green-600); }
.stat__label strong { font-weight: 700; color: var(--green-900); }
.stat__num {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 66px;
  line-height: 1;
  color: var(--green-900);
}
.stat__num .accent { color: var(--mint-500); display: inline-flex; align-items: center; }
.stat__num .accent--ico { line-height: 0; margin-left: 1px; }
.stat__num .accent--ico svg { height: 0.86em; width: auto; display: block; }

/* ======================================================== MANIFESTO */
.manifesto { padding: 80px 0; }
.manifesto__inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.manifesto__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.16;
  max-width: 880px;
  color: var(--green-900);
}
.manifesto__text { font-size: 18px; line-height: 1.56; color: var(--green-600); max-width: 718px; }

/* ========================================================== PILARES */
.pilares { background: var(--green-700); padding: 80px 0; }
.pilares__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.pilares__title { font-family: var(--font-display); font-weight: 600; font-size: 34px; line-height: 1.1; text-align: center; color: var(--mint-100); }
.chips { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.chip {
  background: var(--white);
  border: 1.4px solid var(--chip-border);
  box-shadow: 0 8px 22px -8px rgba(26, 69, 56, .1);
  border-radius: 999px;
  padding: 18px 31px;
  font-weight: 600;
  font-size: 24px;
  color: var(--green-900);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.chip:hover { transform: translateY(-4px); box-shadow: 0 16px 28px -12px rgba(26, 69, 56, .28); }

/* ========================================================= PRODUTOS */
.produtos { padding: 80px 0; }
.produtos__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.produtos__row { display: flex; gap: 24px; margin-top: 22px; flex-wrap: wrap; justify-content: center; }
.pcard {
  position: relative;
  width: 410px;
  max-width: 100%;
  min-height: 340px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -28px rgba(26, 69, 56, .4); border-color: #d6e6df; }
.pcard__badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.pcard__badge svg { width: 30px; height: 30px; }
.pcard:hover .pcard__badge { background: var(--mint-200); transform: scale(1.05); }
.pcard__text { display: flex; flex-direction: column; gap: 14px; }
.pcard__head { display: flex; flex-direction: column; gap: 10px; }
.pcard__head h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--green-900); }
.pcard__rule { width: 34px; height: 3px; background: var(--mint-500); border-radius: 2px; transition: width .35s var(--ease); }
.pcard:hover .pcard__rule { width: 56px; }
.pcard__text p { font-size: 15px; line-height: 1.5; color: var(--green-400); }
.pcard__arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  margin-top: auto;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.pcard__arrow svg { width: 20px; height: 20px; }
.pcard:hover .pcard__arrow { background: var(--green-700); color: var(--white); }

/* ========================================================= SOLUÇÕES */
/* >>> Seção com a animação principal: cards que expandem <<< */
.solucoes { padding: 80px 0; }
.solucoes__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.sol-cards {
  display: flex;
  gap: 14px;
  width: 100%;
  height: 500px;
}
.sol-card {
  position: relative;
  flex: 180 1 0;           /* base colapsado (≈180px) */
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--green-900);
  cursor: pointer;
  outline: none;
  /* layout containment isola o reflow a cada card (não reccorta a sombra);
     will-change avisa o browser que flex-grow vai animar -> mais fluido */
  contain: layout;
  will-change: flex-grow;
  transition: flex-grow .5s var(--ease), box-shadow .45s var(--ease);
}
.sol-card.is-active { flex-grow: 356; }  /* expandido (≈356px) */
.sol-card.is-active { box-shadow: 0 30px 60px -30px rgba(15, 38, 32, .65); }

.sol-card__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  /* camada própria na GPU: ao redimensionar o card, o compositor
     recorta a imagem em vez de re-rasterizá-la a cada frame */
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  transition: transform .8s var(--ease);
}
.sol-card.is-active .sol-card__bg { transform: translateZ(0) scale(1.04); }
/* fallback quando a foto não existe */
.sol-card { background: linear-gradient(160deg, #2f6354, #173b31); }
.sol-card:nth-child(2) { background: linear-gradient(160deg, #356b5b, #1c4338); }
.sol-card:nth-child(3) { background: linear-gradient(160deg, #3c7565, #20493d); }
.sol-card:nth-child(4) { background: linear-gradient(160deg, #2c5d4f, #16382e); }
.sol-card:nth-child(5) { background: linear-gradient(160deg, #38705f, #1e453a); }
.sol-card__bg.is-missing { display: none; }

/* gradiente inferior para leitura */
.sol-card__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(to top, var(--overlay) 0%, var(--overlay) 38%, rgba(15,38,32,.55) 70%, rgba(15,38,32,0) 100%);
  padding-top: 90px;
}
.sol-card__body { display: flex; flex-direction: column; }
.sol-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.06;
  color: var(--white);
  white-space: normal;
  transition: font-size .45s var(--ease);
}
.sol-card.is-active .sol-card__title { font-size: 30px; }

/* desc e botão: colapsam o espaço quando o card não está ativo
   (max-height:0 evita que empurrem o título pra fora em cards curtos) */
.sol-card__desc {
  font-size: 15px;
  line-height: 1.4;
  color: #E9F2EF;
  max-width: 308px;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), margin-top .45s var(--ease), opacity .4s var(--ease) .05s;
}
.sol-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  max-width: 308px;
  height: 44px;
  max-height: 0;
  margin-top: 0;
  padding: 0 16px;
  background: var(--white);
  color: var(--green-700);
  border-radius: 13px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease), margin-top .45s var(--ease), opacity .4s var(--ease) .12s, background .25s var(--ease);
}
.sol-card__btn svg { width: 12px; height: 12px; flex: none; }
.sol-card__btn:hover { background: var(--mint-200); }
.sol-card.is-active .sol-card__desc { max-height: 96px; margin-top: 11px; opacity: 1; }
.sol-card.is-active .sol-card__btn { max-height: 48px; margin-top: 11px; opacity: 1; }

/* tag */
.sol-card__tag {
  position: absolute;
  top: 22px; left: 20px;
  z-index: 3;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s var(--ease);
}
.sol-card.is-active .sol-card__tag { opacity: 1; transform: translateY(0); background: var(--mint-500); }

/* botão circular de seta */
.sol-card__arrow {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s var(--ease), color .35s var(--ease), width .45s var(--ease), height .45s var(--ease), top .45s var(--ease), right .45s var(--ease), transform .35s var(--ease);
}
.sol-card__arrow svg { width: 18px; height: 18px; }
.sol-card.is-active .sol-card__arrow {
  width: 48px; height: 48px;
  top: 20px; right: 20px;
  background: var(--mint-500);
  color: var(--white);
}
.sol-card:hover .sol-card__arrow { transform: rotate(45deg); }

/* ======================================================= DEPOIMENTOS */
.depo { padding: 80px 0; }
.depo__head { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 36px; }
.depo__scroll-wrap { overflow: visible; }
.depo__scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 6px 4px 20px;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--mint-500) transparent;
}
.depo__scroll.dragging { cursor: grabbing; scroll-snap-type: none; }
.depo__scroll::-webkit-scrollbar { height: 8px; }
.depo__scroll::-webkit-scrollbar-track { background: transparent; }
.depo__scroll::-webkit-scrollbar-thumb { background: #c2d6cf; border-radius: 999px; }
.depo__scroll::-webkit-scrollbar-thumb:hover { background: var(--mint-500); }

.depo-card {
  flex: 0 0 360px;
  max-width: 85vw;
  height: 300px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  user-select: none;
}
.depo-card:hover { transform: translateY(-6px); box-shadow: 0 26px 44px -26px rgba(26, 69, 56, .38); }
.depo-card__top { display: flex; flex-direction: column; gap: 14px; }
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.depo-card__quote { font-size: 15px; line-height: 1.55; color: var(--ink); }
.depo-card__person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--tint);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar--green { background: var(--green-700); }
.avatar--ink { background: var(--green-900); }
.depo-card__id { display: flex; flex-direction: column; gap: 2px; }
.depo-card__id strong { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--green-900); }
.depo-card__id small { font-size: 13px; color: var(--green-400); }

/* ============================================================== CTA */
.cta { padding: 80px 0; }
.cta__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.cta__text { max-width: 620px; font-size: 18px; line-height: 1.52; color: var(--green-600); }

/* ============================================================== FAQ */
.faq { padding: 80px 0; }
.faq__inner { display: flex; align-items: flex-start; gap: 80px; }
.faq__left { flex: 0 0 440px; max-width: 440px; display: flex; flex-direction: column; gap: 22px; position: sticky; top: 120px; }
.faq__title { font-family: var(--font-display); font-weight: 600; font-size: 46px; line-height: 1.04; color: var(--green-900); }
.faq__text { font-size: 16px; line-height: 1.56; color: var(--green-400); }
.faq__col { flex: 1; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--tint-2);
  border: 1px solid #E6EEEA;
  border-radius: 16px;
  overflow: hidden;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.faq-item.is-open { background: var(--white); border-color: transparent; box-shadow: 0 10px 26px -10px rgba(26, 69, 56, .12); }
.faq-item__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 22px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.28;
  color: var(--green-900);
}
.faq-item__toggle {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--tint);
  border: 1px solid #E1EAE6;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-700);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.faq-item__toggle svg { width: 16px; height: 12px; transform: rotate(180deg); transition: transform .35s var(--ease); }
.faq-item.is-open .faq-item__toggle { background: var(--green-700); color: var(--mint-100); border-color: transparent; }
.faq-item.is-open .faq-item__toggle svg { transform: rotate(0deg); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-item__body p {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.56;
  color: var(--green-400);
}

/* ======================================================= CTA BANNER */
.cta-banner { padding: 80px 0; }
.banner {
  background: var(--mint-200);
  border: 1px solid #C7E2D9;
  border-radius: 24px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.banner__txt { display: flex; flex-direction: column; gap: 8px; max-width: 680px; }
.banner__txt h3 { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: var(--green-900); }
.banner__txt p { font-size: 16px; line-height: 1.5; color: var(--green-600); }
.banner .ico { width: 12px; height: 12px; }

/* =========================================================== FOOTER */
.footer { padding: 80px 0 48px; }
.footer__top { display: flex; gap: 72px; flex-wrap: wrap; }
.footer__brand { flex: 0 0 300px; max-width: 300px; display: flex; flex-direction: column; gap: 16px; }
.footer__brand .logo__img { height: 47px; }
.footer__brand p { font-size: 15px; line-height: 1.5; color: var(--green-600); }
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__col h4 { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--green-900); margin-bottom: 0; }
/* :not(.btn) evita que o estilo de link do footer sobrescreva o botão
   (texto ficava escuro e o hover deslizava pro lado em vez de subir) */
.footer__col a:not(.btn) { font-size: 15px; color: var(--green-500); transition: color .2s var(--ease), transform .2s var(--ease); width: fit-content; }
.footer__col a:not(.btn):hover { color: var(--green-700); transform: translateX(3px); }
.footer__muted { font-size: 15px; line-height: 1.5; color: var(--green-500); max-width: 200px; }
.footer__col .btn { margin-top: 4px; }
.footer__social { display: inline-flex; align-items: center; gap: 8px; }
.footer__social svg { width: 26px; height: 26px; color: var(--green-500); transition: color .2s var(--ease); }
.footer__social:hover svg { color: var(--green-700); }
.footer__line { height: 1px; background: var(--line); margin: 40px 0 24px; }
.footer__copy { text-align: center; font-size: 14px; color: var(--green-400); }

/* ===================================================== SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ======================================================= RESPONSIVO */
@media (max-width: 1180px) {
  :root { --pad-x: 56px; }
  .hero__title { font-size: 38px; }
  .numbers__row { gap: 48px 56px; }
}

@media (max-width: 980px) {
  :root { --pad-x: 40px; }
  .header__cta { display: none; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 110px 32px 32px;
    background: var(--mint-100);
    box-shadow: -20px 0 50px -30px rgba(0,0,0,.4);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 18px; padding: 12px 0; }
  .nav-toggle { display: flex; z-index: 60; }

  .hero__inner { flex-direction: column; align-items: flex-start; }
  .hero__left { max-width: 100%; }
  .hero__right { width: 100%; max-width: 100%; }

  .faq__inner { flex-direction: column; gap: 36px; }
  .faq__left { position: static; flex-basis: auto; max-width: 100%; }
  .faq__title { font-size: 38px; }

  /* Soluções vira pilha vertical em telas menores */
  .sol-cards { flex-direction: column; height: auto; }
  .sol-card { flex: none; width: 100%; height: 130px; }
  .sol-card.is-active { height: 380px; }
  .sol-card__title { font-size: 24px; }
  .sol-card.is-active .sol-card__title { font-size: 28px; }
}

@media (max-width: 620px) {
  :root { --pad-x: 22px; }
  .topbar { font-size: 12px; }
  .header__inner { height: 72px; }
  .hero { padding: 32px 0; }
  .hero__title { font-size: 31px; }
  .hero__text { font-size: 16px; }
  .btn { width: 100%; }
  .hero__btns { width: 100%; }
  .numbers, .manifesto, .pilares, .produtos, .solucoes, .depo, .cta, .faq, .cta-banner, .footer { padding: 56px 0; }
  .numbers__row { gap: 36px; }
  .stat { align-items: flex-start; flex: 0 0 calc(50% - 18px); }
  .stat__num { font-size: 52px; }
  .ico-star { width: 40px; height: 40px; }
  .section-title, .manifesto__title, .pilares__title { font-size: 27px; }
  .chip { font-size: 19px; padding: 14px 24px; }
  .banner { padding: 30px; }
  .banner__txt h3 { font-size: 23px; }
  .depo-card { flex-basis: 300px; }
  .footer__top { gap: 36px; }
  .footer__brand { flex-basis: 100%; max-width: 100%; }
}
