/* ==========================================================================
   Eficácia Organização | Grupo EFOR — Site Institucional v2
   Design inspirado em padrões modernos de agência (hero split, tabs,
   marquee de clientes, steps numerados, FAQ accordion, mega footer)
   ========================================================================== */

:root {
  --green-950: #0c2417;
  --green-900: #123a24;
  --green-800: #1a4d2e;
  --green-700: #24663c;
  --green-600: #337d43;
  --lime-500: #8faf1b;
  --lime-400: #a9c520;
  --lime-300: #c3d64e;

  --ink: #17201b;
  --ink-soft: #45524b;
  --ink-mute: #6d7a72;

  --bg: #ffffff;
  --bg-alt: #f4f8f2;
  --bg-dark: #0f2d1d;
  --line: #e4eae3;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px -12px rgba(18, 58, 36, .16);
  --shadow-lg: 0 26px 60px -22px rgba(18, 58, 36, .28);

  --font-head: "Manrope", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1200px;
  --header-h: 88px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--lg { padding: 1rem 2.1rem; font-size: 1rem; }

.btn--primary {
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(26, 77, 46, .55);
}
.btn--primary:hover { background: var(--green-700); transform: translateY(-2px); }

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

.btn--lime {
  background: linear-gradient(120deg, var(--lime-500), var(--lime-400));
  color: var(--green-950);
  box-shadow: 0 10px 26px -10px rgba(169, 197, 32, .6);
}
.btn--lime:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(169, 197, 32, .7); }

.btn--link {
  padding: .85rem .4rem;
  color: var(--green-700);
  font-weight: 700;
}
.btn--link:hover { color: var(--green-900); }

.btn--block { width: 100%; }

/* ---------- Pills ---------- */
.pill {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(169, 197, 32, .16);
  border-radius: 999px;
  padding: .3rem .85rem;
}
.pill--lime {
  color: var(--lime-300);
  background: rgba(169, 197, 32, .14);
  border: 1px solid rgba(169, 197, 32, .32);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(18, 58, 36, .4);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
}

.header__logo { height: 64px; width: auto; }

.nav { display: flex; align-items: center; gap: 1.7rem; margin-left: auto; }

.nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .93rem;
  color: var(--ink-soft);
  position: relative;
  padding: .3rem 0;
  transition: color .2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--lime-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover { color: var(--green-800); }
.nav__link:hover::after { transform: scaleX(1); }

.header__cta { flex-shrink: 0; }

/* ---------- Seletor de idioma ---------- */
.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}
.lang__opt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--ink-mute);
  padding: .3rem .6rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.lang__opt:hover { color: var(--green-800); }
.lang__opt.is-active {
  background: var(--green-800);
  color: #fff;
}

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

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + 56px);
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
}
.hero__blob--1 {
  width: 480px; height: 480px;
  top: -140px; right: -120px;
  background: rgba(169, 197, 32, .22);
}
.hero__blob--2 {
  width: 380px; height: 380px;
  bottom: 60px; left: -160px;
  background: rgba(26, 77, 46, .13);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.5rem;
  align-items: center;
  padding-bottom: 72px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(169, 197, 32, .15);
  border: 1px solid rgba(143, 175, 27, .3);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  margin-bottom: 1.4rem;
}
.hero__eyebrow svg { width: 16px; height: 16px; color: var(--lime-500); }

.hero__title {
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--green-950);
  margin-bottom: 1.2rem;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--green-700), var(--lime-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-size: 1.12rem;
  color: var(--ink-mute);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.4rem; }

.hero__proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.hero__proof-item { display: flex; align-items: center; gap: .7rem; }
.hero__proof-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green-800);
}
.hero__proof-label { font-size: .8rem; line-height: 1.35; color: var(--ink-mute); }
.hero__proof-sep { width: 1px; height: 40px; background: var(--line); }
.hero__proof-item--badge svg { width: 34px; height: 34px; color: var(--lime-500); flex-shrink: 0; }
.hero__proof-item--badge strong { color: var(--green-800); }

/* Composição de imagens */
.hero__media {
  position: relative;
  min-height: 480px;
}

.hero__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }

.hero__photo--main {
  position: absolute;
  top: 0; right: 0;
  width: 78%;
  height: 74%;
}
.hero__photo--sub {
  position: absolute;
  bottom: 0; left: 0;
  width: 46%;
  height: 44%;
  border: 6px solid #fff;
}

