/* ══════════════════════════════════════
   SUSTENTARE SOCIOAMBIENTAL — STYLE.CSS LIMPO
   Revisado e organizado por seções
   Regras duplicadas foram consolidadas mantendo o último valor efetivo.
   ══════════════════════════════════════ */


/* ══════════════════════════════════════
   BASE / TOKENS
   ══════════════════════════════════════ */
:root {
  --laranja: #e46830;
  --laranja-h: #d05a24;
  --laranja-c: #f0845a;
  --verde-esc: #4a8a50;
  --verde-med: #48a040;
  --lima: #88bc24;
  --lima-c: #c4d223;
  --vermelho: #ba262d;
  --amarelo: #e8d81c;
  --teal: #13ac87;
  --bg: #eaeeea;
  --bg-off: #f0f5f0;
  --bg-soft: #f7faf7;
  --branco: #ffffff;
  --branco-sujo: #f8fbf8;
  --preto: #1d2b1e;
  --cinza-txt: #4a5e4b;
  --cinza-texto: #4a5e4b;
  --cinza-cl: #c5d5c6;
  --cinza-light: #e2ece2;
  --radius: 14px;
  --radius-sm: 9px;
  --radius-xs: 6px;
  --shadow-xs: 0 2px 8px rgba(65,125,69,.08);
  --shadow: 0 6px 24px rgba(65,125,69,.11);
  --shadow-md: 0 12px 36px rgba(65,125,69,.14);
  --shadow-lg: 0 20px 56px rgba(65,125,69,.18);
  --tr: 0.3s cubic-bezier(.4,0,.2,1);
  --nav-h: clamp(60px, 8vh, 76px);
  --sat: env(safe-area-inset-top, 0px);
  --sar: env(safe-area-inset-right, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
  --sal: env(safe-area-inset-left, 0px);
  --container: 1320px;
  --container-wide: 1440px;
  --side-pad: clamp(1.25rem, 5vw, 5rem);
  --section-pad: clamp(4rem, 7vw, 7rem);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: clamp(14px, 0.625vw + 12px, 16px);
}

body {
  font-family: "Nunito", "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--preto);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  width: 100%;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

::selection {
  background: var(--laranja);
  color: #fff;
}


/* ══════════════════════════════════════
   UTILITÁRIOS / COMPONENTES GERAIS
   ══════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  transition: width .1s linear;
  height: 3.5px;
  background: linear-gradient(90deg, var(--laranja), var(--lima), var(--verde-esc));
  z-index: 10001;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity .5s, visibility .5s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 140px;
  animation: pulse 1.5s ease infinite;
}

.loader-dots {
  display: flex;
  gap: .5rem;
}

.loader-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--laranja);
  animation: bounce .8s ease infinite;
}

.loader-dots span:nth-child(2) {
  animation-delay: .15s;
  background: var(--lima);
}

.loader-dots span:nth-child(3) {
  animation-delay: .3s;
  background: var(--verde-esc);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .65s, transform .65s;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .65s, transform .65s;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: all var(--tr);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  font-size: clamp(.82rem, 1.5vw, .92rem);
  padding: clamp(.7rem, 1.5vh, .85rem) clamp(1.3rem, 3vw, 2rem);
}

.btn-laranja {
  background: var(--laranja);
  color: #fff;
  box-shadow: 0 4px 18px rgba(228,104,48,.28);
}

.btn-laranja:hover {
  background: var(--laranja-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(228,104,48,.38);
}

.btn-verde {
  background: var(--verde-esc);
  color: #fff;
  box-shadow: 0 4px 18px rgba(65,125,69,.25);
}

.btn-verde:hover {
  background: var(--verde-med);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(65,125,69,.35);
}

.btn-outline-verde {
  background: transparent;
  color: var(--verde-esc);
  border: 2px solid var(--verde-esc);
}

.btn-outline-verde:hover {
  background: var(--verde-esc);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--laranja);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}

.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

.section-tag {
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.section-tag::before {
  display: block;
  width: 16px;
  height: 2.5px;
  background: var(--laranja);
  border-radius: 2px;
  content: "#";
  color: var(--laranja);
  font-weight: 900;
}

.section-title {
  font-weight: 900;
  color: var(--verde-esc);
  line-height: 1.15;
  letter-spacing: -.4px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.section-title em {
  color: var(--laranja);
  font-style: normal;
  background: linear-gradient(135deg, var(--laranja), var(--laranja-h));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title.light {
  color: #fff;
}

.section-title.light em {
  color: var(--lima-c);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  color: rgba(255,255,255,.38);
  margin-bottom: 1.4rem;
}

.breadcrumb a {
  color: rgba(255,255,255,.58);
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--lima-c);
}

.breadcrumb-sep {
  opacity: .28;
}

.modal {
  cursor: pointer;
}

.modal img {
  cursor: default;
}

.btn-estudo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  background: #fff;
  color: #2e5a32;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-estudo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(248, 247, 247, 0.15);
}

.repercussao-header .section-tag {
  justify-content: center;
}

.btn-laranja::after, .btn-verde::after, .btn-white::after {
  content: "→";
  display: inline-block;
  transition: transform .25s ease;
}

.btn-laranja:hover::after, .btn-verde:hover::after, .btn-white:hover::after {
  transform: translateX(4px);
}

.cta-btns .btn-outline-white {
  text-transform: none;
}


/* ══════════════════════════════════════
   NAVEGAÇÃO
   ══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: .85rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .4s;
  height: var(--nav-h);
  padding-block: 0;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  padding-top: var(--sat);
  padding-right: max(clamp(1.25rem, 5vw, 4rem), var(--sar));
  padding-left: max(clamp(1.25rem, 5vw, 4rem), var(--sal));
}

nav.scrolled {
  background: rgba(230,237,230,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(65,125,69,.13);
}

nav.solid {
  background: var(--bg);
  box-shadow: 0 1px 0 var(--cinza-cl);
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--verde-esc);
  font-size: .87rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding-bottom: 2px;
  position: relative;
  padding: .35rem .1rem;
  transition: color var(--tr);
}

.nav-links a::after {
  width: 0;
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--laranja);
  transform: scaleX(0);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
}

.nav-links a:hover, .nav-links a.active-link {
  color: var(--laranja);
}

.nav-links a:hover::after, .nav-links a.active-link::after {
  width: 100%;
  transform: scaleX(1);
}

.nav-cta {
  background: var(--laranja) !important;
  color: #fff !important;
  padding: .52rem 1.4rem !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 16px rgba(228,104,48,.28) !important;
  transition: all .25s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--laranja-h) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 26px rgba(228,104,48,.38) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--verde-esc);
  transition: .3s;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px,5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px,-5px);
}

/* .nav-links.open — handled entirely inside @media (max-width: 900px) */

.nav-links a.active-link {
  color: var(--laranja);
  font-weight: 800;
}

.nav-links a.nav-cta {
  background: var(--laranja);
  color: #fff !important;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-weight: 800;
  transition: all .25s;
  box-shadow: 0 0 0 0 rgba(228,104,48,.4);
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover {
  background: var(--laranja-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(228,104,48,.35);
}

.nav-overlay {
  /* Not needed with fullscreen nav — kept for JS compatibility */
  display: none !important;
}


/* ══════════════════════════════════════
   HERO HOME
   ══════════════════════════════════════ */
#hero {
  position: relative;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 900px 700px at 70% 60%, rgba(136,188,36,.07), transparent),
    radial-gradient(ellipse 600px 500px at 20% 80%, rgba(228,104,48,.05), transparent),
    var(--bg);
  padding-bottom: clamp(2rem, 5vh, 4rem);
  display: grid;
  place-items: center;
  min-height: calc(100 * var(--dvh, 1vh));
  padding-top: max(var(--nav-h, 76px), calc(var(--sat) + var(--nav-h, 76px)));
}

.hero-leaf-1 {
  position: absolute;
  top: -70px;
  right: -50px;
  width: 340px;
  height: 340px;
  border-radius: 50% 0 50% 0;
  background: var(--lima);
  opacity: .28;
  transform: rotate(-22deg);
  pointer-events: none;
}

.hero-leaf-2 {
  position: absolute;
  bottom: -90px;
  left: -65px;
  width: 280px;
  height: 280px;
  border-radius: 0 50% 0 50%;
  background: var(--laranja);
  opacity: .15;
  transform: rotate(15deg);
  pointer-events: none;
}

.hero-leaf-3 {
  position: absolute;
  top: 38%;
  right: 5%;
  width: 72px;
  height: 72px;
  border-radius: 50% 0 50% 0;
  background: var(--amarelo);
  opacity: .45;
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-inner {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  padding: 0;
  width: 100%;
  max-width: min(1200px, 100% - clamp(0rem, 2vw, 2rem));
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}

.hero-tag {
  background: rgba(136,188,36,.12);
  border: 1px solid rgba(136,188,36,.3);
  color: var(--lima);
  padding: .45rem 1.1rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.2rem;
  width: fit-content;
}

.hero-tag svg {
  width: 14px;
  height: 14px;
  fill: var(--lima);
}

.hero-title {
  margin-bottom: 1.1rem;
  max-width: 650px;
  font-weight: 900;
  color: var(--preto);
  line-height: 1.08;
  letter-spacing: -.6px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.hero-title .orange {
  color: var(--laranja);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--cinza-txt);
  line-height: 1.75;
  margin-bottom: 1.6rem;
  max-width: 500px;
  font-weight: 600;
}

.hero-frase-chave {
  margin-bottom: 1.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(65,125,69,.12);
  border-left: 4px solid var(--laranja);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.3rem;
  font-size: .88rem;
  color: var(--cinza-txt);
  font-style: italic;
  line-height: 1.7;
  margin: 1.4rem 0;
  position: relative;
}

.hero-frase-chave .frase-aspas {
  font-size: 1.3em;
  color: var(--laranja);
  font-style: normal;
}

.hero-frase-autor {
  display: block;
  font-size: .75rem;
  font-weight: 800;
  color: var(--verde-esc);
  font-style: normal;
  margin-top: .6rem;
  letter-spacing: .05em;
}

.hero-btns {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badge {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(65,125,69,.1);
  border-radius: 50px;
  padding: .4rem 1rem;
  font-size: .74rem;
  font-weight: 700;
  color: var(--verde-esc);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.07);
  transition: all .25s;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-img-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-img-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 86%;
  height: 86%;
  border-radius: var(--radius) var(--radius) 0 var(--radius);
  background: var(--lima);
  opacity: .18;
}

.hero-img-card {
  position: relative;
  z-index: 2;
  width: 91%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(65,125,69,.2);
}

.hero-img-card img {
  width: 100%;
  object-fit: cover;
  object-position: center 90%;
  transition: transform .6s ease;
  height: clamp(440px, 36vw, 620px);
}

.hero-img-selo {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: scale(1.15);
  background: var(--laranja);
  box-shadow: 0 8px 30px rgba(228,104,48,.4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: var(--cinza-txt);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  z-index: 5;
}

.hero-scroll-line {
  width: 1.5px;
  height: 38px;
  background: linear-gradient(to bottom, var(--laranja), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}

.typewriter-wrap {
  min-height: 1.1em;
  display: inline-block;
}

.typewriter-cursor {
  display: inline-block;
  width: 3px;
  background: var(--laranja);
  animation: cursor-blink .8s steps(1) infinite;
  margin-left: 2px;
  vertical-align: baseline;
  height: .85em;
  border-radius: 2px;
}

.hero-img-card:hover img {
  transform: scale(1.04);
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.11);
}

#hero, #video-home-youtube, #entregas-destaque, #ods-home, #servicos-home, #processo, #depoimentos, #parceiros-vitrine, #pessoas, #repercussao {
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.professional-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--verde-esc);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(65,125,69,.16);
  border-radius: 999px;
  padding: .48rem 1rem;
  box-shadow: var(--shadow-xs);
  margin-bottom: 1.4rem;
}

.professional-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--laranja), var(--lima));
  box-shadow: 0 0 0 5px rgba(228,104,48,.10);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.2rem;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: rgba(255,255,255,.9);
  color: var(--verde-esc);
  border: 1px solid rgba(65,125,69,.16);
  border-radius: 999px;
  padding: .55rem .95rem;
  font-size: .78rem;
  font-weight: 850;
  box-shadow: var(--shadow-xs);
}

.proof-mark {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(65,125,69,.12);
  overflow: hidden;
  flex-shrink: 0;
}

.hero-inner, .impacto-inner, .entregas-inner, .ods-inner, .servicos-intro, .processo-inner, .dep-inner, .parceiros-container, .pessoas-inner, .cases-inner, .cta-inner, .footer-grid, .footer-bottom, .page-hero-inner, .sobre-quem-inner, .sobre-mvv-inner, .sobre-equipe-inner, .impacto4anos-inner, .servico-full-inner, .vitrine-section-inner, .contato-inner-v2 {
  width: min(100% - calc(var(--side-pad) * 2), var(--container));
  max-width: none;
  margin-inline: auto;
}

.hero-subtitle, .servicos-subtitle, .entregas-subtitle, .youtube-copy p, .cta-sub, .page-hero-sub {
  font-size: clamp(.95rem, 1.08vw, 1.12rem);
}


/* ══════════════════════════════════════
   VÍDEOS / YOUTUBE
   ══════════════════════════════════════ */
.youtube-feature {
  background: var(--bg-off);
  padding: 5rem 5%;
}

.youtube-feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.youtube-copy {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.youtube-copy p {
  font-size: .95rem;
  color: var(--cinza-txt);
  line-height: 1.8;
  max-width: 46ch;
}

.youtube-card {
  isolation: isolate;
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
  background: #000;
}

.youtube-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.22));
  z-index: 1;
  pointer-events: none;
}

.youtube-thumb {
  position: absolute;
  inset: 0;
  object-position: center center;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, opacity .25s ease, filter .25s ease;
}

.youtube-card:hover .youtube-thumb {
  transform: scale(1.03);
  filter: brightness(.9);
}