.hero__chip {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  z-index: 2;
}
.hero__chip--pf {
  top: 8%;
  left: -4%;
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
}
.hero__chip-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-800);
}
.hero__chip-label { font-size: .72rem; line-height: 1.3; color: var(--ink-mute); }
.hero__chip--ifpug {
  bottom: 16%;
  right: -3%;
  font-size: .85rem;
  color: var(--ink-soft);
}
.hero__chip--ifpug svg { width: 26px; height: 26px; color: var(--lime-500); }
.hero__chip--ifpug strong { color: var(--green-800); }

/* Faixa de clientes / marquee */
.clients-strip {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.4rem;
  background: var(--bg);
}
.clients-strip__label {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.4rem;
}

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #b9c6bd;
  white-space: nowrap;
  transition: color .25s ease;
}
.marquee__item:hover { color: var(--green-700); }

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

/* ==========================================================================
   Seções — base
   ========================================================================== */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background:
    radial-gradient(ellipse 70% 60% at 90% 0%, rgba(169, 197, 32, .1), transparent 60%),
    var(--bg-dark);
  color: #eef3ec;
}

.section__head { max-width: 800px; margin-bottom: 3.2rem; }
.section__head--center { margin-inline: auto; text-align: center; }

.section__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(169, 197, 32, .16);
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.section__tag--light { color: var(--lime-300); background: rgba(169, 197, 32, .14); }

.section__title {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--green-950);
}
.section--dark .section__title { color: #fff; }

.section__lead { margin-top: 1rem; font-size: 1.05rem; color: var(--ink-mute); }

/* ==========================================================================
   Metodologias — icon grid
   ========================================================================== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.method {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.3rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.method:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(169, 197, 32, .5);
}

.method__icon {
  width: 58px; height: 58px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 77, 46, .1), rgba(169, 197, 32, .18));
  color: var(--green-700);
}
.method__icon svg { width: 28px; height: 28px; }

.method h3 { font-size: 1rem; font-weight: 800; color: var(--green-900); margin-bottom: .35rem; }
.method p { font-size: .85rem; color: var(--ink-mute); }

/* ==========================================================================
   Split (Quem Somos / Processo)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split__content > p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.split__content .section__title { margin-bottom: 1.1rem; }
.split__content strong { color: var(--green-800); }

.split__media { position: relative; }

.split__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split__photo img { aspect-ratio: 4 / 3.2; object-fit: cover; width: 100%; }

.split__badge {
  position: absolute;
  bottom: -22px;
  right: -14px;
  background: var(--green-800);
  color: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.split__badge-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--lime-300);
}
.split__badge-label { font-size: .74rem; line-height: 1.35; color: rgba(255, 255, 255, .85); }

.split__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.6rem; }

/* Checklist */
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: .8rem;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .28em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(169, 197, 32, .22) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e6a3c' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.checklist--light li { color: rgba(238, 243, 236, .85); }
.checklist--light li::before {
  background-color: rgba(169, 197, 32, .2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c3d64e' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Serviços
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.service {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.1rem 1.9rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(169, 197, 32, .5);
}

.service--featured {
  background: linear-gradient(165deg, var(--green-900), var(--green-950));
  border-color: var(--green-800);
}
/* especificidade dupla: garante texto claro sobre o fundo verde,
   mesmo com as regras genéricas .service h3/.service p vindo depois */
.service.service--featured h3 { color: #fff; }
.service.service--featured p { color: rgba(238, 243, 236, .85); }
.service.service--featured .service__icon {
  background: rgba(169, 197, 32, .18);
  color: var(--lime-300);
}

.service__badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-950);
  background: linear-gradient(120deg, var(--lime-400), var(--lime-300));
  border-radius: 999px;
  padding: .3rem .8rem;
}

.service__icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26, 77, 46, .1), rgba(169, 197, 32, .18));
  color: var(--green-700);
  margin-bottom: 1.2rem;
}
.service__icon svg { width: 27px; height: 27px; }

.service h3 { font-size: 1.12rem; font-weight: 800; color: var(--green-900); margin-bottom: .6rem; }
.service p { font-size: .93rem; color: var(--ink-soft); }

.service--link { display: block; cursor: pointer; }
.service__more {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  color: var(--lime-300);
  transition: transform .2s ease;
}
.service--link:hover .service__more { transform: translateX(4px); }

/* ==========================================================================
   Tabs — Soluções
   ========================================================================== */
.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  margin-bottom: 2.6rem;
}

.tabs__btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: rgba(238, 243, 236, .75);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: .75rem 1.6rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.tabs__btn:hover { border-color: var(--lime-400); color: #fff; }
.tabs__btn.is-active {
  background: linear-gradient(120deg, var(--lime-500), var(--lime-400));
  border-color: transparent;
  color: var(--green-950);
}

.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: tabIn .45s ease; }

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

.tabs__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}

.tabs__text h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin: .9rem 0 .9rem;
}
.tabs__text > p { color: rgba(238, 243, 236, .82); margin-bottom: 1.2rem; }

.tabs__deploy {
  margin-top: 1.3rem;
  padding: .85rem 1.1rem;
  background: rgba(169, 197, 32, .1);
  border-left: 3px solid var(--lime-400);
  border-radius: 6px;
  font-size: .92rem;
  color: rgba(238, 243, 236, .9);
}
.tabs__deploy strong { color: var(--lime-300); }

.tabs__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .12);
}
.tabs__media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

.tabs__result {
  margin-top: 1.4rem;
  background: linear-gradient(150deg, rgba(169, 197, 32, .18), rgba(169, 197, 32, .06));
  border: 1px solid rgba(169, 197, 32, .4);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
}
.tabs__result-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--lime-300);
}
.tabs__result-label { font-size: .88rem; color: rgba(238, 243, 236, .85); }

.tabs__metrics { display: flex; gap: 2.2rem; margin-top: 1.4rem; }
.tabs__metrics strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--lime-300);
}
.tabs__metrics span { font-size: .85rem; color: rgba(238, 243, 236, .7); }

/* ==========================================================================
   Processo — steps
   ========================================================================== */
.split--reverse { grid-template-columns: .9fr 1.1fr; }

.steps { display: grid; gap: 1.3rem; }

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: rgba(169, 197, 32, .5);
}

.step__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(150deg, var(--green-700), var(--lime-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 { font-size: 1.06rem; font-weight: 800; color: var(--green-900); margin-bottom: .35rem; }
.step p { font-size: .91rem; color: var(--ink-soft); }

/* ==========================================================================
   Resultados
   ========================================================================== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.result {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.result:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(169, 197, 32, .5);
}

.result__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .8rem;
}
.result__top h3 { font-size: 1.15rem; font-weight: 800; color: var(--green-900); }
.result__period {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .06em;
  color: var(--ink-mute);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .25rem .75rem;
}

.result__pf {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1.1;
  margin-bottom: .7rem;
}
.result__pf span { font-size: 1rem; color: var(--lime-500); }

.result__desc { font-size: .89rem; color: var(--ink-soft); }

.results-total {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: linear-gradient(120deg, var(--green-900), var(--green-800));
  border-radius: var(--radius);
  padding: 2.4rem 2.6rem;
  box-shadow: var(--shadow-lg);
}

.results-total__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--lime-300);
}
.results-total__label { font-size: .86rem; color: rgba(255, 255, 255, .78); }

/* ==========================================================================
   Parceiros
   ========================================================================== */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.partner {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.partner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(169, 197, 32, .5);
}

.partner h3 { font-size: 1.06rem; font-weight: 800; color: var(--green-900); margin-bottom: .55rem; }
.partner .pill { margin-bottom: .9rem; }
.partner p { font-size: .88rem; color: var(--ink-mute); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.faq__intro .section__title { margin-bottom: 1rem; }
.faq__intro p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.faq__intro a strong { color: var(--green-800); }

.faq__list { display: grid; gap: .9rem; }

.faq__item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq__item[open] {
  border-color: rgba(169, 197, 32, .55);
  box-shadow: var(--shadow);
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-950);
  padding: 1.15rem 3.2rem 1.15rem 1.4rem;
  position: relative;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--green-700); }

.faq__item summary::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  width: 24px; height: 24px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e6a3c' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 16px no-repeat;
  background-color: rgba(169, 197, 32, .18);
  border-radius: 50%;
  transition: transform .3s ease;
}
.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__item p {
  padding: 0 1.4rem 1.3rem;
  font-size: .94rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background:
    radial-gradient(ellipse 60% 90% at 15% 10%, rgba(169, 197, 32, .16), transparent 60%),
    linear-gradient(120deg, var(--green-950), var(--green-800));
  padding: 84px 0;
  text-align: center;
  color: #fff;
}

.cta-banner__inner { max-width: 680px; margin-inline: auto; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.015em;
  margin-bottom: 1rem;
}
.cta-banner p { color: rgba(255, 255, 255, .8); margin-bottom: 2rem; }