.youtube-play {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 3;
  transition: transform .25s ease, background .25s ease, opacity .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 35px rgba(0,0,0,.25);
}

.youtube-play:hover {
  transform: scale(1.1);
  background: rgba(0,0,0,.82);
}

.youtube-iframe {
  opacity: 0;
  transition: opacity .35s ease;
  background: #000;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
  z-index: 2;
}

.youtube-card.playing .youtube-iframe {
  opacity: 1;
  display: block;
}

.youtube-card.playing .youtube-thumb, .youtube-card.playing .youtube-play {
  opacity: 0;
  pointer-events: none;
  display: none;
}

.youtube-thumb.hidden, .youtube-play.hidden {
  display: none;
}

.youtube-card--small {
  margin: 2.5rem auto 0;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.depo-video-wrap {
  border: 1px solid rgba(65,125,69,.10);
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  background: #fff;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1rem;
}

.depo-video-copy h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--verde-esc);
  margin: .4rem 0 .4rem;
}

.depo-video-copy p {
  font-size: .92rem;
  color: var(--cinza-txt);
  line-height: 1.7;
  margin: 0;
}

.youtube-card--small.horizontal {
  aspect-ratio: 16 / 8;
  margin: 0 auto;
}

.youtube-card--big {
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.impacto-inner, .entregas-inner, .parceiros-container, .dep-inner, .casos-inner, .pessoas-inner, .cases-inner, .cta-inner, .processo-inner, .servicos-intro, .repercussao-inner, .youtube-feature-inner {
  width: 100%;
  max-width: min(1200px, 100% - clamp(2rem, 6vw, 5rem));
  margin-inline: auto;
}

#impacto, #entregas-destaque, #servicos-home, #processo, #depoimentos, #parceiros-vitrine, .youtube-feature, .sobre-quem, .sobre-mvv, .sobre-equipe, .servico-full-section, .vitrine-section, .contato-section {
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

/* cases e cta vão de borda a borda — o padding fica só nos inners */
#cases-home {
  padding-inline: 0;
}

#cta-home {
  padding-inline: 0;
}


/* ══════════════════════════════════════
   IMPACTO / MÉTRICAS
   ══════════════════════════════════════ */
#impacto {
  background: linear-gradient(135deg, #20ce37, #14da2b);
  padding-block: clamp(3rem, 6vh, 6rem);
  padding-inline: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.impacto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(.75rem, 3vw, 2rem);
}

.impacto-title {
  font-weight: 900;
  text-align: center;
  letter-spacing: -.3px;
  color: #f3fff4;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 3rem;
}

.impacto-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.impacto-num {
  color: #d7ffd9;
}

.impacto-label {
  color: rgba(255,255,255,.88);
}

.impacto-item {
  text-align: center;
  background: rgba(255,255,255,.03);
  border-right: 1px solid rgba(255,255,255,.07);
  border-radius: 0;
  position: relative;
  transition: background .3s;
  cursor: default;
  padding: clamp(1.5rem, 4vh, 3.2rem) clamp(.55rem, 1.5vw, 1.4rem);
  overflow: visible;
  min-width: 0;
}

.impacto-item:first-child {
  border-radius: 0;
}

.impacto-item:last-child {
  border-right: none;
  border-radius: 0;
}

.impacto-item:hover {
  background: rgba(255,255,255,.07);
}

.impacto-item:hover .impacto-num, .impacto-item:hover .impacto-label {
  color: #fff;
}

.impacto-num {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  font-weight: 900;
  color: var(--lima);
  line-height: 1.1;
  display: block;
  letter-spacing: -.8px;
  transition: color .3s;
  overflow: visible;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .impacto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impacto-item:nth-child(2) {
    border-right: none;
  }

  .impacto-item:nth-child(1),
  .impacto-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .impacto-num {
    font-size: clamp(2.2rem, 8vw, 3.1rem);
  }
}

@media (max-width: 520px) {
  .impacto-grid {
    grid-template-columns: 1fr;
  }

  .impacto-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .impacto-item:last-child {
    border-bottom: none;
  }

  .impacto-num {
    font-size: clamp(2.4rem, 13vw, 3.4rem);
  }
}
.impacto-label {
  font-size: .68rem;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .6rem;
  display: block;
  transition: color .3s;
}

.impacto4anos {
  background: var(--laranja);
  padding: 4.5rem 5%;
}

.impacto4anos-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.impacto4anos-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 2.2rem;
}

.impacto4anos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .9rem;
}

.i4a-item {
  background: rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 1.3rem .9rem;
}

.i4a-num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}

.i4a-label {
  font-size: .69rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  margin-top: .3rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: .06em;
}

#impacto::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136,188,36,.13), transparent 70%);
  pointer-events: none;
}

#impacto::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228,104,48,.1), transparent 70%);
  pointer-events: none;
}

.impacto-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lima);
  transform: scaleX(0);
  transition: transform .35s ease;
}

.impacto-item:hover::after {
  transform: scaleX(1);
}

.impacto-item:hover .impacto-num {
  color: var(--laranja);
}

.impacto-item:hover .impacto-label {
  color: rgba(255,255,255,.9);
}

.impacto-title, .parceiros-title, .impacto4anos-title {
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
}

.impacto-grid, .processo-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* ══════════════════════════════════════
   ENTREGAS / SOLUÇÕES
   ══════════════════════════════════════ */
#entregas-destaque {
  background: var(--bg-off);
  padding: 6rem 5%;
  padding-block: clamp(3rem, 6vh, 6rem);
}

.entregas-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.entregas-header {
  text-align: center;
  margin-bottom: 3rem;
}

.entregas-subtitle {
  font-size: .95rem;
  color: var(--cinza-txt);
  line-height: 1.8;
  max-width: 580px;
  margin: .5rem auto 0;
}

.entregas-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

.entrega-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  transition: .3s;
  min-height: clamp(220px, 30vw, 320px);
}

.entrega-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

.entrega-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.2));
}

.entrega-content {
  position: relative;
  z-index: 2;
  padding: 1.4rem;
}

.entrega-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .8rem;
}

.entrega-icon {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.entrega-num {
  font-weight: 800;
  font-size: .9rem;
  opacity: .8;
}

.entrega-card h3 {
  margin-bottom: .4rem;
}

.entrega-card p {
  font-size: .85rem;
  opacity: .9;
}

.entrega-cta {
  display: inline-block;
  margin-top: .6rem;
  font-weight: 700;
  font-size: .8rem;
}

.entrega-card:hover .entrega-bg {
  transform: scale(1.08);
}

.entrega-card:hover {
  transform: translateY(-6px);
}

.entrega-card:hover .entrega-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.35));
}

.entrega-card .entrega-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--laranja);
  color: #fff;
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .75rem;
  font-weight: 800;
  margin-top: .8rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}

.entrega-card:hover .entrega-cta {
  opacity: 1;
  transform: translateY(0);
}

.entregas-grid, .cases-grid, .dep-grid, .vitrine-grid-v2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
}


/* ══════════════════════════════════════
   ODS
   ══════════════════════════════════════ */
#ods-home {
  padding: 5rem 1.5rem;
  overflow: hidden;
  padding-block: clamp(3rem, 6vh, 5rem);
}

.ods-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ods-wheel-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
  max-width: 100%;
  overflow: hidden;
}

.ods-wheel {
  position: relative;
  width: min(92vw, 720px);
  aspect-ratio: 1/1;
  opacity: 0;
  transform: scale(.92);
  transition: opacity .8s ease, transform .8s ease;
}

.ods-wheel.is-visible {
  opacity: 1;
  transform: scale(1);
}

.ods-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  transform-origin: center center;
}

.ods-wheel.is-visible .ods-svg {
  animation: none;
}

.ods-wheel:hover .ods-svg {
  animation-play-state: paused;
}

.ods-center-ring {
  fill: #ffffff;
  stroke: rgba(255,255,255,.9);
  stroke-width: 10;
}

.ods-center-core {
  fill: #fff;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.16));
}

.slice-path {
  stroke: rgba(255,255,255,.92);
  stroke-width: 6;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: scale(.88);
  transition: transform .22s ease, filter .22s ease;
}

.ods-wheel.is-visible .slice-path {
  animation: sliceIn .8s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--delay);
}

.slice:hover .slice-path {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.slice-5:hover .slice-path {
  filter: brightness(1.12) saturate(1.05);
}

.slice-8:hover .slice-path {
  filter: brightness(1.12) saturate(1.05);
}

.slice-label {
  opacity: 0;
  transform: scale(.85);
  transform-box: fill-box;
  transform-origin: center;
}

.ods-wheel.is-visible .slice-label {
  animation: labelIn .8s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: calc(var(--delay) + .15s);
}

.slice:hover .slice-label {
  transform: scale(1.03);
}

.label-box {
  text-anchor: middle;
  dominant-baseline: middle;
  fill: #fff;
  pointer-events: none;
}

.label-icon {
  font-size: 24px;
  font-weight: 700;
}

.label-num {
  font-size: 28px;
  font-weight: 800;
}

.label-txt {
  font-size: 11px;
  font-weight: 700;
}

.ods-center-text {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 184px;
  height: 184px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

.ods-center-text strong {
  font-size: 2.25rem;
  line-height: 1;
  color: var(--azul-escuro, #0d1b2a);
}

.ods-center-text span {
  margin-top: .4rem;
  font-size: .92rem;
  color: var(--cinza-txt, #666);
}


/* ══════════════════════════════════════
   SERVIÇOS
   ══════════════════════════════════════ */
#servicos-home {
  padding: 6.5rem 5%;
  background: #fdf9f6;
  padding-block: clamp(3rem, 6vh, 6.5rem);
}

.servicos-intro {
  max-width: 1200px;
  margin: 0 auto;
}

.servicos-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.servicos-subtitle {
  font-size: .95rem;
  color: var(--cinza-txt);
  line-height: 1.8;
}

.servicos-grid-2x2 {
  display: grid;
  margin-bottom: 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.7rem);
}

.servico-card-v2 {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1.5px solid var(--cinza-cl);
  transition: all .35s;
  position: relative;
  overflow: hidden;
}

.servico-card-v2::before {
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(228,104,48,.06), rgba(136,188,36,.04));
  opacity: 0;
  transition: opacity .35s;
}

.servico-card-v2:hover {
  border-color: rgba(228,104,48,.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(228,104,48,.12);
}

.servico-card-v2:hover::before {
  transform: scaleX(1);
  opacity: 1;
}

.servico-num {
  border: 2.5px solid var(--laranja);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--laranja), var(--laranja-h));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  box-shadow: 0 6px 18px rgba(228,104,48,.3);
}

.servico-card-v2 h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--verde-esc);
  line-height: 1.3;
}

.servico-card-v2 p {
  font-size: .86rem;
  color: var(--cinza-txt);
  line-height: 1.75;
}

.servico-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.servico-bullets li {
  font-size: .82rem;
  color: var(--cinza-txt);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.5;
}

.servico-bullets li::before {
  content: "→";
  color: var(--laranja);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: .1rem;
}

.servico-ideal {
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cinza-cl);
  line-height: 1.55;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  font-size: .74rem;
  color: var(--cinza-txt);
  font-style: italic;
  margin-top: 1rem;
  border-left: 3px solid var(--lima);
}

.servico-ideal::before {
  content: '';
  flex-shrink: 0;
}

.servicos-cta {
  text-align: center;
}

.servico-full-section {
  padding: 5rem 5%;
  background: var(--bg-off);
}

.servico-full-section:nth-child(even) {
  background: var(--bg);
}

.servico-full-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.servico-full-card-v2 {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--cinza-cl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: all var(--tr);
  margin-bottom: 1.8rem;
}

.servico-full-card-v2:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.sfcard-left {
  padding: 2.8rem;
}

.sfcard-num-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--laranja);
  color: var(--laranja);
  font-size: 1.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.sfcard-left h2 {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--verde-esc);
  margin-bottom: .75rem;
}

.sfcard-left p {
  font-size: .88rem;
  color: var(--cinza-txt);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.sfcard-itens {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .48rem;
  margin-bottom: 1.4rem;
}

.sfcard-itens li {
  font-size: .84rem;
  color: var(--cinza-txt);
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-weight: 600;
  line-height: 1.5;
}

.sfcard-itens li::before {
  content: "→";
  color: var(--laranja);
  font-weight: 900;
  flex-shrink: 0;
}

.sfcard-ideal {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: .95rem 1.1rem;
  font-size: .8rem;
  color: var(--verde-esc);
  font-weight: 700;
  line-height: 1.6;
}

.sfcard-right {
  position: relative;
  background: var(--verde-esc);
  min-height: 260px;
}

.sfcard-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
}

.sfcard-emoji {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 6rem;
}


/* ══════════════════════════════════════
   PROCESSO / METODOLOGIA
   ══════════════════════════════════════ */
#processo {
  background: var(--verde-esc);
  padding: 6.5rem 5%;
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vh, 7rem);
}

.processo-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.processo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}

.processo-steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(228,104,48,.3) 20%,
    rgba(136,188,36,.6) 50%,
    rgba(228,104,48,.3) 80%,
    transparent 100%
  );
  height: 2px;
  animation: timeline-shine 3s ease infinite;
  background-size: 200%;
}

.processo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.4rem;
  position: relative;
}

.step-circle {
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(228,104,48,.4);
  width: 68px;
  height: 68px;
  background: var(--laranja);
  position: relative;
  transition: all .35s;
}

.processo-step:hover .step-circle {
  background: var(--lima);
  color: var(--verde-esc);
  transform: scale(1.1);
}

.step-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.step-title {
  font-size: .97rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .6rem;
}

.step-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}

.step-circle::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--laranja), var(--lima));
  z-index: -1;
  opacity: 0;
  transition: opacity .35s;
}

.processo-step:hover .step-circle::before {
  opacity: 1;
}

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--lima);
  color: var(--verde-esc);
  border-radius: 50%;
  font-size: .65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.method-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  margin-bottom: 1rem;
}

.method-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.processo-step .step-circle {
  display: none;
}


/* ══════════════════════════════════════
   DEPOIMENTOS
   ══════════════════════════════════════ */
#depoimentos {
  background: var(--bg-off);
  padding: 5rem 5%;
  padding-block: clamp(3.5rem, 7vh, 7rem);
}

.dep-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dep-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.dep-card {
  overflow: hidden;
  border: 1.5px solid var(--cinza-cl);
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  gap: 1rem;
  border-left: 4px solid transparent;
  transition: all var(--tr), border-color .3s;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.dep-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cinza-cl);
  border-left-color: var(--laranja);
}

.dep-quote-icon {
  font-family: serif;
  color: var(--verde);
  position: absolute;
  right: 15px;
  font-size: 5rem;
  opacity: .06;
  top: 0;
  left: .8rem;
  line-height: 1;
}

.dep-stars {
  display: flex;
  gap: .22rem;
  color: #e8d81c;
  font-size: .82rem;
  letter-spacing: .04em;
  margin-bottom: 1.3rem;
}

.dep-stars span {
  color: var(--amarelo);
  font-size: .95rem;
  filter: drop-shadow(0 1px 2px rgba(232,216,28,.4));
}

.dep-text {
  font-style: italic;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 2;
  color: var(--cinza-txt);
  font-size: .9rem;
  line-height: 1.85;
  flex: 1;
}

.dep-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.dep-avatar {
  overflow: hidden;
  flex: 0 0 64px;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lima);
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--lima);
  display: none;
}

.dep-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dep-avatar.logo img {
  object-fit: contain;
  padding: 6px;
}

.dep-name {
  font-size: .9rem;
  font-weight: 900;
  color: var(--verde-esc);
  line-height: 1.25;
  margin-bottom: .22rem;
}

.dep-role {
  margin-top: .1rem;
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.45;
  color: var(--cinza-txt);
}

.dep-logo-box {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(65,125,69,.16);
  box-shadow: 0 8px 22px rgba(65,125,69,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .55rem;
  flex-shrink: 0;
  overflow: hidden;
}

.dep-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.dep-logo-einstein {
  padding: 2px;
}

.dep-logo-idesam {
  padding: 4px;
}

.dep-logo-inesc {
  padding: 1px;
}

.dep-author-info {
  min-width: 0;
}


/* ══════════════════════════════════════
   PARCEIROS / SELOS
   ══════════════════════════════════════ */
.selo-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--verde-med);
  line-height: 1;
}

.selo-txt {
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--preto);
}

#parceiros-vitrine {
  background: var(--bg-off);
  padding: 5rem 5%;
  padding-block: clamp(3rem, 6vh, 5rem);
}

.parceiros-container {
  max-width: 1200px;
  margin: 0 auto;
}

.parceiros-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.parceiros-tag {
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cinza-txt);
  display: block;
  margin-bottom: .6rem;
}

.parceiros-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--verde-esc);
  margin-bottom: .4rem;
}

.parceiros-title em {
  font-style: normal;
  color: var(--laranja);
}

.parceiros-subtitle {
  font-size: .88rem;
  color: var(--cinza-txt);
}

.parceiros-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.parceiro {
  background: #ffffff;
  border: 1.5px solid var(--cinza-cl);
  border-radius: var(--radius-sm);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .7rem;
  transition: all var(--tr);
}

.parceiro:hover {
  border-color: var(--laranja);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(228,104,48,.14);
}

.parceiro img {
  max-height: 48px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: .85;
  mix-blend-mode: multiply;
  transition: all .3s;
}

.parceiro:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.parceiros-selos {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: clamp(.6rem, 2vw, 1.2rem);
  justify-content: center;
}

.parceiros-selos .selo {
  display: inline-flex;
  background: #fff;
  border: 1px solid rgba(65,125,69,.14);
  border-radius: 18px;
  padding: .85rem 1rem;
  box-shadow: var(--shadow-xs);
  align-items: center;
  gap: .85rem;
  min-height: 74px;
}

.selo-logo {
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(65,125,69,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
}

.selo-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.selo-logo-wide {
  width: 76px;
}

.selo-logo-icon {
  color: var(--laranja);
  background: rgba(228,104,48,.08);
}

.selo-logo-icon svg {
  width: 28px;
  height: 28px;
}

.selo-texto {
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--verde-esc);
}

.parceiros-grid.parceiros-marquee {
  display: flex;
  overflow: hidden;
  gap: 0;
  background: transparent;
  grid-template-columns: unset;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  padding: .5rem 0;
  border-radius: 0;
  border: none;
  width: 100%;
}

.parceiros-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  animation: parceiros-scroll 40s linear infinite;
  min-width: max-content;
}

.parceiros-grid.parceiros-marquee:hover .parceiros-track {
  animation-play-state: paused;
}

.parceiros-grid.parceiros-marquee .parceiro {
  flex-shrink: 0;
  width: 150px;
  height: 80px;
}

.selo-icon-text, .footer-badge-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(228,104,48,.12);
  color: var(--laranja);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .04em;
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   PESSOAS
   ══════════════════════════════════════ */
#pessoas {
  background: var(--verde-esc);
  padding: 5.5rem 5%;
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vh, 6rem);
}

.pessoas-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pessoas-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -.5px;
}

.pessoas-title span {
  color: var(--lima-c);
  background: linear-gradient(135deg, var(--laranja), var(--laranja-c));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pessoas-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
}

.pessoa-stat {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  transition: background .3s;
}

.pessoa-stat:hover {
  border-color: var(--laranja);
  transform: scale(1.05);
  background: rgba(255,255,255,.08);
}

.pessoa-num {
  color: var(--laranja);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--lima), var(--lima-c));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
  margin-bottom: .4rem;
}

.pessoa-label {
  margin-top: .4rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

#pessoas::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--laranja), var(--lima), var(--laranja));
  background-size: 200%;
  animation: shimmer 3s linear infinite;
}

.pessoa-stat::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--laranja), var(--lima));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .8s cubic-bezier(.4,0,.2,1);
}

.pessoa-stat.visible::before {
  transform: scaleX(1);
}


/* ══════════════════════════════════════
   CASES
   ══════════════════════════════════════ */
#cases-home {
  background: var(--bg);
  padding-block: clamp(3.5rem, 7vh, 7rem);
  padding-inline: 0;
  width: 100%;
}

.cases-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.cases-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.case-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--cinza-cl);
  transition: all var(--tr);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.case-card-header {
  background: var(--verde-esc);
  padding: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  position: relative;
  overflow: hidden;
}

.case-card-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--laranja), var(--lima));
}

.case-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--laranja);
  line-height: 1;
  flex-shrink: 0;
}

.case-card-header h3 {
  font-size: .92rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
}

.case-card-body {
  padding: 1.4rem;
}

.case-card-body p {
  font-size: .84rem;
  color: var(--cinza-txt);
  line-height: 1.75;
  margin-bottom: .9rem;
}

.case-result {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: .7rem .95rem;
  font-size: .77rem;
  font-weight: 700;
  color: var(--verde-esc);
  display: flex;
  align-items: flex-start;
  gap: .45rem;
  line-height: 1.5;
  border-left: 3px solid var(--laranja);
}

.case-result::before {
  content: '';
  flex-shrink: 0;
}

.cases-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.case-card-metrics {
  display: flex;
  gap: .5rem;
  padding: .9rem 1.4rem;
  background: linear-gradient(90deg, var(--verde-esc), color-mix(in srgb, var(--verde-esc) 80%, #000));
  border-top: 2px solid var(--lima);
  margin-top: auto;
  flex-wrap: wrap;
}

.case-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 60px;
}

.case-metric-num {
  font-size: 1rem;
  font-weight: 900;
  color: var(--lima);
  line-height: 1.1;
}

.case-metric-label {
  font-size: .6rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}


/* ══════════════════════════════════════
   CTA / FOOTER / FLOATS
   ══════════════════════════════════════ */
#cta-home {
  background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-h) 100%);
  padding-block: clamp(3.5rem, 7vh, 6rem);
  padding-inline: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-leaf-1 {
  position: absolute;
  right: -65px;
  border-radius: 50% 0 50% 0;
  transform: rotate(25deg);
  width: 400px;
  height: 400px;
  top: -120px;
  left: -100px;
  background: radial-gradient(circle, #fff, transparent 70%);
}

.cta-leaf-2 {
  position: absolute;
  left: -45px;
  border-radius: 0 50% 0 50%;
  transform: rotate(15deg);
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, #fff, transparent 70%);
}

.cta-inner {
  margin: 0 auto;
  position: relative;
  z-index: 2;
  max-width: min(700px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
}

.cta-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  font-weight: 600;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

footer {
  background: #3a7a3e;
  padding: 4rem 5% 2.2rem;
  border-top: 3px solid transparent;
  background-image: linear-gradient(#3a7a3e, #3a7a3e),
    linear-gradient(90deg, var(--laranja), var(--lima), var(--laranja));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.8rem;
  padding-bottom: 2.8rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
}

.footer-logo-img {
  height: 50px;
  margin-bottom: 1.5rem;
  display: block;
}

.footer-desc {
  font-size: .81rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.footer-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.footer-badge {
  font-size: .64rem;
  color: rgba(255,255,255,.85);
  padding: .22rem .6rem;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.footer-col h4 {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.1rem;
  font-weight: 800;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer-col ul li a {
  font-size: .81rem;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  position: relative;
  padding-bottom: 1px;
  display: inline;
}

.footer-col ul li a:hover {
  color: var(--amarelo);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: .71rem;
  color: rgba(255,255,255,.55);
}

.footer-social {
  display: flex;
  gap: .55rem;
}

.fsoc-v2 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 800;
  transition: all .25s;
}

.fsoc-v2:hover {
  border-color: var(--amarelo);
  color: var(--amarelo);
}

.wa-float {
  position: fixed;
  z-index: 999;
  background: #25d366;
  color: #fff;
  height: 52px;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(37,211,102,.38);
  display: flex;
  align-items: center;
  width: auto;
  border-radius: 50px;
  gap: 0;
  overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  padding: 0;
  bottom: calc(clamp(1.2rem, 3vh, 2rem) + var(--sab));
  right: calc(clamp(1.2rem, 3vw, 2rem) + var(--sar));
}

.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.48);
}

.back-to-top {
  border: none;
  cursor: pointer;
  justify-content: center;
  padding: .5rem 1.1rem;
  font-size: .72rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  position: fixed;
  bottom: calc(5.5rem + var(--sab));
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--laranja);
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all var(--tr);
  z-index: 990;
  font-weight: 850;
  letter-spacing: .02em;
  right: calc(clamp(1.2rem, 3vw, 2rem) + var(--sar));
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--verde-esc);
  transform: translateY(-2px);
}

.cta-leaf-1, .cta-leaf-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .15;
}

.footer-col ul li a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--laranja);
  transition: width .25s ease;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.footer-newsletter {
  margin-top: 1.4rem;
}

.footer-newsletter-title {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,.3);
  font-weight: 800;
  margin-bottom: .65rem;
}

.footer-nl-row {
  display: flex;
  gap: .4rem;
}

.footer-nl-input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: .6rem 1rem;
  color: #fff;
  font-size: .78rem;
  font-family: inherit;
  outline: none;
  transition: border-color .25s;
}

.footer-nl-input::placeholder {
  color: rgba(255,255,255,.25);
}

.footer-nl-input:focus {
  border-color: var(--laranja);
}

.footer-nl-btn {
  background: var(--laranja);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .6rem 1.2rem;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: background .25s;
  white-space: nowrap;
}

.footer-nl-btn:hover {
  background: var(--laranja-h);
}

.wa-float-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-float-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 800;
  transition: max-width .35s ease, padding .35s ease;
  padding: 0;
}

.wa-float:hover .wa-float-label {
  max-width: 160px;
  padding: 0 .9rem 0 0;
}

.footer-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--laranja);
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   SOBRE
   ══════════════════════════════════════ */
.sobre-quem {
  padding: 5.5rem 5%;
  background: var(--bg-off);
}

.sobre-quem-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: start;
}

.sobre-text p {
  font-size: .95rem;
  color: var(--cinza-txt);
  line-height: 1.88;
  margin-bottom: 1.1rem;
}

.sobre-text strong {
  color: var(--verde-esc);
  font-weight: 800;
}

.sobre-quote {
  background: var(--laranja);
  color: #fff;
  padding: 1.3rem 1.7rem;
  border-radius: var(--radius);
  font-style: italic;
  font-size: .93rem;
  line-height: 1.7;
  margin: 1.4rem 0;
  font-weight: 600;
}

.sobre-img-wrap {
  position: relative;
}

.sobre-img-bg {
  position: absolute;
  top: 20px;
  right: -18px;
  width: 85%;
  height: 85%;
  background: var(--lima);
  opacity: .18;
  border-radius: var(--radius);
}

.sobre-img-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sobre-img-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top;
}

.sobre-mvv {
  padding: 5rem 5%;
  background: var(--bg);
}

.sobre-mvv-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.8rem;
}

.mvv-card {
  padding: 2.2rem;
  border-radius: var(--radius);
  transition: all var(--tr);
}

.mvv-card:hover {
  transform: translateY(-4px);
}

.mvv-card.laranja {
  background: var(--laranja);
}

.mvv-card.verde {
  background: var(--verde-esc);
}

.mvv-card.lima {
  background: var(--lima);
}

.mvv-card .mvv-icon {
  font-size: 2.2rem;
  margin-bottom: .9rem;
}

.mvv-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .7rem;
}

.mvv-card p {
  font-size: .86rem;
  line-height: 1.8;
  color: rgba(255,255,255,.86);
}

.sobre-equipe {
  padding: 5rem 5%;
  background: var(--bg-off);
}

.sobre-equipe-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 2.8rem;
}

.membro-card-v2 {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--cinza-cl);
  transition: all var(--tr);
}