/* ==========================================================================
   Contato
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info .section__title { margin-bottom: 1.8rem; }

.contact__list li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26, 77, 46, .1), rgba(169, 197, 32, .18));
  color: var(--green-700);
}
.contact__icon svg { width: 22px; height: 22px; }

.contact__list strong {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: .1rem;
}
.contact__list a, .contact__list span { color: var(--ink-soft); font-size: .97rem; }
.contact__list a:hover { color: var(--green-800); }

.contact__secondary { display: block; font-size: .86rem; color: var(--ink-mute); }
.contact__secondary a { font-size: .86rem; color: var(--ink-mute); }

.contact__firm {
  margin-top: 2rem;
  padding: 1.1rem 1.4rem;
  border-left: 4px solid var(--lime-400);
  background: var(--bg-alt);
  border-radius: 8px;
}
.contact__firm strong { display: block; font-family: var(--font-head); color: var(--green-900); }
.contact__firm span { font-size: .86rem; color: var(--ink-mute); }

.contact__card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.4rem;
}
.contact__card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-950);
  margin-bottom: 1.4rem;
}

/* Formulário (tema claro) */
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { margin-bottom: 1rem; }

.form__group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: .35rem;
}

.form__group input,
.form__group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .75rem .95rem;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: #a3aea7; }

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--lime-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(169, 197, 32, .2);
}

.form__group textarea { resize: vertical; min-height: 110px; }

.form__honey { display: none !important; }

.form .btn--block { margin-top: .4rem; }
.form .btn[disabled] { opacity: .6; cursor: wait; transform: none; }

.form__status {
  margin-top: .9rem;
  font-size: .92rem;
  text-align: center;
  min-height: 1.2em;
}
.form__status.is-success { color: var(--green-700); font-weight: 600; }
.form__status.is-error { color: #c0392b; font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--green-950); color: rgba(255, 255, 255, .75); }

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr .9fr 1fr 1.1fr;
  gap: 2.6rem;
  padding: 64px 0 48px;
}

.footer__logo {
  height: 54px;
  width: auto;
  margin-bottom: 1.2rem;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
}
.footer__brand p { font-size: .9rem; max-width: 300px; }

.footer__col h4 {
  color: var(--lime-300);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__col a, .footer__col span {
  display: block;
  font-size: .9rem;
  margin-bottom: .5rem;
  color: rgba(255, 255, 255, .72);
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--lime-300); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 1.3rem 0;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}

/* ==========================================================================
   Voltar ao topo
   ========================================================================== */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
  box-shadow: var(--shadow-lg);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--green-700); }
.to-top svg { width: 20px; height: 20px; }

/* ==========================================================================
   Animações de entrada
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1360px) {
  .nav { gap: 1.1rem; }
  .nav__link { font-size: .88rem; }
}

/* Colapsa o menu para hambúrguer mais cedo: com 7 itens + idioma + CTA
   o header não cabe em telas médias */
@media (max-width: 1120px) {
  .header__toggle { display: flex; }
  .header__cta { display: none; }
  .lang { margin-left: auto; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(18, 58, 36, .3);
    padding: .8rem 1.4rem 1.4rem;
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .nav.is-open { transform: translateY(0); }

  .nav__link { padding: .85rem 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
}

@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__media { min-height: 420px; max-width: 560px; margin-inline: auto; width: 100%; }
  .hero__chip--pf { left: 0; }
  .hero__chip--ifpug { right: 0; }

  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .results-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 3rem; }
  .split__badge { right: 10px; }
  .tabs__grid { grid-template-columns: 1fr; gap: 2rem; }
  .faq__grid, .contact__grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .results-total { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --header-h: 74px; }

  .section { padding: 72px 0; }

  .header__toggle { display: flex; }
  .header__logo { height: 52px; }
  .header__cta { display: none; }
  .lang { margin-left: auto; }
  .nav { margin-left: 0; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -20px rgba(18, 58, 36, .3);
    padding: .8rem 1.4rem 1.4rem;
    transform: translateY(-130%);
    transition: transform .3s ease;
  }
  .nav.is-open { transform: translateY(0); }

  .nav__link { padding: .85rem 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }

  .hero { padding-top: calc(var(--header-h) + 36px); }
  .hero__media { min-height: 360px; }

  .services-grid, .results-grid { grid-template-columns: 1fr; }
  .steps { gap: 1rem; }
  .step { grid-template-columns: 1fr; gap: .6rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 520px) {
  .method-grid { grid-template-columns: 1fr; }
  .results-total { grid-template-columns: 1fr 1fr; padding: 1.8rem; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .hero__proof { gap: 1rem; }
  .hero__proof-sep { display: none; }
  .tabs__metrics { flex-wrap: wrap; gap: 1.4rem; }
}