.membro-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.membro-header-v2 {
  background: var(--verde-esc);
  padding: 2rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  position: relative;
  overflow: hidden;
}

.membro-header-v2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--laranja), var(--lima));
}

.membro-avatar-v2 {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--laranja);
}

.membro-avatar-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.membro-info-v2 h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .22rem;
}

.membro-cargo {
  font-size: .7rem;
  font-weight: 800;
  color: var(--lima-c);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.membro-body-v2 {
  padding: 1.6rem;
}

.membro-bio-v2 {
  font-size: .84rem;
  color: var(--cinza-txt);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.membro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.1rem;
}

.membro-badge {
  font-size: .67rem;
  font-weight: 800;
  padding: .23rem .62rem;
  border-radius: 50px;
  background: var(--bg);
  color: var(--verde-esc);
  border: 1px solid var(--cinza-cl);
}

.membro-contato {
  display: flex;
  flex-direction: column;
  gap: .38rem;
}

.membro-contato a {
  font-size: .78rem;
  color: var(--verde-esc);
  display: flex;
  align-items: center;
  gap: .45rem;
  transition: color .2s;
  font-weight: 600;
}

.membro-contato a:hover {
  color: var(--laranja);
}

.sobre-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sobre-media img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  transition: transform .3s ease;
}

.sobre-media img:hover {
  transform: scale(1.03);
}


/* ══════════════════════════════════════
   VITRINE
   ══════════════════════════════════════ */
.vitrine-section {
  padding: 5rem 5%;
  background: var(--bg-off);
}

.vitrine-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vitrine-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.8rem;
}

.vcard-v2 {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--cinza-cl);
  transition: all var(--tr);
}

.vcard-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.vcard-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.vcard-img-v2 {
  height: 170px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}

.vcard-img-v2.c1 {
  background: linear-gradient(135deg, var(--verde-esc), var(--verde-med));
}

.vcard-img-v2.c2 {
  background: linear-gradient(135deg, #6b1a0a, var(--laranja));
}

.vcard-img-v2.c3 {
  background: linear-gradient(135deg, var(--verde-esc), #2d5e30);
}

.vcard-img-v2.c4 {
  background: linear-gradient(135deg, var(--vermelho), #8b1a1a);
}

.vcard-img-v2.c5 {
  background: linear-gradient(135deg, #1a4d8b, #0d2d5e);
}

.vcard-img-v2.c6 {
  background: linear-gradient(135deg, var(--teal), #0d6b5e);
}

.vcard-img-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  opacity: .65;
}

.vcard-client-name {
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-sm);
  padding: .35rem .75rem;
  font-size: .7rem;
  font-weight: 800;
  color: var(--verde-esc);
  z-index: 2;
  position: relative;
}

.vcard-badge-v2 {
  position: absolute;
  top: .9rem;
  right: .9rem;
  z-index: 3;
  background: var(--laranja);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .2rem .55rem;
  border-radius: 50px;
}

.vcard-body-v2 {
  padding: 1.4rem;
}

.vcard-tag-v2 {
  font-family: monospace;
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--laranja);
  margin-bottom: .45rem;
  display: block;
}

.vcard-body-v2 h3 {
  font-size: .97rem;
  font-weight: 900;
  color: var(--verde-esc);
  margin-bottom: .45rem;
  line-height: 1.4;
}

.vcard-body-v2 p {
  font-size: .82rem;
  color: var(--cinza-txt);
  line-height: 1.65;
  margin-bottom: .9rem;
}

.vcard-meta-v2 {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: var(--cinza-txt);
  padding-top: .75rem;
  border-top: 1px solid var(--cinza-cl);
}

.vitrine-cta-v2 {
  background: var(--verde-esc);
  padding: 4.5rem 5%;
  text-align: center;
}

.galeria-grid img {
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  width: 100%;
}

.galeria-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.fg-v2 {
  display: flex;
  flex-direction: column;
  gap: .38rem;
}

.fg-v2.ful {
  grid-column: 1 / -1;
}

.fg-v2 label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cinza-txt);
  font-weight: 800;
}

.fg-v2 input, .fg-v2 textarea, .fg-v2 select {
  background: var(--bg);
  border: 1.5px solid var(--cinza-cl);
  border-radius: var(--radius-sm);
  padding: .82rem .95rem;
  color: var(--preto);
  font-family: inherit;
  font-size: .88rem;
  outline: none;
  transition: all .3s;
  width: 100%;
}

.fg-v2 input:focus, .fg-v2 textarea:focus, .fg-v2 select:focus {
  border-color: var(--laranja);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(228,104,48,.1);
}

.fg-v2 input.er, .fg-v2 textarea.er {
  border-color: var(--vermelho);
}

.fg-v2 .fe-v2 {
  font-size: .7rem;
  color: var(--vermelho);
  margin-top: .18rem;
}

.fg-v2 textarea {
  resize: vertical;
  min-height: 105px;
}


/* ══════════════════════════════════════
   BLOG
   ══════════════════════════════════════ */
.blog-section-v2 {
  padding: clamp(3.5rem,7vw,6.5rem) 5%;
  background: radial-gradient(circle at 12% 0%, rgba(228,104,48,.10), transparent 32rem),
        radial-gradient(circle at 88% 12%, rgba(136,188,36,.12), transparent 34rem),
        linear-gradient(180deg, var(--branco) 0%, var(--bg-off) 100%);
}

.blog-inner-v2 {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-featured-v2 {
  margin-bottom: 2.8rem;
  display: grid !important;
  grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr);
  background: var(--branco);
  border: 1.5px solid rgba(65,125,69,.12);
  border-radius: calc(var(--radius) + 14px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative;
  isolation: isolate;
}

.blog-featured-v2:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 26px 72px rgba(65,125,69,.20);
}

.blog-featured-img-v2 {
  background: linear-gradient(135deg, var(--verde-esc), var(--lima));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  min-height: 430px;
}

.blog-featured-body-v2 {
  padding: clamp(1.6rem,3vw,2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.blog-dest-badge {
  display: inline-block;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 50px;
  margin-bottom: .9rem;
  padding: .45rem .9rem;
  background: rgba(228,104,48,.12);
  color: var(--laranja-h);
  font-size: .78rem;
}

.blog-featured-body-v2 h2 {
  font-weight: 900;
  margin-bottom: .75rem;
  color: var(--verde-esc);
  font-size: clamp(1.65rem,3.2vw,2.8rem);
  line-height: 1.06;
  letter-spacing: -.04em;
  margin: 0;
}

.blog-featured-body-v2 p {
  color: var(--cinza-txt);
  line-height: 1.8;
  margin-bottom: 1.4rem;
  font-size: 1.02rem;
}

.blog-featured-meta-v2 {
  display: flex;
  align-items: center;
  gap: .9rem;
  border-top: 1px solid var(--cinza-cl);
  padding-top: 1.1rem;
}

.blog-filters-v2 {
  margin-bottom: 2.3rem;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0 0 1.5rem;
}

.blog-filter-v2 {
  cursor: pointer;
  font-family: inherit;
  padding: .58rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--cinza-cl);
  background: #fff;
  color: var(--verde-esc);
  font-size: .78rem;
  font-weight: 900;
  transition: all var(--tr);
  box-shadow: var(--shadow-xs);
}

.blog-filter-v2:hover, .blog-filter-v2.active {
  background: var(--laranja);
  border-color: var(--laranja);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228,104,48,.28);
}

.blog-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 2.8rem;
}

.blog-card-v2 {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid rgba(65,125,69,.12);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--shadow);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.blog-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(228,104,48,.35);
  box-shadow: var(--shadow-lg);
}

.blog-img-v2 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  height: 210px;
}

.blog-img-v2.c1 {
  background: linear-gradient(135deg, var(--verde-esc), var(--verde-med));
}

.blog-img-v2.c2 {
  background: linear-gradient(135deg, #6b1a0a, var(--laranja));
}

.blog-img-v2.c3 {
  background: linear-gradient(135deg, var(--verde-esc), #3d7a40);
}

.blog-img-v2.c4 {
  background: linear-gradient(135deg, var(--teal), #0d6b5e);
}

.blog-badge-v2 {
  top: .9rem;
  font-weight: 800;
  letter-spacing: .1em;
  border-radius: 50px;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: .38rem .82rem;
  color: #fff;
  background: rgba(65,125,69,.92);
  backdrop-filter: blur(10px);
  font-size: .68rem;
  text-transform: uppercase;
}

.blog-body-v2 {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-cat-v2 {
  margin-bottom: .45rem;
  color: var(--laranja);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.blog-body-v2 h3 {
  font-size: .97rem;
  font-weight: 900;
  color: var(--verde-esc);
  line-height: 1.4;
  margin-bottom: .45rem;
}

.blog-body-v2 p {
  font-size: .82rem;
  color: var(--cinza-txt);
  line-height: 1.65;
  flex: 1;
  margin-bottom: .9rem;
}

.blog-meta-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
  border-top: 1px solid var(--cinza-cl);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-width: 0;
}

.blog-av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,var(--verde-esc),var(--lima));
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.blog-av-txt {
  font-size: .7rem;
  color: var(--cinza-txt);
  font-weight: 600;
}

.blog-time {
  font-size: .68rem;
  color: var(--cinza-txt);
}

.blog-newsletter-v2 {
  text-align: center;
  margin-top: 3rem;
  padding: clamp(1.7rem,4vw,3rem);
  border-radius: calc(var(--radius) + 14px);
  background: radial-gradient(circle at 12% 15%, rgba(196,210,35,.26), transparent 16rem),
        linear-gradient(135deg,var(--verde-esc),#244d2b);
  color: #fff;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(280px,.78fr);
  gap: 2rem;
  align-items: center;
}

.blog-newsletter-v2 h3 {
  font-size: clamp(1.45rem,3vw,2.25rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .6rem;
}

.blog-newsletter-v2 p {
  font-size: .88rem;
  opacity: .85;
  margin-bottom: 1.4rem;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin: 0;
}

.newsletter-form-v2 {
  gap: .65rem;
  max-width: 430px;
  margin: 0 auto;
  flex-wrap: wrap;
  display: flex;
  background: #fff;
  padding: .45rem;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.newsletter-form-v2 input {
  background: rgba(255,255,255,.2);
  font-size: .86rem;
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: .85rem 1rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  color: var(--verde-esc);
}

.newsletter-form-v2 input::placeholder {
  color: rgba(255,255,255,.6);
}

.newsletter-form-v2 input:focus {
  border-color: rgba(255,255,255,.8);
}

.newsletter-form-v2 button {
  border: none;
  font-size: .86rem;
  cursor: pointer;
  font-family: inherit;
  border-radius: 999px;
  padding: .85rem 1rem;
  background: var(--laranja);
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
  transition: all var(--tr);
}

.newsletter-form-v2 button:hover {
  background: var(--laranja-h);
  transform: translateY(-1px);
}

.videos-section {
  padding: 5.5rem 5%;
  background: var(--bg);
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1.5px solid var(--cinza-cl);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.8rem;
}

.video-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--tr), box-shadow var(--tr);
}

.video-card-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.video-card-thumb {
  position: relative;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 220px;
}

.video-icon {
  font-size: 2.2rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(228,104,48,.94);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 14px 36px rgba(0,0,0,.25);
  transition: transform var(--tr), background var(--tr);
}

.video-card-title {
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--verde-esc);
  line-height: 1.35;
  margin-bottom: .35rem;
}

.video-card-desc {
  font-size: .84rem;
  color: var(--cinza-txt);
  line-height: 1.7;
  margin-bottom: .9rem;
}

.video-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding-top: .75rem;
  border-top: 1px solid var(--cinza-cl);
}

.video-time-label {
  white-space: nowrap;
  margin-left: auto;
  color: var(--laranja);
  font-size: .78rem;
  font-weight: 900;
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.84);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5%;
}

.video-modal-inner {
  width: min(980px,100%);
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.video-player {
  height: auto;
  max-height: 80vh;
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: #000;
}

.video-modal-close {
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: transform .2s, background .2s;
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--verde-esc);
  font-size: 1.6rem;
  font-weight: 900;
  z-index: 2;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, .2);
  transform: scale(1.05);
}

.ind-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.6rem 1rem;
  border-right: 1px solid rgba(255,255,255,.14);
  transition: background var(--tr);
}

.ind-item:last-child {
  border-right: none;
}

.ind-item:hover {
  background: rgba(255,255,255,.1);
}

.ind-icon {
  font-size: 1.9rem;
  margin-bottom: .45rem;
}

.ind-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: .28rem;
}

.ind-label {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.video-sobre-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-hero-tools {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

.blog-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1.5px solid rgba(197,213,198,.65);
  color: var(--verde-esc);
  font-size: .76rem;
  font-weight: 800;
  box-shadow: var(--shadow-xs);
}

.blog-featured-v2::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg,var(--laranja),var(--lima),var(--verde-med));
  z-index: 3;
}

.blog-featured-img-v2, .blog-img-v2, .video-card-thumb {
  position: relative;
  overflow: hidden;
  background: var(--cinza-light);
}

.blog-featured-img-v2::after, .blog-img-v2::after, .video-card-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,0) 42%,rgba(0,0,0,.38) 100%);
  pointer-events: none;
  z-index: 1;
}

.blog-featured-img-v2 img, .blog-img-v2 img, .video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}

.blog-featured-v2:hover img, .blog-card-v2:hover img {
  transform: scale(1.055);
}

.blog-dest-badge, .blog-badge-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: var(--shadow-xs);
}

.blog-featured-body-v2 p, .blog-body-v2 p, .video-card-desc {
  color: var(--cinza-txt);
  line-height: 1.75;
}

.blog-featured-meta-v2, .blog-meta-v2, .video-card-meta {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

.blog-av-txt, .blog-time {
  color: var(--cinza-txt);
  font-size: .76rem;
  font-weight: 800;
}

.blog-stats {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.blog-stat {
  background: rgba(255,255,255,.84);
  border: 1.5px solid rgba(65,125,69,.12);
  border-radius: calc(var(--radius) + 4px);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-xs);
}

.blog-stat strong {
  display: block;
  color: var(--verde-esc);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 900;
}

.blog-stat span {
  display: block;
  margin-top: .35rem;
  color: var(--cinza-txt);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.blog-toolbar {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0 1.2rem;
}

.blog-search-wrap {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #fff;
  border: 1.5px solid var(--cinza-cl);
  border-radius: 999px;
  padding: .72rem 1rem;
  box-shadow: var(--shadow-xs);
}

.blog-search-wrap span {
  color: var(--laranja);
}

.blog-search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--verde-esc);
  font-family: inherit;
  font-size: .92rem;
  font-weight: 700;
}

.blog-sort {
  border: 1.5px solid var(--cinza-cl);
  background: #fff;
  color: var(--verde-esc);
  border-radius: 999px;
  padding: .78rem 1rem;
  font-weight: 900;
  font-family: inherit;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  outline: none;
}

.blog-grid-v2, .videos-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1.3rem;
}

.blog-body-v2, .video-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .72rem;
}

.blog-body-v2 h3, .video-card-title {
  margin: 0;
  color: var(--verde-esc);
  font-size: 1.07rem;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -.01em;
}

.blog-body-v2 p, .video-card-desc {
  margin: 0;
  font-size: .87rem;
}

.blog-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-top: auto;
  padding-top: .8rem;
  border-top: 1px solid var(--cinza-light);
  color: var(--verde-esc);
  font-size: .78rem;
  font-weight: 900;
}

.blog-card-cta span:last-child {
  color: var(--laranja);
}

.blog-empty {
  display: none;
  margin: 1.5rem 0 0;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1.5px dashed var(--cinza-cl);
  color: var(--cinza-txt);
  font-weight: 800;
  text-align: center;
}

.blog-tags-box {
  margin-top: 2.2rem;
  padding: 1.6rem;
  border-radius: calc(var(--radius) + 8px);
  background: #fff;
  border: 1.5px solid rgba(65,125,69,.12);
  box-shadow: var(--shadow-xs);
}

.blog-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .85rem;
}

.blog-tag-pill {
  font-size: .74rem;
  padding: .38rem .85rem;
  border-radius: 999px;
  border: 1.5px solid var(--cinza-cl);
  color: var(--cinza-txt);
  cursor: pointer;
  background: #fff;
  font-weight: 800;
  transition: all var(--tr);
}

.blog-tag-pill:hover {
  border-color: var(--laranja);
  color: var(--laranja);
  transform: translateY(-2px);
}

.blog-card-v2:hover .video-icon {
  transform: translate(-50%,-50%) scale(1.08);
  background: var(--verde-esc);
}

.newsletter-msg {
  margin-top: .8rem !important;
  font-size: .84rem;
  font-weight: 800;
  color: rgba(255,255,255,.92) !important;
  display: none;
}


/* ══════════════════════════════════════
   CONTATO / FORMULÁRIOS / FAQ
   ══════════════════════════════════════ */
.contato-section {
  padding: 5rem 5%;
  background: var(--bg-off);
}

.contato-inner-v2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4.5rem;
}

.contato-card-v2 {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border: 1.5px solid var(--cinza-cl);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--preto);
  transition: all var(--tr);
  margin-bottom: .75rem;
}

.contato-card-v2:hover {
  border-color: var(--laranja);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(228,104,48,.1);
}

.contato-loc-v2 {
  background: var(--verde-esc);
  padding: 1.7rem;
  border-radius: var(--radius);
  margin-top: .5rem;
}

.contato-loc-v2 h4 {
  color: #fff;
  font-size: .97rem;
  font-weight: 800;
  margin-bottom: .4rem;
}

.contato-loc-v2 p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

.form-box-v2 {
  background: #fff;
  border: 1.5px solid var(--cinza-cl);
  border-radius: var(--radius);
  padding: 2.3rem;
  box-shadow: var(--shadow);
}

.form-box-v2 h3 {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--verde-esc);
  margin-bottom: .3rem;
}

.form-box-v2 .form-sub {
  font-size: .84rem;
  color: var(--cinza-txt);
  margin-bottom: 1.8rem;
}

.form-row-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.form-submit-v2 {
  width: 100%;
  padding: .95rem;
  background: var(--laranja);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: .93rem;
  font-weight: 800;
  cursor: pointer;
  transition: all .3s;
  margin-top: .5rem;
  box-shadow: 0 4px 16px rgba(228,104,48,.28);
}

.form-submit-v2:hover {
  background: var(--laranja-h);
  transform: translateY(-2px);
}

.form-success-v2 {
  display: none;
  background: rgba(136,188,36,.1);
  border: 1.5px solid var(--lima);
  color: var(--verde-esc);
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: .86rem;
  font-weight: 700;
  margin-top: .75rem;
}

.faq-section-v2 {
  background: var(--bg);
  padding: 5.5rem 5%;
}

.faq-inner-v2 {
  max-width: 760px;
  margin: 2.2rem auto 0;
}

.faq-item-v2 {
  border-bottom: 1.5px solid var(--cinza-cl);
}

.faq-btn-v2 {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 0;
  font-family: inherit;
  font-size: .93rem;
  font-weight: 700;
  color: var(--verde-esc);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}

.faq-btn-v2:hover {
  color: var(--laranja);
}

.faq-icon-v2 {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid var(--cinza-cl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--laranja);
  transition: all .3s;
  flex-shrink: 0;
}

.faq-item-v2.open .faq-icon-v2 {
  background: var(--laranja);
  color: #fff;
  border-color: var(--laranja);
  transform: rotate(45deg);
}

.faq-answer-v2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.faq-answer-v2 p {
  font-size: .88rem;
  color: var(--cinza-txt);
  line-height: 1.82;
  padding-bottom: 1.1rem;
}

.faq-item-v2.open .faq-answer-v2 {
  max-height: 400px;
}


/* ══════════════════════════════════════
   REPERTÓRIO / MÍDIA / EXTRAS
   ══════════════════════════════════════ */
.repercussao-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.repercussao-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.repercussao-header h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900;
  color: var(--verde-esc);
  margin-top: .4rem;
}

.repercussao-header h2 em {
  font-style: normal;
  color: var(--laranja);
}

.repercussao-strip {
  display: flex;
  overflow: hidden;
  gap: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.repercussao-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: parceiros-scroll 28s linear infinite;
  min-width: max-content;
}

.repercussao-strip:hover .repercussao-track {
  animation-play-state: paused;
}

.repercussao-item {
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid var(--cinza-cl);
  border-radius: var(--radius-sm);
  padding: 1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 240px;
  max-width: 340px;
  cursor: pointer;
  transition: all var(--tr);
  text-decoration: none;
  color: inherit;
}

.repercussao-item:hover {
  border-color: var(--laranja);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.repercussao-logo {
  width: 54px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(30%);
  transition: filter .3s;
}

.repercussao-item:hover .repercussao-logo {
  filter: grayscale(0%);
}

.repercussao-txt {
  font-size: .78rem;
  font-weight: 700;
  color: var(--verde-esc);
  line-height: 1.45;
}


/* ══════════════════════════════════════
   OUTROS
   ══════════════════════════════════════ */
.badge-icon {
  flex-shrink: 0;
  opacity: .85;
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
}

.dot-lima {
  background: var(--lima);
}

.dot-laranja {
  background: var(--laranja);
}

.dot-verde {
  background: var(--verde-esc);
}

.page-hero {
  background: var(--verde-esc);
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* garante que nenhum pseudo-elemento vaza para fora da seção */
  contain: layout paint;
}

.page-hero-bg-leaf-1 {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50% 0 50% 0;
  background: var(--lima);
  opacity: .13;
  transform: rotate(-20deg);
}

.page-hero-bg-leaf-2 {
  position: absolute;
  bottom: -55px;
  left: -40px;
  width: 210px;
  height: 210px;
  border-radius: 0 50% 0 50%;
  background: var(--laranja);
  opacity: .1;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero-eyebrow {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lima-c);
  margin-bottom: .9rem;
  display: block;
}

.page-hero-title {
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: .9rem;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.page-hero-title em {
  font-style: normal;
  color: var(--laranja);
}

.page-hero-sub {
  font-size: .97rem;
  color: rgba(255,255,255,.65);
  max-width: 720px;
  line-height: 1.78;
}

.cc-icon-v2 {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--laranja);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.cc-text-v2 strong {
  display: block;
  font-size: .86rem;
  font-weight: 800;
  color: var(--verde-esc);
  margin-bottom: .1rem;
}

.cc-text-v2 span {
  font-size: .78rem;
  color: var(--cinza-txt);
}

.redes-v2 {
  display: flex;
  gap: .55rem;
  margin-top: 1.1rem;
}

.rede-v2 {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cinza-cl);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-txt);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 800;
  transition: all var(--tr);
}

.rede-v2:hover {
  border-color: var(--laranja);
  color: var(--laranja);
}

#indicadores-visuais {
  background: var(--laranja);
  padding: 2.3rem 5%;
}

.indicadores-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* FUNDO DA ÁREA ENTRE O VÍDEO E O TEXTO DA PÁGINA SOBRE */
#video-sobre {
  position: relative;
  padding: 5.5rem 5% 7rem;
  background:
    linear-gradient(
      rgba(240, 245, 240, 0.88),
      rgba(240, 245, 240, 0.92)
    ),
    url("../ft/equipe.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

#video-sobre::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(228, 104, 48, 0.10), transparent 32%),
    radial-gradient(circle at 80% 70%, rgba(136, 188, 36, 0.12), transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.video-sobre-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.box-estudo {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #2bd32b, #26b926);
  color: #fff;
  box-shadow: 0 12px 30px rgb(245, 239, 239);
}

.box-estudo-texto {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

.icon-pdf {
  display: flex;
  align-items: center;
}

#repercussao {
  background: var(--bg-off);
  padding: 4.5rem 5%;
  overflow: hidden;
  padding-block: clamp(3rem, 6vh, 5rem);
}

.frase-aspas {
  color: var(--laranja);
  font-size: 1.4rem;
  font-family: serif;
  font-style: normal;
  line-height: 0;
  vertical-align: -0.3em;
}

img, video, iframe, svg {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: min(1200px, 100% - clamp(2rem, 6vw, 5rem));
  margin-inline: auto;
}

section {
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.icon-mark svg {
  width: 21px;
  height: 21px;
  color: var(--laranja);
}

.professional-section-note {
  max-width: 720px;
  margin: .65rem auto 0;
  color: var(--cinza-txt);
  font-size: .96rem;
  line-height: 1.8;
}


/* ══════════════════════════════════════
   ANIMAÇÕES / KEYFRAMES
   ══════════════════════════════════════ */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: .85; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scrollAnim {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: .3; transform: scaleY(.6); }
}

@keyframes sliceIn {
    0%{
      opacity: 0;
      transform: scale(.75);
    }
    100%{
      opacity: 1;
      transform: scale(1);
    }
  }

@keyframes labelIn {
    0%{
      opacity: 0;
      transform: scale(.78);
    }
    100%{
      opacity: 1;
      transform: scale(1);
    }
  }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes parceiros-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes shimmer {
  from { background-position: 0%; }
  to   { background-position: 200%; }
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes timeline-shine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}


/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 980px)
   ══════════════════════════════════════ */
@media (max-width: 980px) {

  /* VÍDEOS / YOUTUBE */
  .youtube-feature-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .youtube-copy p {
    max-width: 100%;
  }

  .depo-video-wrap {
    padding: 1.25rem;
  }


  /* DEPOIMENTOS */
  .dep-grid {
    grid-template-columns: 1fr;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 640px)
   ══════════════════════════════════════ */
@media (max-width: 640px) {

  /* VÍDEOS / YOUTUBE */
  .youtube-feature {
    padding: 4rem 5%;
  }

  .youtube-play {
    width: 62px;
    height: 62px;
    font-size: 1.7rem;
  }

  .depo-video-wrap {
    padding: 1.25rem;
  }

  .depo-video-copy h3 {
    font-size: 1.15rem;
  }

  .youtube-card--small.horizontal {
    aspect-ratio: 16 / 9;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 768px)
   ══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ODS */
  .ods-wheel {
    width: min(96vw, 560px);
  }

  .ods-center-text {
    width: 150px;
    height: 150px;
  }

  .ods-center-text strong {
    font-size: 1.8rem;
  }

  .ods-center-text span {
    font-size: .8rem;
  }

  .label-icon {
    font-size: 23px;
  }

  .label-num {
    font-size: 24px;
  }

  .label-txt {
    font-size: 11px;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 900px)
   ══════════════════════════════════════ */
@media (max-width: 900px) {

  /* ── NAV MOBILE — REESCRITA COMPLETA ── */
  .nav-links {
    display: none; /* escondido no mobile por padrão */
  }

  .nav-links.open {
    /* Fullscreen overlay */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100% !important;
    background: #fff !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 2rem !important;
    gap: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
  }

  .hamburger {
    display: flex !important;
    z-index: 10001 !important;
    position: relative !important;
  }

  /* Links dentro do menu aberto */
  .nav-links.open li {
    width: 100% !important;
    max-width: 300px !important;
    border-bottom: 1px solid rgba(65,125,69,.1) !important;
    text-align: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .nav-links.open li:last-child {
    border-bottom: none !important;
    margin-top: 1.2rem !important;
  }

  .nav-links.open a {
    display: block !important;
    width: 100% !important;
    padding: 1.1rem 0 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--verde-esc) !important;
    text-align: center !important;
    text-decoration: none !important;
  }

  .nav-links.open a.nav-cta {
    display: inline-flex !important;
    width: auto !important;
    padding: .7rem 2.2rem !important;
    border-radius: 50px !important;
    background: var(--laranja) !important;
    color: #fff !important;
    margin-top: .3rem !important;
  }

  /* Eyebrow "Menu" no topo */
  .nav-links.open::before {
    content: "Menu" !important;
    display: block !important;
    font-size: .62rem !important;
    font-weight: 900 !important;
    letter-spacing: .24em !important;
    text-transform: uppercase !important;
    color: var(--cinza-txt) !important;
    margin-bottom: 2rem !important;
    padding-bottom: .8rem !important;
    border-bottom: 2px solid #c4d223 !important;
    width: 100% !important;
    max-width: 300px !important;
    text-align: center !important;
  }


  /* HERO HOME */
  .hero-inner, .sobre-quem-inner, .contato-inner-v2, .video-container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .hero-img-wrap {
    display: none;
  }


  /* IMPACTO / MÉTRICAS */
  .impacto-grid, .pessoas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impacto4anos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .impacto-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impacto-item {
    border-right: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .impacto-item:nth-child(2), .impacto-item:nth-child(4) {
    border-right: none;
  }

  .impacto-item:nth-child(3), .impacto-item:nth-child(4) {
    border-bottom: none;
  }


  /* ENTREGAS / SOLUÇÕES */
  .servicos-grid-2x2, .dep-grid, .cases-grid, .vitrine-grid-v2, .blog-grid-v2, .equipe-grid, .mvv-grid, .entregas-grid {
    grid-template-columns: 1fr;
  }


  /* ODS */
  .ods-grid {
    grid-template-columns: repeat(3, 1fr);
  }


  /* SERVIÇOS */
  .servico-full-card-v2, .blog-featured-v2 {
    grid-template-columns: 1fr;
  }

  .sfcard-right {
    display: none;
  }

  .servicos-header {
    grid-template-columns: 1fr;
  }


  /* PROCESSO / METODOLOGIA */
  .processo-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .processo-steps::before {
    display: none;
  }


  /* PARCEIROS / SELOS */
  .parceiros-grid {
    grid-template-columns: repeat(3, 1fr);
  }


  /* CTA / FOOTER / FLOATS */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .9rem;
  }


  /* BLOG */
  .videos-grid {
    grid-template-columns: 1fr;
  }


  /* CONTATO / FORMULÁRIOS / FAQ */
  .form-row-v2 {
    grid-template-columns: 1fr;
  }


  /* OUTROS */
  .indicadores-inner {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 1024px)
   ══════════════════════════════════════ */
@media (max-width: 1024px) {

  /* HERO HOME */
  .hero-inner, .youtube-feature-inner, .servicos-header, .sobre-quem-inner, .contato-inner-v2, .servico-full-card-v2 {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 3rem;
  }

  .hero-img-wrap {
    justify-content: center;
  }

  .hero-img-card {
    width: 100%;
    max-width: 620px;
  }


  /* IMPACTO / MÉTRICAS */
  .processo-steps, .impacto-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  /* ENTREGAS / SOLUÇÕES */
  .entregas-grid, .cases-grid, .dep-grid, .vitrine-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


  /* PROCESSO / METODOLOGIA */
  .processo-steps::before {
    display: none;
  }


  /* CTA / FOOTER / FLOATS */
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 520px)
   ══════════════════════════════════════ */
@media (max-width: 520px) {

  /* UTILITÁRIOS / COMPONENTES GERAIS */
  .hero-btns .btn {
    justify-content: center;
  }


  /* HERO HOME */
  .hero-frase-chave {
    font-size: .82rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }


  /* IMPACTO / MÉTRICAS */
  .impacto-grid, .pessoas-grid, .impacto4anos-grid {
    grid-template-columns: 1fr;
  }


  /* ODS */
  .mvv-grid, .processo-steps, .ods-grid {
    grid-template-columns: 1fr;
  }


  /* PARCEIROS / SELOS */
  .parceiros-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* CASES */
  .video-grid, .cases-grid {
    grid-template-columns: 1fr;
  }


  /* CTA / FOOTER / FLOATS */
  .footer-grid {
    grid-template-columns: 1fr;
  }


  /* OUTROS */
  .indicadores-inner {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (min-width: 1100px)
   ══════════════════════════════════════ */
@media (min-width: 1100px) {

  /* CASES */
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-card:first-child {
    grid-column: 1 / -1;
  }

  .case-card:first-child .case-card-header {
    padding: 2rem 2rem 1.6rem;
  }

  .case-card:first-child .case-num {
    font-size: 2.4rem;
  }

  .case-card:first-child .case-card-header h3 {
    font-size: 1.1rem;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 600px)
   ══════════════════════════════════════ */
@media (max-width: 600px) {

  /* HERO HOME */
  .hero-badges {
    flex-wrap: wrap;
    gap: .5rem;
  }


  /* IMPACTO / MÉTRICAS */
  .impacto-grid {
    grid-template-columns: 1fr 1fr;
  }

  .impacto-num {
    font-size: 2.2rem;
  }


  /* PARCEIROS / SELOS */
  .parceiros-selos {
    gap: .5rem;
  }


  /* CASES */
  .case-card:first-child {
    grid-column: unset;
  }


  /* REPERTÓRIO / MÍDIA / EXTRAS */
  .repercussao-item {
    min-width: 200px;
  }


  /* OUTROS */
  .selo {
    flex: 1 1 calc(50% - .5rem);
    min-width: 140px;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (min-width: 900px) and (max-width: 1200px)
   ══════════════════════════════════════ */
@media (min-width: 900px) and (max-width: 1200px) {

  /* ENTREGAS / SOLUÇÕES */
  .entregas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 760px)
   ══════════════════════════════════════ */
@media (max-width: 760px) {

  /* HERO HOME */
  .hero-proof-row {
    gap: .55rem;
  }

  .proof-pill {
    font-size: .7rem;
    padding: .48rem .75rem;
  }


  /* ENTREGAS / SOLUÇÕES */
  .entregas-grid {
    grid-template-columns: 1fr 1fr;
  }


  /* PROCESSO / METODOLOGIA */
  .method-icon {
    margin-left: auto;
    margin-right: auto;
  }


  /* DEPOIMENTOS */
  .dep-grid {
    grid-template-columns: 1fr;
  }


  /* PESSOAS */
  .pessoas-grid {
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
  }


  /* CASES */
  .cases-grid {
    grid-template-columns: 1fr;
  }


  /* CTA / FOOTER / FLOATS */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nl-row {
    flex-direction: column;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 480px)
   ══════════════════════════════════════ */
@media (max-width: 480px) {

  /* IMPACTO / MÉTRICAS */
  .impacto-num {
    font-size: 2.4rem;
  }


  /* PESSOAS */
  .pessoas-num {
    font-size: 2.2rem;
  }


  /* OUTROS */
  .people-grid {
    grid-template-columns: 1fr;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 920px)
   ══════════════════════════════════════ */
@media (max-width: 920px) {

  /* HERO HOME */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-img-wrap {
    display: none;
  }

  .hero-tag, .hero-btns, .hero-badges, .hero-frase-chave {
    margin-inline: auto;
  }

  .hero-tag {
    width: fit-content;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-frase-chave {
    text-align: left;
    max-width: 560px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 5vw, 3rem);
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (min-width: 1px)
   ══════════════════════════════════════ */
@media (min-width: 1px) {

  /* IMPACTO / MÉTRICAS */
  .impacto-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (min-width: 640px)
   ══════════════════════════════════════ */
@media (min-width: 640px) {

  /* PROCESSO / METODOLOGIA */
  .processo-steps {
    grid-template-columns: repeat(4, 1fr);
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 639px)
   ══════════════════════════════════════ */
@media (max-width: 639px) {

  /* PROCESSO / METODOLOGIA */
  .processo-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .processo-steps::before {
    display: none;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 700px)
   ══════════════════════════════════════ */
@media (max-width: 700px) {

  /* VÍDEOS / YOUTUBE */
  .depo-video-wrap {
    flex-direction: column;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width:980px)
   ══════════════════════════════════════ */
@media (max-width:980px) {

  /* BLOG */
  .blog-featured-v2, .blog-newsletter-v2 {
    grid-template-columns: 1fr;
  }

  .blog-featured-img-v2 {
    min-height: 320px;
  }

  .blog-grid-v2,.videos-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .blog-stats {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width:720px)
   ══════════════════════════════════════ */
@media (max-width:720px) {

  /* UTILITÁRIOS / COMPONENTES GERAIS */
  .blog-featured-meta-v2 .btn {
    width: 100%;
    justify-content: center;
    margin-left: 0 !important;
  }


  /* BLOG */
  .blog-toolbar {
    grid-template-columns: 1fr;
  }

  .blog-grid-v2,.videos-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form-v2 {
    border-radius: 24px;
    flex-direction: column;
  }

  .newsletter-form-v2 button {
    width: 100%;
  }

  .blog-stats {
    grid-template-columns: 1fr 1fr;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width:480px)
   ══════════════════════════════════════ */
@media (max-width:480px) {

  /* BLOG */
  .blog-stats {
    grid-template-columns: 1fr;
  }

  .blog-filter-v2 {
    width: 100%;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 720px)
   ══════════════════════════════════════ */
@media (max-width: 720px) {

  /* BASE / TOKENS */
  :root {
    --side-pad: 1.1rem;
  }

  html {
    font-size: 16px;
  }


  /* UTILITÁRIOS / COMPONENTES GERAIS */
  .hero-btns .btn {
    justify-content: center;
    width: 100%;
  }


  /* NAVEGAÇÃO */
  nav {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .nav-logo img {
    height: 38px;
  }

  /* PAGE HERO (páginas internas) */
  .page-hero {
    padding: 6rem 5% 3.5rem;
  }

  .page-hero-title {
    font-size: clamp(1.9rem, 8vw, 3rem);
    letter-spacing: -.4px;
  }

  .page-hero-sub {
    max-width: 100%;
  }


  /* HERO HOME */
  #hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 4rem;
  }

  .hero-inner {
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(2rem, 11vw, 3.1rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: .96rem;
  }

  .hero-frase-chave {
    font-size: .84rem;
    padding: .9rem 1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof-row {
    flex-direction: column;
    align-items: stretch;
  }

  .proof-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-img-card img {
    height: 360px;
  }

  .hero-img-selo {
    left: .9rem;
    bottom: .9rem;
    transform: scale(.95);
  }


  /* IMPACTO / MÉTRICAS */
  .entregas-grid, .cases-grid, .dep-grid, .servicos-grid-2x2, .vitrine-grid-v2, .processo-steps, .impacto-grid, .mvv-grid, .equipe-grid, .impacto4anos-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .impacto-item:first-child, .impacto-item:last-child {
    border-radius: 0;
  }

  .impacto-grid {
    border-radius: var(--radius);
  }


  /* DEPOIMENTOS */
  .dep-card {
    min-height: auto;
  }

  .dep-author {
    align-items: flex-start;
  }

  .dep-logo-box {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }


  /* PARCEIROS / SELOS */
  .parceiros-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .parceiros-selos {
    flex-direction: column;
  }

  .parceiros-selos .selo {
    width: 100%;
  }


  /* PESSOAS */
  .pessoa-stat {
    border-radius: var(--radius);
    aspect-ratio: auto;
    min-height: 160px;
  }


  /* CTA / FOOTER / FLOATS */
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .wa-float {
    width: 50px;
    height: 50px;
    right: 1.1rem;
  }

  .back-to-top {
    right: 1.1rem;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (min-width: 1500px)
   ══════════════════════════════════════ */
@media (min-width: 1500px) {

  /* BASE / TOKENS */
  :root {
    --container: 1440px;
  }

  html {
    font-size: 17px;
  }


  /* NAVEGAÇÃO */
  nav {
    padding-left: clamp(4rem, 6vw, 7rem);
    padding-right: clamp(4rem, 6vw, 7rem);
  }


  /* HERO HOME */
  .hero-img-card img {
    height: 590px;
  }


  /* ENTREGAS / SOLUÇÕES */
  .entrega-card {
    min-height: 310px;
  }


  /* VITRINE */
  .vcard-img-v2 {
    height: 210px;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (min-width: 1800px)
   ══════════════════════════════════════ */
@media (min-width: 1800px) {

  /* BASE / TOKENS */
  :root {
    --container: 1540px;
  }

  html {
    font-size: 18px;
  }


  /* HERO HOME */
  .hero-img-card img {
    height: 640px;
  }


  /* ENTREGAS / SOLUÇÕES */
  .entrega-card {
    min-height: 340px;
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 1180px)
   ══════════════════════════════════════ */
@media (max-width: 1180px) {

  /* BASE / TOKENS */
  :root {
    --container: 1120px;
    --side-pad: clamp(1.25rem, 4vw, 3rem);
  }


  /* HERO HOME */
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 4.8vw, 4rem);
  }


  /* IMPACTO / MÉTRICAS */
  .impacto4anos-grid {
    grid-template-columns: repeat(3, 1fr);
  }


  /* PARCEIROS / SELOS */
  .parceiros-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}

/* ══════════════════════════════════════
   RESPONSIVO — (max-width: 420px)
   ══════════════════════════════════════ */
@media (max-width: 420px) {

  /* UTILITÁRIOS / COMPONENTES GERAIS */
  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: .78rem 1.25rem;
    font-size: .84rem;
  }


  /* HERO HOME */
  .hero-title {
    font-size: 2.15rem;
  }

  .hero-img-card img {
    height: 310px;
  }

  .proof-mark {
    width: 42px;
    height: 42px;
  }


  /* PARCEIROS / SELOS */
  .parceiros-grid {
    grid-template-columns: 1fr;
  }

}

/* ══════════════════════════════════════
   AJUSTES FINAIS DE PROFISSIONALIZAÇÃO
   ══════════════════════════════════════ */

.servico-ideal::before,
.case-result::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-top: .45rem;
  border-radius: 50%;
  background: var(--laranja);
  flex-shrink: 0;
}

.ods-center-text strong {
  color: var(--verde-esc);
}

img,
svg,
video,
iframe {
  max-width: 100%;
}
/* ═══════════════════════════════════════
     SOBRE PAGE — ESTILOS APRIMORADOS
  ═══════════════════════════════════════ */

  /* ─── LAYOUT BASE ─── */
  .sobre-quem-inner.sobre-quem-inner-clean {
    display: block;
    max-width: 1180px;
  }

  .sobre-quem-inner-clean .sobre-text {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }

  .sobre-quem-inner-clean .section-tag,
  .sobre-quem-inner-clean .sobre-actions {
    justify-content: center;
  }

  .sobre-quem-inner-clean .section-title {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
  }

  .sobre-quem-inner-clean .sobre-highlight,
  .sobre-quem-inner-clean .sobre-quote {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }

  .sobre-quem {
    padding-bottom: 4.5rem;
  }

  .sobre-team-feature {
    display: none !important;
  }

  /* ─── VÍDEO SECTION ─── */
  #video-sobre {
    position: relative;
    padding: 5.5rem 5% 7rem;
    background:
      linear-gradient(rgba(240,245,240,.78), rgba(240,245,240,.85)),
      url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center 45%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
  }

  #video-sobre::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 18% 18%, rgba(228,104,48,.10), transparent 34%),
      radial-gradient(circle at 82% 72%, rgba(136,188,36,.12), transparent 38%);
    pointer-events: none;
    z-index: 0;
  }

  #video-sobre::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(29,43,30,.04);
    pointer-events: none;
    z-index: 0;
  }

  .video-sobre-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
  }

  .video-sobre-inner .youtube-card {
    box-shadow: 0 32px 90px rgba(29,43,30,.28);
    border: 1px solid rgba(255,255,255,.45);
  }

  /* ─── TIMELINE DE HISTÓRIA ─── */
  .historia-section {
    background: var(--bg-soft);
    padding: clamp(4rem, 7vw, 7rem) 5%;
    position: relative;
    overflow: hidden;
  }

  .historia-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(136,188,36,.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .historia-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .historia-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .historia-timeline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .historia-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--laranja), var(--verde-esc), var(--lima));
    transform: translateX(-50%);
  }

  .historia-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
  }

  .historia-item.visible {
    opacity: 1;
    transform: none;
  }

  .historia-item:nth-child(odd) .historia-content {
    grid-column: 1;
    text-align: right;
    padding-right: 2.5rem;
  }

  .historia-item:nth-child(odd) .historia-empty {
    grid-column: 3;
  }

  .historia-item:nth-child(even) .historia-content {
    grid-column: 3;
    text-align: left;
    padding-left: 2.5rem;
    order: 3;
  }

  .historia-item:nth-child(even) .historia-empty {
    grid-column: 1;
    order: 1;
  }

  .historia-item:nth-child(even) .historia-dot-wrap {
    order: 2;
  }

  .historia-dot-wrap {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

  .historia-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--branco);
    border: 3px solid var(--laranja);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 900;
    color: var(--laranja);
    letter-spacing: -.02em;
    box-shadow: 0 4px 20px rgba(228,104,48,.25);
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .historia-item:hover .historia-dot {
    transform: scale(1.12);
    box-shadow: 0 8px 28px rgba(228,104,48,.38);
  }

  .historia-content {
    background: var(--branco);
    border-radius: var(--radius);
    padding: 1.5rem 1.8rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--cinza-light);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
  }

  .historia-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  .historia-ano {
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: .4rem;
  }

  .historia-content h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--verde-esc);
    margin-bottom: .4rem;
    line-height: 1.3;
  }

  .historia-content p {
    font-size: .86rem;
    color: var(--cinza-txt);
    line-height: 1.65;
    margin: 0;
  }

  /* ─── FOTO DA EQUIPE ─── */
  .sobre-equipe-full {
    position: relative;
    width: 100%;
    min-height: clamp(560px, 86vh, 820px);
    background: var(--verde-esc);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    isolation: isolate;
  }

  .sobre-equipe-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(29,43,30,.84) 0%, rgba(29,43,30,.52) 42%, rgba(29,43,30,.12) 100%),
      linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.38) 100%);
    z-index: 2;
    pointer-events: none;
  }

  .sobre-equipe-full img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 29%;
    z-index: 1;
    transform: scale(1.02);
    transition: transform 8s ease;
  }

  .sobre-equipe-full:hover img {
    transform: scale(1.05);
  }

  .sobre-equipe-full-content {
    position: relative;
    z-index: 3;
    width: min(100% - 10vw, 1180px);
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) 0;
    display: flex;
    align-items: flex-end;
  }

  .sobre-equipe-full-card {
    max-width: 580px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 28px;
    padding: clamp(1.6rem, 3vw, 2.6rem);
    box-shadow: 0 32px 80px rgba(0,0,0,.28);
    backdrop-filter: blur(20px);
  }

  .sobre-equipe-full-kicker {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--laranja);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: .8rem;
  }

  .sobre-equipe-full-kicker::before {
    content: "";
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: var(--laranja);
  }

  .sobre-equipe-full-card h3 {
    color: var(--verde-esc);
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: .9rem;
  }

  .sobre-equipe-full-card p {
    color: var(--cinza-txt);
    font-size: clamp(.92rem, 1.2vw, 1.05rem);
    line-height: 1.78;
    font-weight: 600;
    margin: 0;
  }

  .sobre-equipe-full-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.3rem;
  }

  .sobre-equipe-full-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--verde-esc);
    color: #fff;
    border-radius: 999px;
    padding: .55rem .9rem;
    font-size: .72rem;
    font-weight: 900;
    transition: transform .2s ease, background .2s ease;
  }

  .sobre-equipe-full-pill:hover {
    transform: translateY(-2px);
    background: var(--verde-med);
  }

  .sobre-equipe-full-pill strong {
    color: var(--lima-c);
    font-weight: 950;
  }

  /* ─── MVV ─── */
  .mvv-bar {
    width: 28px;
    height: 3px;
    background: var(--lima-c);
    margin-bottom: 1rem;
    border-radius: 2px;
  }

  /* ─── COMPROMISSOS ─── */
  .commit-bar {
    width: 28px;
    height: 3px;
    background: var(--lima-c);
    margin-bottom: 1rem;
    border-radius: 2px;
  }

  /* ─── CARDS DE EQUIPE — VERSÃO MELHORADA ─── */
  .membro-card-v2 {
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .membro-card-v2:hover {
    transform: translateY(-6px);
  }

  .membro-avatar-v2 img {
    transition: transform .5s ease;
  }

  .membro-avatar-v2:hover img {
    transform: scale(1.2);
  }

  .membro-contato a {
    transition: all .2s ease;
    position: relative;
    overflow: hidden;
  }

  /* ─── STATS DE PESSOAS ─── */
  .pessoa-stat {
    position: relative;
  }

  .pessoa-stat::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--laranja);
    border-radius: 2px;
    transition: width .4s ease;
  }

  .pessoa-stat:hover::after {
    width: 40%;
  }

  .pessoa-num {
    font-variant-numeric: tabular-nums;
  }

  /* ─── RESPONSIVO ─── */
  @media (max-width: 900px) {
    #video-sobre {
      background-attachment: scroll;
      background-position: center;
      padding: 4.5rem 5% 5.5rem;
    }

    .sobre-equipe-full {
      min-height: 620px;
    }

    .sobre-equipe-full::before {
      background:
        linear-gradient(180deg, rgba(29,43,30,.18) 0%, rgba(29,43,30,.72) 72%, rgba(29,43,30,.9) 100%);
    }

    .sobre-equipe-full img {
      object-position: center 50%;
    }

    .sobre-equipe-full-content {
      align-items: flex-end;
      padding-bottom: 2rem;
      width: min(100% - 2rem, 680px);
    }

    .sobre-equipe-full-card {
      max-width: 100%;
      border-radius: 22px;
    }

    .sobre-quem-inner-clean .sobre-text {
      text-align: left;
    }

    .sobre-quem-inner-clean .section-tag,
    .sobre-quem-inner-clean .sobre-actions {
      justify-content: flex-start;
    }

    .historia-timeline::before {
      left: 24px;
    }

    .historia-item {
      grid-template-columns: 48px 1fr;
      grid-template-rows: auto auto;
    }

    .historia-dot-wrap {
      grid-column: 1;
      grid-row: 1;
    }

    .historia-item:nth-child(odd) .historia-content,
    .historia-item:nth-child(even) .historia-content {
      grid-column: 2;
      text-align: left;
      padding-left: 1.5rem;
      padding-right: 0;
      order: unset;
    }

    .historia-item:nth-child(odd) .historia-empty,
    .historia-item:nth-child(even) .historia-empty {
      display: none;
    }

    .historia-item:nth-child(even) .historia-dot-wrap {
      order: unset;
    }
  }

  @media (max-width: 520px) {
    .sobre-equipe-full {
      min-height: 560px;
    }

    .sobre-equipe-full-card {
      padding: 1.15rem;
    }

    .sobre-equipe-full-metrics {
      gap: .5rem;
    }

    .sobre-equipe-full-pill {
      font-size: .68rem;
      padding: .48rem .72rem;
    }
  }
  /* ══════════════════════════════════════
       CURSOR CUSTOMIZADO FORÇADO
       ══════════════════════════════════════ */
    html,
    body,
    body * {
      cursor: none !important;
    }

    .cursor-dot,
    .cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 2147483647;
      transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
      will-change: transform;
    }

    .cursor-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #e46830;
      box-shadow: 0 0 18px rgba(228, 104, 48, .55);
    }

    .cursor-ring {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 2px solid #e46830;
      opacity: .75;
      transition:
        width .18s ease,
        height .18s ease,
        opacity .18s ease,
        border-color .18s ease,
        background .18s ease;
    }

    .cursor-dot.cursor-active {
      background: #417d45;
      box-shadow: 0 0 18px rgba(65, 125, 69, .55);
    }

    .cursor-ring.cursor-active {
      width: 56px;
      height: 56px;
      opacity: .35;
      border-color: #417d45;
      background: rgba(65, 125, 69, .08);
    }

    .cursor-hidden {
      opacity: 0 !important;
    }

    @media (max-width: 768px) {
      html,
      body,
      body * {
        cursor: auto !important;
      }

      .cursor-dot,
      .cursor-ring {
        display: none !important;
      }
    }
    /* ══════════════════════════════════════
   PERFORMANCE — PARCEIROS SEM TRAVAMENTO
   ══════════════════════════════════════ */

.parceiros-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
  gap: 1rem !important;
  overflow: visible !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.parceiros-track {
  display: contents !important;
  animation: none !important;
  transform: none !important;
}

.parceiros-grid.parceiros-marquee {
  display: grid !important;
  overflow: visible !important;
  padding: 0 !important;
}

.parceiros-grid .parceiro,
.parceiros-grid.parceiros-marquee .parceiro {
  width: 100% !important;
  height: 88px !important;
  min-height: 88px !important;
  display: grid !important;
  place-items: center !important;
  background: #fff;
  border: 1px solid rgba(65, 125, 69, .12);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(65, 125, 69, .06);
}

.parceiros-grid .parceiro img {
  max-width: 110px !important;
  max-height: 52px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  filter: none !important;
  opacity: 1 !important;
  transition: transform .2s ease !important;
}

.parceiros-grid .parceiro:hover img {
  transform: scale(1.04);
}
/* ══════════════════════════════════════
   CTA FULL WIDTH CORRETO
   ══════════════════════════════════════ */

/* ══════════════════════════════════════
   FULL WIDTH — PESSOAS E CASES
   ══════════════════════════════════════ */

#pessoas,
#cases-home {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden !important;
}

/* fundo verde até os cantos */
#pessoas {
  background: var(--verde-esc) !important;
  padding-block: clamp(3.5rem, 7vh, 6rem) !important;
}

/* fundo claro até os cantos */
#cases-home {
  background: var(--bg) !important;
  padding-block: clamp(3.5rem, 7vh, 7rem) !important;
}

/* conteúdo centralizado dentro do fundo full */
#pessoas .pessoas-inner,
#cases-home .cases-inner {
  width: min(1200px, calc(100% - clamp(2rem, 6vw, 5rem))) !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* grid de pessoas */
#pessoas .pessoas-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 1.2rem !important;
  width: 100% !important;
}

#pessoas .pessoa-stat {
  width: 100% !important;
  min-width: 0 !important;
}

/* grid de cases */
#cases-home .cases-grid {
  width: 100% !important;
  max-width: 100% !important;
}

/* responsivo */
@media (max-width: 1100px) {
  #pessoas .pessoas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  #pessoas .pessoas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #pessoas .pessoas-inner,
  #cases-home .cases-inner {
    width: calc(100% - 1.5rem) !important;
  }
}

@media (max-width: 460px) {
  #pessoas .pessoas-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ── seção ── */
          .selos-carrossel-section{
            padding:5rem 0 4rem;
            display:flex;flex-direction:column;align-items:center;
            overflow:hidden;
          }
          .selos-carrossel-label{
            font-size:.62rem;font-weight:900;letter-spacing:.22em;
            text-transform:uppercase;color:var(--cinza-txt,#6b7e6c);
            margin-bottom:3.5rem;font-family:'Nunito',sans-serif;
          }

          /* ── trilho do carrossel ── */
          .selos-track-outer{
            width:100%;
            position:relative;
          }
          /* fade nas bordas */
          .selos-track-outer::before,
          .selos-track-outer::after{
            content:'';position:absolute;top:0;bottom:0;width:120px;z-index:2;pointer-events:none;
          }
          .selos-track-outer::before{left:0;background:linear-gradient(to right,var(--bg,#f8faf7),transparent);}
          .selos-track-outer::after{right:0;background:linear-gradient(to left,var(--bg,#f8faf7),transparent);}

          .selos-track{
            display:flex;align-items:center;
            gap:0;
            /* auto-scroll infinito */
            animation:selos-scroll 18s linear infinite;
            width:max-content;
          }
          .selos-track:hover{animation-play-state:paused;}

          @keyframes selos-scroll{
            0%  {transform:translateX(0);}
            100%{transform:translateX(-50%);}
          }

          /* ── cada item ── */
          .selo-item{
  border: none;
  box-shadow: none;
  background: transparent;
}

.selo-logo-img{
  border: none;
  outline: none;
  box-shadow: none;
  display: block;
}

          .selo-nome{
            font-family:'Nunito',sans-serif;
            font-size:.92rem;font-weight:900;
            color:var(--verde-esc,#2e5c31);
            text-align:center;line-height:1.3;
          }
          .selo-sub{
            display:block;font-size:.72rem;font-weight:700;
            color:var(--cinza-txt,#6b7e6c);margin-top:.2rem;
            font-family:'Nunito',sans-serif;
          }

          /* botões de nav */
          .selos-nav{display:flex;gap:1rem;margin-top:3rem;}
          .selos-nav-btn{
            width:42px;height:42px;border-radius:50%;
            background:#fff;border:1.5px solid rgba(65,125,69,.22);
            color:var(--verde-esc,#2e5c31);cursor:pointer;
            display:flex;align-items:center;justify-content:center;
            font-size:1.1rem;transition:background .2s,border-color .2s,transform .2s;
            font-family:'Nunito',sans-serif;
          }
          .selos-nav-btn:hover{background:var(--verde-esc,#2e5c31);color:#fff;border-color:var(--verde-esc,#2e5c31);transform:scale(1.08);}

          @media(max-width:600px){
            .selos-track-outer::before,.selos-track-outer::after{width:40px;}
            .selo-item{padding:0 2.5rem;}
            .selo-logo-img{height:100px;}
          }
/* ══════════════════════════════════════════════════════════════
   RESPONSIVO COMPLETO — MOBILE / TABLET / DESKTOP
   Cobre: index, sobre, vitrine, blog, transparencia, artigos,
          projetos, certificacoes, contato, etica, politica
   ══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   TABLET LARGO  (max-width: 1024px)
───────────────────────────────────────── */
@media (max-width: 1024px) {

  /* IMPACTO 4 ANOS */
  .impacto4anos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* ODS WHEEL */
  .ods-wheel-wrap {
    max-width: 460px;
  }

  /* IMPACT CHART */
  .impact-chart-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .impact-pillar-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .6rem;
    justify-content: center;
  }
  .impact-pillar-btn {
    flex: 1 1 auto;
    min-width: 120px;
  }

  /* LIDER CARD (sobre) */
  .lider-card {
    grid-template-columns: 240px 1fr;
  }

  /* TRANSPARÊNCIA commit banner */
  .transp-commit {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* PROCESSO steps */
  .processo-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .processo-steps::before {
    display: none;
  }

}


/* ─────────────────────────────────────────
   TABLET  (max-width: 860px)
───────────────────────────────────────── */
@media (max-width: 860px) {

  /* LIDER CARD — empilha */
  .lider-card {
    grid-template-columns: 1fr;
  }
  .lider-left {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
    gap: 1rem;
  }
  .lider-avatar-wrap {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
  }
  .lider-nome { font-size: 1.05rem; }
  .lider-identidade {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .3rem;
  }
  .lider-btns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .4rem;
  }
  .lider-list {
    grid-template-columns: 1fr;
  }
  .lider-right {
    padding: 1.5rem;
  }
  .lider-stat-strip {
    flex-wrap: wrap;
    gap: .8rem;
  }

  /* TRAJETÓRIA — empilha */
  .traj-track {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    padding-top: 0 !important;
    padding-left: 2.8rem !important;
  }
  .traj-step {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }

  /* ODS WHEEL */
  .ods-wheel-wrap {
    max-width: 360px;
  }
  .ods-section-inner,
  .ods-inner {
    flex-direction: column;
    align-items: center;
  }
  .ods-info-panel {
    max-width: 100%;
  }

  /* PESSOAS stats — 2 col */
  #pessoas .pessoas-grid {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }

  /* TRANSPARÊNCIA grid */
  .transp-grid {
    grid-template-columns: 1fr !important;
  }

  /* CASES grid */
  .cases-grid {
    grid-template-columns: 1fr !important;
  }

}


/* ─────────────────────────────────────────
   MOBILE  (max-width: 640px)
───────────────────────────────────────── */
@media (max-width: 640px) {

  /* PADDING GLOBAL */
  section,
  .section {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }

  /* TIPOGRAFIA */
  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1.15;
  }
  .page-hero-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  /* NAV */
  nav {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .nav-logo img {
    height: 34px;
  }

  /* HERO */
  #hero {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }
  .hero-title {
    font-size: clamp(1.85rem, 10vw, 2.8rem);
    line-height: 1.08;
  }
  .hero-subtitle {
    font-size: .92rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
  }
  .hero-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-proof-row {
    flex-direction: column;
    gap: .5rem;
  }
  .proof-pill {
    width: 100%;
    justify-content: flex-start;
  }
  .hero-badges {
    flex-wrap: wrap;
    gap: .45rem;
    justify-content: center;
  }

  /* IMPACTO 4 ANOS */
  .impacto4anos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* IMPACT CHART */
  .impact-pillar-btn {
    padding: .75rem .9rem;
    font-size: .78rem;
  }
  .impact-item-name {
    font-size: .82rem;
  }
  .impact-item-desc {
    font-size: .74rem;
  }

  /* ODS WHEEL */
  .ods-wheel-wrap {
    max-width: 100%;
  }
  .ods-svg {
    width: 100%;
    height: auto;
  }

  /* SELOS CAROUSEL */
  .selo-item {
    padding: 0 2rem !important;
  }
  .selo-logo-img {
    height: 90px !important;
  }

  /* ENTREGAS */
  .entregas-grid {
    grid-template-columns: 1fr !important;
  }

  /* DEPOIMENTOS */
  .dep-grid {
    grid-template-columns: 1fr !important;
  }

  /* PESSOAS stats — 1 col em xs */
  #pessoas .pessoas-grid {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: .7rem !important;
  }
  .pstat-num {
    font-size: 2.2rem;
  }

  /* TRANSPARÊNCIA CTA INDEX */
  #transp-cta [style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.8rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: .8rem;
  }

  /* BLOG */
  .blog-grid-v2,
  .videos-grid {
    grid-template-columns: 1fr !important;
  }
  .blog-featured-v2 {
    grid-template-columns: 1fr !important;
  }
  .blog-featured-img-v2 {
    min-height: 200px;
  }

  /* CASES */
  .case-card:first-child {
    grid-column: unset !important;
  }

  /* SOBRE — MVV */
  .mvv-grid {
    grid-template-columns: 1fr !important;
  }

  /* SOBRE — PESSOAS stats (nova seção verde) */
  .pessoas-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .8rem !important;
  }

  /* SOBRE — LIDER CARD */
  .lider-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .lider-btns {
    flex-direction: column;
    width: 100%;
  }
  .lider-btn {
    width: 100%;
    justify-content: center;
  }
  .lider-identidade {
    justify-content: center;
  }
  .lider-list {
    grid-template-columns: 1fr;
  }
  .lider-stat-strip {
    justify-content: space-between;
  }

  /* VITRINE — parceiros carousel */
  .parc-item {
    width: 140px !important;
    height: 90px !important;
  }
  .parc-item img {
    max-height: 56px !important;
  }
  .parc-carousel-outer::before,
  .parc-carousel-outer::after {
    width: 36px !important;
  }

  /* PROJETOS — caso h3 */
  .caso-h3 {
    font-size: 1rem;
  }

  /* CERTIFICAÇÕES */
  .cert-pillar-grid,
  .weps-grid {
    grid-template-columns: 1fr !important;
  }

  /* TRANSPARÊNCIA page */
  .transp-grid {
    grid-template-columns: 1fr !important;
  }
  .transp-commit {
    grid-template-columns: 1fr !important;
  }
  .transp-hero-stats {
    gap: 1rem;
    justify-content: space-between;
  }

  /* CONTATO */
  .contato-inner-v2 {
    grid-template-columns: 1fr !important;
  }

  /* INSTITUCIONAL (ética/política) */
  .conteudo-institucional {
    padding: 0;
  }
  .blog-featured-body-v2 {
    padding: 1.2rem;
  }

  /* MODAIS */
  .sol-modal-panel {
    grid-template-columns: 1fr !important;
    margin: .5rem;
    border-radius: 20px;
  }
  .sol-modal-img-wrap {
    min-height: 160px !important;
    border-radius: 20px 20px 0 0 !important;
  }
  .sol-modal-body {
    padding: 1.2rem !important;
  }
  .sol-modal-title {
    font-size: 1.25rem !important;
  }

  /* SERVIÇOS */
  .servico-full-card-v2 {
    grid-template-columns: 1fr !important;
  }
  .servico-full-img {
    min-height: 220px;
    border-radius: 20px 20px 0 0 !important;
  }

}


/* ─────────────────────────────────────────
   MOBILE XS  (max-width: 400px)
───────────────────────────────────────── */
@media (max-width: 400px) {

  .hero-title {
    font-size: 1.8rem;
  }

  .pstat-num {
    font-size: 1.9rem;
  }

  .lider-stat-num {
    font-size: 1.3rem;
  }

  #pessoas .pessoas-grid {
    grid-template-columns: 1fr !important;
  }

  .pessoas-stats-grid {
    grid-template-columns: 1fr !important;
  }

  .impacto4anos-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-social {
    justify-content: center;
  }

  .transp-hero-stats {
    flex-direction: column;
    align-items: center;
  }

  /* TRAJETÓRIA */
  .traj-card {
    padding: .9rem 1rem;
  }
  .traj-year {
    font-size: .75rem;
  }

}


/* ─────────────────────────────────────────
   TABLET PORTRAIT  (max-width: 768px)
───────────────────────────────────────── */
@media (max-width: 768px) {

  /* PROCESSO steps — 2 colunas */
  .processo-steps {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.8rem;
  }
  .processo-steps::before {
    display: none !important;
  }

  /* EQUIPE GRID */
  .equipe-grid {
    grid-template-columns: 1fr !important;
  }

  /* SOBRE MVP (pessoas stats) */
  .pessoas-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .9rem;
  }

  /* ODS */
  .ods-inner {
    flex-direction: column;
    gap: 2rem;
  }

  /* VIDEO */
  .youtube-feature-inner {
    flex-direction: column;
  }

  /* IMPACTO CHART — em coluna única */
  .impact-chart-grid {
    grid-template-columns: 1fr !important;
  }

  /* TRANSPARÊNCIA commit */
  .transp-commit {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  /* INDEX tdoc cards */
  #transp-cta .tdoc-card {
    padding: .8rem .9rem;
  }

}


/* ─────────────────────────────────────────
   AJUSTES GERAIS CROSS-DEVICE
───────────────────────────────────────── */

/* Evita overflow horizontal em qualquer breakpoint */
body, html {
  overflow-x: hidden;
}

/* Imagens sempre responsivas */
img {
  max-width: 100%;
  height: auto;
}

/* Botões touch-friendly */
@media (max-width: 768px) {
  .btn,
  .nav-cta,
  .lider-btn,
  .tdoc-card,
  .membro-contato a,
  .selos-nav-btn,
  .parc-nav-btn {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Espaçamento de seções reduzido */
  section {
    padding-top: clamp(3rem, 7vw, 5rem);
    padding-bottom: clamp(3rem, 7vw, 5rem);
  }

  /* Carousel de parceiros */
  .parc-nav {
    gap: .7rem;
    margin-top: 1.5rem;
  }

  /* Botão transparência no index */
  #transp-cta {
    padding: 3.5rem 4% !important;
  }

  /* Suaviza transições no mobile */
  * {
    -webkit-tap-highlight-color: transparent;
  }

  /* Desativa hover animations em touch */
  .lider-card:hover,
  .doc-card:hover,
  .tdoc-card:hover {
    transform: none !important;
  }
}

/* ─────────────────────────────────────────
   IPAD / TABLET LANDSCAPE  (768px – 1024px)
───────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {

  .lider-card {
    grid-template-columns: 220px 1fr;
  }

  .impacto4anos-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .cases-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .dep-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .entregas-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .servicos-grid-2x2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .blog-grid-v2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .pessoas-stats-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem;
  }

}


/* ══════════════════════════════════════
   MOBILE — BOTÕES FLUTUANTES CORRIGIDOS
   Movidos para a esquerda no mobile para
   não sobrepor o conteúdo do texto
   ══════════════════════════════════════ */
@media (max-width: 768px) {

  /* WhatsApp — lado esquerdo no mobile */
  .wa-float {
    right: auto !important;
    left: 1rem !important;
    bottom: 1.2rem !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  /* Label do WA some no mobile (só ícone) */
  .wa-float-label {
    display: none !important;
  }

  /* Back to top — lado direito, mais baixo */
  .back-to-top {
    right: 1rem !important;
    bottom: 1.2rem !important;
  }

  /* Theme toggle (lua) — lado esquerdo acima do WA */
  .theme-toggle {
    right: auto !important;
    left: 1rem !important;
    bottom: 5rem !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 1.1rem !important;
  }

}

@media (max-width: 480px) {

  /* Em telas muito pequenas: WA e theme-toggle do lado esquerdo */
  .wa-float {
    left: .8rem !important;
    bottom: 1rem !important;
    width: 48px !important;
    height: 48px !important;
  }

  .theme-toggle {
    left: .8rem !important;
    bottom: 4.6rem !important;
    width: 40px !important;
    height: 40px !important;
  }

  .back-to-top {
    right: .8rem !important;
    bottom: 1rem !important;
    width: 38px !important;
    height: 38px !important;
  }

}

/* ── ODS logo images inside SVG wheel ── */
.ods-logo-img {
  border-radius: 6px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.22));
  transition: transform .3s ease, filter .3s ease;
}
.slice:hover .ods-logo-img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
}

/* Hide number when image is shown */
.ods-logo-img + text .label-num {
  display: none;
}

