:root {
  --green: #25D670;
  --green-dark: #0B7A3B;
  --black: #000000;
  --white: #FFFFFF;
  --text: rgba(0, 0, 0, 0.86);
  --muted: rgba(0, 0, 0, 0.62);
  --line: rgba(0, 0, 0, 0.12);
  --soft: rgba(37, 214, 112, 0.1);
  --ia-solid: #6D3AED;
  --ia-solid-light: #A78BFA;
  --ia-gradient: linear-gradient(96deg, #7C3AED 0%, #5B6CFF 52%, #2E9BF5 100%);
  --ia-gradient-light: linear-gradient(96deg, #A78BFA 0%, #8AA4FF 52%, #5FC5FF 100%);
  --ia-tint: rgba(124, 58, 237, 0.09);
  --ia-line: rgba(91, 108, 255, 0.34);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--black);
  background: var(--green);
  border-radius: 10px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: 76px;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 184px;
  height: 58px;
  text-decoration: none;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ia {
  color: var(--ia-solid);
  font-weight: 800;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .ia {
    background: var(--ia-gradient);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.ia-mark {
  display: grid;
  color: var(--white);
  background: var(--ia-gradient);
  font-weight: 800;
  place-items: center;
}

/* Sobre fundo escuro o gradiente precisa de tons mais claros para manter contraste. */
.site-footer .ia {
  color: var(--ia-solid-light);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .site-footer .ia {
    background: var(--ia-gradient-light);
    color: transparent;
  }
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 52px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  white-space: normal;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--black);
  background: var(--green);
  box-shadow: 0 14px 28px rgba(37, 214, 112, 0.24);
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-light {
  color: var(--black);
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.12);
}

.button-ghost {
  color: var(--black);
  background: transparent;
  border-color: var(--black);
}

.header-blog,
.header-cta {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 0.84rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--black);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.55rem, 3.2vw, 3.2rem);
  line-height: 1.16;
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.75rem;
  line-height: 1.23;
  font-weight: 800;
}

h2 span {
  color: var(--green);
}

h3 {
  margin-bottom: 13px;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 800;
}

.hero {
  overflow: hidden;
  background: var(--green);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
  min-height: 590px;
  gap: 32px;
}

.hero-copy {
  min-width: 0;
  padding: 74px 0;
}

.hero-copy p {
  max-width: 660px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.08rem;
}

.hero-copy .hero-lead {
  margin-bottom: 14px;
  font-size: 1.16rem;
  font-weight: 700;
}

.hero-copy .hero-eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .hero-eyebrow {
  color: rgba(0, 0, 0, 0.72);
}

.hero-copy .hero-ai {
  display: flex;
  max-width: 620px;
  margin: 22px 0 0;
  padding: 16px 18px;
  color: var(--text);
  font-size: 1rem;
  background: linear-gradient(96deg, rgba(124, 58, 237, 0.1), rgba(91, 108, 255, 0.1) 52%, rgba(46, 155, 245, 0.1));
  border: 1px solid var(--ia-line);
  border-radius: var(--radius-sm);
  gap: 14px;
  align-items: flex-start;
}

.hero-ai__mark {
  width: 36px;
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.hero-actions .button {
  min-width: 330px;
}

.hero-visual {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}

.hero-visual img {
  width: min(100%, 640px);
  max-width: 640px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.18));
}

.metrics-strip {
  padding: 58px 0 0;
  background: linear-gradient(90deg, var(--white), rgba(37, 214, 112, 0.08), var(--white));
  border-bottom: 1px solid var(--line);
}

.metrics-heading {
  min-width: 0;
  max-width: 860px;
  margin-bottom: 24px;
  text-align: center;
}

.metrics-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 160px;
  text-align: center;
}

.metrics-grid article {
  display: grid;
  min-width: 0;
  padding: 24px 30px;
  align-content: center;
  justify-items: center;
}

.metric-label {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
}

.metrics-grid h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 2.9rem;
  line-height: 1;
}

.metrics-grid p {
  margin-bottom: 2px;
  color: var(--black);
  font-weight: 800;
}

.metrics-grid small {
  max-width: 220px;
  color: rgba(0, 0, 0, 0.42);
  font-size: 0.68rem;
}

.metrics-media,
.clients-proof-media,
.roi-media,
.testimonial-proof {
  margin: 34px auto 0;
}

.metrics-media img,
.clients-proof-media img,
.roi-media img,
.testimonial-proof img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.14);
}

.metrics-media {
  max-width: 920px;
  padding-bottom: 58px;
}

.metrics-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: center;
}

/* Foto em retrato: contain evita o corte agressivo do 16/9 usado nas demais mídias. */
.value-media img {
  max-height: 520px;
  object-fit: contain;
}

.clients-proof-media,
.roi-media {
  max-width: 960px;
  margin-bottom: 34px;
}

.value-grid,
.platform-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.value-grid > *,
.platform-grid > *,
.about-grid > *,
.solutions-grid > *,
.iov-flow > *,
.calculator-layout > * {
  min-width: 0;
}

.value-copy p,
.platform-copy p,
.section-heading p,
.about-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.value-copy .button,
.platform-copy .button {
  margin-top: 18px;
}

.value-media,
.platform-media {
  display: grid;
  min-height: 390px;
  place-items: center;
}

.value-media img,
.platform-media img {
  width: 100%;
  max-width: 560px;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.16));
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading .section-kicker {
  margin-right: auto;
  margin-left: auto;
}

.value-copy .section-kicker,
.platform-copy .section-kicker,
.roi-heading .section-kicker,
.iov-ai .section-kicker {
  color: var(--green-dark);
  font-size: 0.76rem;
}

.solutions-section {
  background: var(--white);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  display: flex;
  min-height: 378px;
  padding: 30px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  flex-direction: column;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.iov-modules .solution-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.iov-modules .solution-card::after {
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(37, 214, 112, 0.16), rgba(37, 214, 112, 0));
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.card-icon {
  display: grid;
  width: 80px;
  height: 80px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--green);
  border-radius: 10px;
  font-size: 1.55rem;
  font-weight: 800;
  place-items: center;
}

.solution-card h3 {
  color: var(--black);
}

.module-role {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.solution-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.solution-card a {
  margin-top: auto;
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.solution-card a span {
  color: var(--green);
}

.iov-flow {
  display: grid;
  margin-top: 44px;
  padding: 28px;
  color: var(--white);
  background: #181a17;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
}

.iov-flow article {
  display: grid;
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  align-content: start;
  gap: 8px;
}

.iov-flow article > span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
}

.iov-flow article > strong {
  color: var(--white);
  font-size: 1rem;
}

.iov-flow article > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.iov-flow > i {
  align-self: center;
  color: var(--green);
  font-size: 1.35rem;
  font-style: normal;
}

.iov-flow .iov-flow__result {
  background: var(--green);
  border-color: var(--green);
}

.iov-flow .iov-flow__result > span,
.iov-flow .iov-flow__result > strong,
.iov-flow .iov-flow__result > p {
  color: var(--black);
}

.iov-ai {
  display: grid;
  margin-top: 22px;
  padding: 28px 32px;
  background: linear-gradient(120deg, rgba(124, 58, 237, 0.09), rgba(91, 108, 255, 0.07) 52%, rgba(46, 155, 245, 0.09));
  border: 1px solid var(--ia-line);
  border-radius: 18px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}

.iov-ai__mark {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  font-size: 1.25rem;
}

.iov-ai__note {
  color: var(--muted);
  font-size: 0.9rem;
}

.iov-ai h3,
.iov-ai p {
  margin-bottom: 6px;
}

.iov-ai p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.platform-section {
  background: rgba(0, 0, 0, 0.025);
}

.platform-disclaimer {
  padding-left: 14px;
  border-left: 3px solid var(--green);
  font-size: 0.82rem !important;
}

.iovpanel {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 26px;
  padding: 22px;
  background: #f4f7f5;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(5, 30, 18, 0.14);
}

.iovpanel__head {
  display: flex;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.iovpanel__head strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.12rem;
}

.iovpanel__head > div > span {
  color: var(--muted);
  font-size: 0.78rem;
}

.iovpanel__filters {
  display: flex;
  margin: 0;
  gap: 8px;
  flex-wrap: wrap;
}

.iovpanel__filters span {
  padding: 6px 14px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.7rem;
}

.iovpanel__kpis {
  display: grid;
  margin-top: 16px;
  gap: 10px;
  grid-template-columns: 1.1fr repeat(3, 1fr);
}

.iovpanel__indice,
.iovpanel__kpi {
  display: grid;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  gap: 2px;
  text-align: center;
  align-content: center;
}

.iovpanel__indice {
  border-color: rgba(37, 214, 112, 0.5);
  box-shadow: 0 10px 26px rgba(37, 214, 112, 0.16);
}

.iovpanel__indice span,
.iovpanel__kpi span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.iovpanel__indice strong {
  color: #f0952b;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.05;
}

.iovpanel__indice em {
  color: #f0952b;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

.iovpanel__kpi strong {
  color: var(--black);
  font-size: 1.62rem;
  font-weight: 800;
  line-height: 1.15;
}

.iovpanel__kpi small {
  color: var(--muted);
  font-size: 0.68rem;
}

.iovpanel__section-label {
  margin: 20px 0 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.iovpanel__section-label b {
  color: var(--black);
}

.iovpanel__views {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.iovpanel__views article {
  display: grid;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  gap: 10px;
  align-content: start;
}

.iovpanel__views h4 {
  margin: 0;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.iovpanel__metric {
  display: flex;
  margin: 0;
  gap: 8px;
  align-items: baseline;
}

.iovpanel__metric strong {
  color: var(--black);
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1;
}

.iovpanel__metric span {
  color: var(--muted);
  font-size: 0.72rem;
}

.iovpanel__stack {
  display: flex;
  overflow: hidden;
  height: 26px;
  border-radius: 7px;
}

.iovpanel__stack i {
  height: 100%;
}

.iovpanel__stack .is-ok {
  background: #1faa5c;
}

.iovpanel__stack .is-na {
  background: #98a5a0;
}

.iovpanel__stack .is-bad {
  background: #e8433f;
}

.iovpanel__donut {
  display: grid;
  width: 104px;
  height: 104px;
  margin: 0 auto;
  background:
    radial-gradient(circle at center, var(--white) 54%, transparent 55%),
    conic-gradient(#1faa5c 0 65.3%, #98a5a0 65.3% 70%, #e8433f 70% 100%);
  border-radius: 50%;
  place-content: center;
}

.iovpanel__donut span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.iovpanel__dots {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 5px;
  list-style: none;
}

.iovpanel__dots li {
  display: flex;
  color: var(--muted);
  font-size: 0.7rem;
  gap: 7px;
  align-items: center;
}

.iovpanel__dots li::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
}

.iovpanel__dots .is-ok::before {
  background: #1faa5c;
}

.iovpanel__dots .is-na::before {
  background: #98a5a0;
}

.iovpanel__dots .is-bad::before {
  background: #e8433f;
}

.iovpanel__priority {
  display: grid;
  margin-top: 10px;
  gap: 10px;
  grid-template-columns: 1.4fr 1fr 1fr;
}

.iovpanel__priority > div {
  display: grid;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  gap: 3px;
  align-content: center;
}

.iovpanel__priority span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.iovpanel__priority strong {
  color: var(--black);
  font-size: 0.96rem;
  line-height: 1.35;
}

.iovpanel__priority small {
  color: #f0952b;
  font-size: 0.72rem;
  font-weight: 700;
}

.iovpanel__diagnosis {
  background: rgba(37, 214, 112, 0.1) !important;
  border-color: rgba(37, 214, 112, 0.4) !important;
}

.iovpanel figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.solutions-divergence {
  max-width: 860px;
  margin: 0 auto 46px;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.75;
  text-align: center;
}

.solutions-divergence strong {
  color: var(--green-dark);
}

.solutions-divergence span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.clients-section {
  overflow: hidden;
  background: var(--white);
}

.client-wall {
  display: flex;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.client-logo {
  display: grid;
  width: 160px;
  min-width: 160px;
  height: 140px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  grid-template-rows: 1fr;
  place-items: center;
}

.client-logo img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.client-logo figcaption {
  display: none;
}

.clients-cta {
  display: flex;
  width: fit-content;
  margin: 38px auto 0;
  padding-inline: 34px;
}

.testimonials-section {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.testimonial-proof {
  width: 100%;
  margin: 0;
  background: #181a17;
  grid-column: 1 / -1;
}

.testimonial-proof img {
  max-height: 420px;
  border-radius: 0;
  box-shadow: none;
}

.testimonial-card {
  display: flex;
  min-height: 360px;
  padding: 52px 40px 42px;
  color: var(--white);
  background: var(--green);
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.testimonial-card.featured {
  background: #181a17;
}

.testimonial-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  object-fit: contain;
}

.testimonial-card blockquote {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.7;
}

.testimonial-card footer,
.testimonial-card .stars {
  max-width: 320px;
  margin-inline: auto;
}

.testimonial-card footer {
  display: grid;
  gap: 4px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.testimonial-card strong {
  color: var(--white);
}

.testimonial-card span {
  color: rgba(255, 255, 255, 0.76);
}

.stars {
  margin-top: 20px;
  color: #ffc400;
  letter-spacing: 0.18em;
}

.about-section {
  background: var(--white);
}

.about-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-video-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.about-video-trigger::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  content: "";
  transition: background 180ms ease;
}

.about-video-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.about-video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  padding-left: 4px;
  color: var(--black);
  background: var(--green);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  font-size: 1.5rem;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
  place-items: center;
}

.about-video-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.about-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-video-trigger:hover::after {
  background: rgba(0, 0, 0, 0.12);
}

.about-video-trigger:hover img {
  transform: scale(1.02);
}

.about-video-trigger:hover .about-video-play {
  transform: translate(-50%, -50%) scale(1.06);
}

.results-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.035), var(--white));
}

.roi-heading {
  max-width: 980px;
  margin-bottom: 44px;
}

.roi-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.calculator-layout > * {
  min-width: 0;
}

.roi-form {
  padding: clamp(28px, 5vw, 56px);
}

.form-heading > span,
.output-kicker {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 8px 0 6px;
  font-size: 1.75rem;
}

.form-heading p {
  color: var(--muted);
}

.field-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.roi-fields {
  grid-template-columns: 1fr;
}

.field-grid label {
  display: grid;
  grid-template-columns: 48px minmax(150px, 1fr) minmax(160px, 240px);
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
}

.field-icon,
.result-icon {
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: #0d5f3a;
  background: rgba(37, 214, 112, 0.12);
  border-radius: 8px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.field-grid input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.field-grid input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--soft);
  outline: none;
}

.roi-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 0;
  padding: 16px 18px;
  color: rgba(0, 0, 0, 0.7);
  background: rgba(37, 214, 112, 0.06);
  border: 1px solid rgba(37, 214, 112, 0.16);
  border-radius: 8px;
  font-size: 0.84rem;
}

.roi-note > span:first-child {
  display: grid;
  width: 26px;
  min-width: 26px;
  height: 26px;
  color: var(--green);
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  place-items: center;
}

.roi-note .roi-note__copy {
  display: block;
  min-width: 0;
  width: auto;
  height: auto;
  color: inherit;
  border: 0;
  border-radius: 0;
  font-weight: inherit;
}

.roi-note strong {
  color: var(--green);
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.form-error {
  margin: 14px 0 0;
  padding: 10px 12px;
  color: var(--white);
  background: var(--black);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-size: 0.82rem;
}

.roi-output {
  display: grid;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background: #060b0d;
  align-content: center;
}

.roi-output h3 {
  max-width: 560px;
  margin: 10px 0 22px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.roi-preview-list,
.roi-result-panel {
  display: grid;
  gap: 10px;
}

.roi-preview-list div,
.result-highlight,
.result-row {
  display: flex;
  align-items: center;
  min-height: 58px;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.result-highlight strong {
  color: var(--green);
  font-size: clamp(1.28rem, 3vw, 1.78rem);
}

.result-row {
  justify-content: space-between;
  gap: 18px;
}

.result-row span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.result-row strong {
  color: var(--green);
  font-size: clamp(1rem, 2vw, 1.32rem);
  white-space: nowrap;
}

.roi-output > p {
  margin: 24px 0 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.86rem;
}

.roi-output blockquote {
  margin: 22px 0 0;
  padding: 18px 20px;
  color: var(--white);
  border: 1px solid var(--green);
  border-radius: 8px;
}

.roi-output blockquote::before {
  color: var(--green);
  content: "“";
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 0.4;
  vertical-align: -0.28em;
}

.roi-output blockquote strong {
  color: var(--green);
}

.roi-result-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin-top: 22px;
}

.roi-result-actions .button-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.76);
}

.roi-result-actions .button {
  min-width: 0;
  overflow-wrap: anywhere;
}

.calculator-layout[data-roi-state="result"] .form-heading > span {
  text-transform: uppercase;
}

.calculator-layout[data-roi-state="result"] .roi-form input {
  background: rgba(0, 0, 0, 0.025);
}

.calculator-layout[data-roi-state="result"] #roi-example {
  display: none;
}

.calculator-layout[data-roi-state="result"] .roi-output {
  padding-top: 38px;
  padding-bottom: 34px;
}

.calculator-layout[data-roi-state="result"] .roi-output h3 {
  margin-bottom: 18px;
  font-size: 1.72rem;
  line-height: 1.16;
}

.calculator-layout[data-roi-state="result"] .roi-result-panel {
  gap: 8px;
}

.calculator-layout[data-roi-state="result"] .result-highlight {
  min-height: 58px;
  padding: 9px 16px;
}

.calculator-layout[data-roi-state="result"] .result-highlight strong {
  font-size: 1.55rem;
}

.calculator-layout[data-roi-state="result"] .result-row {
  min-height: 48px;
  padding: 8px 16px;
}

.calculator-layout[data-roi-state="result"] .result-row strong {
  font-size: 1.18rem;
}

.calculator-layout[data-roi-state="result"] .result-icon {
  width: 36px;
  height: 36px;
}

.calculator-layout[data-roi-state="result"] .roi-output > p {
  margin-top: 16px;
  padding-top: 16px;
  font-size: 0.88rem;
}

.calculator-layout[data-roi-state="result"] .roi-output blockquote {
  margin-top: 16px;
  padding: 16px 20px;
  font-size: 0.92rem;
}

.calculator-layout[data-roi-state="result"] .roi-result-actions {
  margin-top: 16px;
}

.calculator-layout[data-roi-state="result"] .roi-result-actions .button {
  min-height: 52px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.88rem;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  padding: 18px;
  place-items: center;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
}

.lead-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lead-modal__card h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.35rem);
}

.lead-modal__card p {
  color: var(--muted);
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--black);
  background: rgba(0, 0, 0, 0.04);
  border: 0;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  place-items: center;
}

.lead-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.lead-field-grid label {
  display: grid;
  gap: 7px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
}

.lead-field-grid input {
  height: 50px;
  padding: 0 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lead-field-grid input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--soft);
  outline: none;
}

.results-section {
  padding: 72px 0 82px;
  background: linear-gradient(180deg, #f4f4f4 0%, #ffffff 100%);
}

.results-section .container {
  width: min(calc(100% - 96px), 1304px);
}

.roi-heading {
  max-width: 1020px;
  margin: 0 auto 58px;
}

.roi-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 4.25vw, 4.05rem);
  line-height: 1.08;
}

.roi-heading p {
  max-width: 700px;
  margin-inline: auto;
  color: rgba(0, 0, 0, 0.58);
  font-size: 1.04rem;
  line-height: 1.45;
}

.calculator-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 730px;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.roi-form {
  display: flex;
  padding: 44px 58px 40px;
  flex-direction: column;
}

.form-heading > span,
.output-kicker {
  font-size: 0.86rem;
  letter-spacing: 0;
}

.form-heading h3 {
  margin: 10px 0 10px;
  font-size: 1.82rem;
  line-height: 1.16;
}

.form-heading p {
  max-width: 420px;
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.45;
}

.field-grid {
  gap: 14px;
  margin-top: 26px;
}

.field-grid label {
  grid-template-columns: 48px minmax(190px, 1fr) minmax(200px, 240px);
  gap: 14px;
  font-size: 1rem;
  line-height: 1.2;
}

.field-icon,
.result-icon {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 9px;
}

.field-grid input {
  height: 46px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 1rem;
}

.roi-note {
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.38;
}

.form-actions {
  gap: 20px;
  margin-top: 24px;
}

.form-actions .button {
  min-height: 56px;
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: 0.94rem;
}

.form-actions .button-primary {
  flex: 1;
}

.form-actions .button-ghost {
  min-width: 190px;
}

.roi-output {
  padding: 44px 58px 40px;
  background: #050b0d;
}

.roi-output h3 {
  max-width: 520px;
  margin: 10px 0 22px;
  font-size: 1.9rem;
  line-height: 1.16;
}

.roi-preview-list,
.roi-result-panel {
  gap: 10px;
}

.roi-preview-list div,
.result-highlight,
.result-row {
  min-height: 64px;
  padding: 12px 18px;
  gap: 18px;
  border-radius: 9px;
}

.roi-preview-list strong {
  font-size: 1rem;
}

.result-highlight {
  min-height: 64px;
}

.result-highlight strong {
  font-size: 1.65rem;
}

.result-row {
  min-height: 56px;
}

.result-row strong {
  font-size: 1.35rem;
}

.roi-output > p {
  margin-top: 20px;
  padding-top: 18px;
  font-size: 0.92rem;
  line-height: 1.45;
}

.roi-output blockquote {
  margin-top: 20px;
  padding: 18px 22px;
  font-size: 0.96rem;
  line-height: 1.35;
}

.roi-result-actions {
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.64fr);
  margin-top: 20px;
}

.lead-modal {
  overflow-y: auto;
  padding: clamp(8px, 2vw, 22px);
  align-items: start;
}

.lead-modal__backdrop {
  background: rgba(245, 245, 245, 0.74);
  backdrop-filter: blur(8px);
}

.lead-modal__card {
  display: grid;
  width: min(calc(100vw - 72px), 820px);
  max-height: calc(100dvh - 24px);
  margin: auto;
  overflow-y: auto;
  padding: 24px 34px;
  border-radius: 20px;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.9fr);
  gap: 28px;
}

.lead-modal__main h2 {
  margin: 6px 0 8px;
  font-size: 1.72rem;
  line-height: 1.1;
}

.lead-modal__main > p {
  max-width: 440px;
  margin-bottom: 10px;
  font-size: 0.84rem;
  line-height: 1.38;
}

.lead-field-grid {
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.lead-field-grid label {
  gap: 4px;
  font-size: 0.8rem;
}

.lead-field-grid input {
  height: 39px;
  border-radius: 9px;
  font-size: 0.88rem;
}

.lead-privacy {
  display: grid;
  margin: 8px 0 10px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 0.76rem;
  gap: 9px;
  grid-template-columns: 22px 1fr;
}

.lead-privacy span {
  color: var(--green);
  font-weight: 800;
}

.lead-modal__main > .button {
  width: 100%;
  min-height: 43px;
  margin-top: 0;
  padding-top: 9px;
  padding-bottom: 9px;
}

.lead-back {
  margin-top: 7px;
}

.lead-modal__main small {
  display: block;
  max-width: 360px;
  margin: 7px auto 0;
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: center;
}

.lead-modal__aside {
  display: grid;
  padding: 18px 16px;
  background: rgba(37, 214, 112, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  align-content: center;
  gap: 8px;
}

.lead-modal__aside h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 1rem;
  text-align: center;
}

.lead-modal__aside div {
  display: grid;
  min-height: 62px;
  padding: 9px 14px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
  gap: 2px 14px;
  grid-template-columns: 46px 1fr;
  align-items: center;
}

.lead-modal__aside .field-icon {
  grid-row: span 2;
}

.lead-modal__aside strong {
  align-self: end;
  color: var(--black);
  font-size: 0.9rem;
  line-height: 1.1;
}

.lead-modal__aside small {
  align-self: start;
  color: rgba(0, 0, 0, 0.68);
  font-size: 0.8rem;
}

.faq-section {
  color: var(--white);
  background: #181a17;
}

.faq-section h2 {
  margin-bottom: 44px;
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
}

.faq-list summary {
  display: grid;
  grid-template-columns: 20px 1fr 32px;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  color: var(--white);
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::before {
  content: "+";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 180ms ease;
  place-items: center;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 880px;
  margin: 0;
  padding: 0 56px 22px;
  color: rgba(255, 255, 255, 0.68);
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(37, 214, 112, 0.98), rgba(37, 214, 112, 0.86)),
    url("public/assets/generated-supermercado/cta-supermercado-operacao-v1.jpg") center / cover;
}

.final-cta {
  display: grid;
  max-width: 920px;
  justify-items: center;
  text-align: center;
}

.final-cta h2 {
  max-width: 820px;
  color: var(--black);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.final-cta h2 span {
  color: var(--white);
}

.final-cta p {
  max-width: 700px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 1.08rem;
}

.final-cta .button {
  margin-top: 10px;
}

.final-cta small {
  margin-top: 18px;
  color: rgba(0, 0, 0, 0.64);
  font-weight: 700;
}

.site-footer {
  padding: 64px 0 24px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 50px;
}

.footer-logo {
  width: 176px;
  max-width: 100%;
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid strong {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}

.footer-bottom a {
  color: var(--green);
  text-decoration: none;
}

.report-mock {
  display: grid;
  width: 100%;
  max-width: 620px;
  margin: 0;
  padding: 18px;
  color: rgba(255, 255, 255, 0.9);
  background: #14181c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  gap: 14px;
}

.report-mock__bar {
  display: flex;
  align-items: center;
  gap: 7px;
}

.report-mock__bar span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.report-mock__bar strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
}

.report-mock__kpis {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-kpi {
  display: grid;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  gap: 3px;
}

.report-kpi span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.report-kpi strong {
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.1;
}

.report-kpi small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}

.report-kpi--ok strong {
  color: var(--green);
}

.report-kpi--alert strong {
  color: #ff6b6b;
}

.report-kpi--critical {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.22), rgba(255, 168, 0, 0.16));
  border-color: rgba(255, 140, 90, 0.34);
}

.report-kpi--critical strong {
  color: #ffb27a;
  font-size: 1.06rem;
}

.report-mock__panels {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-panel {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
}

.report-panel h4 {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.report-rank,
.report-bars,
.report-items {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.report-rank li,
.report-items li {
  display: flex;
  font-size: 0.74rem;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
}

.report-rank span,
.report-items span {
  color: rgba(255, 255, 255, 0.74);
}

.report-rank b {
  color: var(--green);
}

.report-items b {
  color: #ff8080;
}

.report-items {
  counter-reset: report-item;
}

.report-items li::before {
  color: rgba(255, 255, 255, 0.34);
  counter-increment: report-item;
  content: counter(report-item);
  font-weight: 800;
}

.report-items li {
  gap: 8px;
}

.report-items li span {
  flex: 1;
}

.report-bars li {
  display: grid;
  font-size: 0.72rem;
  gap: 4px 8px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.report-bars span {
  color: rgba(255, 255, 255, 0.74);
}

.report-bars b {
  color: #ff9b6b;
  font-size: 0.7rem;
}

.report-bar {
  overflow: hidden;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  grid-column: 1 / -1;
}

.report-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ff8a5b, #ff5f6d);
  border-radius: 99px;
}

.report-bars__legend {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
}

.report-mock__ai {
  display: flex;
  margin: 0;
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  line-height: 1.5;
  background: rgba(37, 214, 112, 0.13);
  border: 1px solid rgba(37, 214, 112, 0.32);
  border-radius: var(--radius-sm);
  gap: 10px;
  align-items: flex-start;
}

.report-mock__ai span {
  padding: 2px 7px;
  color: var(--black);
  background: var(--green);
  border-radius: 6px;
  font-size: 0.64rem;
  font-weight: 800;
}

.report-mock figcaption {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
  line-height: 1.5;
  text-align: center;
}

.differentials-section {
  background: var(--white);
}

/* Composição "3 sinais / IOV": o texto ocupa a área vazia à esquerda da arte,
   que foi desenhada com os elementos concentrados no centro e à direita. */

.iov-stage {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
}

.iov-art {
  margin: 0;
  grid-area: 1 / 1;
}

.iov-art img {
  width: 100%;
  height: auto;
}

.iov-copy {
  z-index: 1;
  /* A arte deixa livre pouco mais de um terço à esquerda; o texto ocupa essa
     faixa e desce um pouco para alinhar com o corpo da máquina. A margem
     negativa avança sobre a folga do container para o texto não encostar
     na base da máquina — em % para encolher junto em telas menores. */
  max-width: 30%;
  margin-top: 9%;
  margin-left: -3%;
  grid-area: 1 / 1;
  align-self: center;
  justify-self: start;
}

.iov-title {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 4.4vw, 3.9rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.iov-title span {
  display: block;
  color: var(--green);
}

.iov-tagline {
  margin-bottom: 14px;
  color: var(--black);
  font-size: clamp(0.8rem, 1.5vw, 1.24rem);
  font-weight: 800;
}

.iov-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.72rem, 1.15vw, 1.02rem);
  line-height: 1.65;
}

.iov-steps {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  grid-area: 2 / 1;
}

.iov-steps li {
  display: flex;
  padding: 11px 20px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  box-shadow: 0 8px 20px rgba(6, 40, 22, 0.07);
  font-size: 0.86rem;
  font-weight: 600;
  gap: 9px;
  align-items: center;
}

.iov-steps li::before {
  display: grid;
  width: 17px;
  min-width: 17px;
  height: 17px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  content: "✓";
  font-size: 0.58rem;
  font-weight: 800;
  place-items: center;
}

.views-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.view-card {
  display: grid;
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  gap: 10px;
  align-content: start;
}

.view-card__tag {
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.view-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.view-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.gap-callout {
  margin: 26px 0 40px;
  padding: 34px 38px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-md);
  border-left: 6px solid var(--green);
}

.gap-callout__lead {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gap-callout__body {
  margin: 0 0 16px;
  font-size: 1.2rem;
  line-height: 1.65;
}

.gap-callout__body strong {
  color: var(--green);
}

.gap-callout__foot {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.differential-list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.differential-list article {
  padding: 26px 24px;
  background: var(--soft);
  border-radius: var(--radius-md);
}

.differential-list h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.differential-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.differentials-cta {
  display: flex;
  width: fit-content;
  margin: 40px auto 0;
  padding-inline: 34px;
}

.whatsapp-float {
  bottom: 104px;
}

/* Página interna do simulador (fora da landing pública). */

.interno-wrap {
  padding: 44px 0 80px;
}

.interno-head {
  display: grid;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  gap: 22px;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.interno-head img {
  width: 150px;
  height: auto;
}

.interno-head h1 {
  max-width: none;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 2.1rem;
}

.interno-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  color: #8a4b00;
  background: #ffeccc;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.interno-sub {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.interno-aviso {
  margin: 18px 0 0;
  padding: 13px 15px;
  color: var(--text);
  background: #fff6e6;
  border: 1px solid #ffd79a;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.55;
}

.formula-box {
  margin-top: 54px;
  padding: 38px 40px;
  background: #f6f8f7;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.formula-box h2 {
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.formula-box h3 {
  margin: 30px 0 12px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.formula-intro {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.7;
}

.formula-table {
  width: 100%;
  max-width: 520px;
  border-collapse: collapse;
}

.formula-table td {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.formula-table td:last-child {
  text-align: right;
}

.formula-box code {
  display: inline-block;
  padding: 3px 9px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.86rem;
}

.formula-steps {
  margin: 0;
  padding-left: 20px;
}

.formula-steps li {
  margin-bottom: 16px;
  line-height: 1.7;
}

.formula-steps strong {
  display: block;
  margin-bottom: 5px;
}

.formula-steps small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.formula-alerta {
  margin-top: 32px;
  padding: 20px 22px;
  background: #fff6e6;
  border-left: 4px solid #f0952b;
  border-radius: var(--radius-sm);
}

.formula-alerta strong {
  display: block;
  margin-bottom: 8px;
}

.formula-alerta p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.7;
}

.interno .roi-result-panel {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.lead-flow {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
}

.lead-flow__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 6, 0.82);
  backdrop-filter: blur(3px);
}

.lead-flow__card {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: 40px 44px 34px;
  color: var(--white);
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(37, 214, 112, 0.16), transparent 62%),
    #06100A;
  border: 1px solid rgba(37, 214, 112, 0.24);
  border-radius: var(--radius-md);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.lead-flow__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.lead-flow__close:hover {
  color: var(--white);
  border-color: var(--white);
}

.lead-flow__head img {
  width: 158px;
  height: auto;
  margin-bottom: 20px;
  /* O logo tem fundo branco chapado; a mistura o integra ao card escuro. */
  mix-blend-mode: screen;
}

.lead-flow__progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
}

.lead-flow__progress i {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--green);
  border-radius: 99px;
  transition: width 260ms ease;
}

.lead-flow__intro {
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
  line-height: 1.6;
}

.lead-step {
  display: none;
}

.lead-step.is-active {
  display: block;
}

.lead-step label {
  display: block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.3;
}

.lead-step input {
  width: 100%;
  padding: 17px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--green);
  border-radius: 99px;
  font-size: 1rem;
  outline: none;
}

.lead-step input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.lead-step input:focus {
  background: rgba(37, 214, 112, 0.08);
  box-shadow: 0 0 0 4px rgba(37, 214, 112, 0.18);
}

.lead-flow__error {
  margin: 14px 0 0;
  color: #ff8a8a;
  font-size: 0.88rem;
}

.lead-flow__actions {
  display: flex;
  margin-top: 26px;
  gap: 14px;
  align-items: center;
}

.lead-flow__next {
  min-height: 50px;
  padding-inline: 34px;
  border-radius: 99px;
}

.lead-flow__back {
  padding: 10px 4px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: 0;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.lead-flow__back:hover {
  color: var(--white);
}

.lead-flow__legal {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  line-height: 1.6;
}

.lead-flow__done {
  padding: 14px 0 6px;
  text-align: center;
}

.lead-flow__check {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 10px auto 22px;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 800;
  place-items: center;
}

.lead-flow__done h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.6rem;
}

.lead-flow__done p {
  margin: 0 auto 26px;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.66);
}

.lead-flow__done .button {
  width: 100%;
  border-radius: 99px;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--black);
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  place-items: center;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.reveal,
.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

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

  .views-grid {
    grid-template-columns: 1fr;
  }

  /* Abaixo de 860px a arte fica pequena demais para o texto ficar por cima:
     o empilhamento passa a ser a leitura correta. */
  .iov-stage {
    gap: 24px;
    grid-template-rows: auto auto auto;
    justify-items: center;
    text-align: center;
  }

  .iov-copy {
    max-width: 520px;
    margin: 0;
    grid-area: 1 / 1;
    justify-self: center;
  }

  .iov-art {
    grid-area: 2 / 1;
  }

  .iov-steps {
    grid-area: 3 / 1;
  }

  .iov-title {
    font-size: clamp(2.4rem, 8vw, 3.4rem);
  }

  .iov-tagline {
    font-size: 1.14rem;
  }

  .iov-lead {
    margin-inline: auto;
    font-size: 1rem;
  }

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

  .iovpanel__views {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 74px 0;
  }

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

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 40px;
    color: var(--white);
    background: var(--black);
    align-content: start;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 15px 0;
    color: var(--white);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header-blog,
  .header-cta {
    display: none;
  }

  .hero-grid,
  .value-grid,
  .platform-grid,
  .about-grid,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .differential-list,
  .report-mock__panels {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 58px 0 18px;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 38px;
  }

  .hero-visual img {
    width: 100%;
    max-width: 680px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .iov-flow {
    grid-template-columns: 1fr;
  }

  .iov-flow > i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .calculator-layout {
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 18px;
    min-height: 0;
  }

  .roi-form,
  .roi-output {
    border-radius: 8px;
    padding: 34px 24px;
  }

  .results-section .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .lead-modal__card {
    width: min(calc(100vw - 32px), 680px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lead-modal__aside {
    align-content: start;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: 2rem;
    line-height: 1.18;
  }

  h2 {
    font-size: 2rem;
  }

  .brand {
    width: 150px;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

  .hero-actions .button,
  .form-actions .button {
    width: 100%;
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 0.92rem;
  }

  .solutions-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .iov-ai {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .iov-ai__mark {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .report-mock__kpis {
    grid-template-columns: 1fr;
  }

  .iovpanel {
    padding: 16px;
  }

  .iovpanel__kpis,
  .iovpanel__priority {
    grid-template-columns: 1fr;
  }

  .iovpanel__filters {
    display: none;
  }

  .gap-callout {
    padding: 26px 22px;
  }

  .iov-steps li {
    padding: 9px 15px;
    font-size: 0.8rem;
  }

  .lead-flow__card {
    padding: 34px 22px 26px;
  }

  .lead-step label {
    font-size: 1.2rem;
  }

  .lead-flow__actions {
    flex-wrap: wrap-reverse;
    gap: 10px;
  }

  .lead-flow__next {
    width: 100%;
  }

  .gap-callout__body {
    font-size: 1.04rem;
  }

  .hero-copy .hero-ai {
    font-size: 0.94rem;
  }

  .field-grid label {
    grid-template-columns: 38px 1fr;
  }

  .field-grid input {
    grid-column: 1 / -1;
  }

  .roi-note {
    align-items: flex-start;
  }

  .result-row {
    display: grid;
  }

  .result-row strong {
    white-space: normal;
  }

  .roi-result-actions,
  .lead-field-grid {
    grid-template-columns: 1fr;
  }

  .roi-heading {
    margin-bottom: 32px;
  }

  .roi-heading h2 {
    font-size: 2rem;
  }

  .roi-heading p {
    font-size: 0.92rem;
  }

  .roi-output h3,
  .form-heading h3 {
    font-size: 1.5rem;
  }

  .lead-modal {
    padding: 16px;
    align-items: start;
    overflow-y: auto;
  }

  .lead-modal__card {
    width: 100%;
    padding: 26px 20px;
    border-radius: 16px;
  }

  .lead-modal__main h2 {
    font-size: 1.75rem;
  }

  .lead-modal__aside {
    display: none;
  }

  .roi-result-actions .button {
    width: 100%;
  }

  .solution-card {
    min-height: auto;
  }

  .client-wall {
    gap: 24px;
  }

  .client-logo {
    width: 100%;
    min-width: 0;
  }

  .output-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-list summary {
    font-size: 0.9rem;
  }

  .faq-list details p {
    padding: 0 22px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------------------------------------------------------------------------
   Página de restaurantes (/restaurantes). Reaproveita todo o sistema visual;
   abaixo só o que é exclusivo do nicho.
   --------------------------------------------------------------------------- */

.resto-ticket {
  width: min(100%, 460px);
  margin: 0;
  padding: 22px 24px 18px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 28px 70px rgba(5, 30, 18, 0.2);
}

.resto-ticket__tag {
  display: block;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resto-ticket ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.resto-ticket li {
  display: grid;
  gap: 4px 12px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.resto-ticket li i {
  color: var(--muted);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.78rem;
  font-style: normal;
}

.resto-ticket li span {
  display: grid;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.resto-ticket li b {
  color: var(--black);
  font-size: 0.92rem;
}

.resto-ticket li em {
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.resto-ticket li em.is-ok {
  color: #0b6b38;
  background: rgba(37, 214, 112, 0.16);
}

.resto-ticket li em.is-alerta {
  color: #8a4b00;
  background: #ffeccc;
}

.resto-ticket li em.is-bad {
  color: #a11916;
  background: #ffe0df;
}

.resto-ticket__foot {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.resto-gap {
  display: grid;
  width: 100%;
  max-width: 460px;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  gap: 14px;
}

.resto-gap__row {
  display: flex;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  justify-content: space-between;
}

.resto-gap__row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.resto-gap__row b {
  font-size: 1.66rem;
  font-weight: 800;
}

.resto-gap__row b.is-ok {
  color: var(--green-dark);
}

.resto-gap__row b.is-alerta {
  color: #f0952b;
}

.resto-gap__row b.is-bad {
  color: #e8433f;
}

.resto-gap__nota {
  margin: 0;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.6;
}

.resto-passos {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  counter-reset: resto-passo;
}

.resto-passos li {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.resto-passos li span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.resto-passos li h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.resto-passos li p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 1060px) {
  .resto-passos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .resto-passos {
    grid-template-columns: 1fr;
  }

  .resto-ticket {
    padding: 18px 16px 14px;
  }

  .resto-ticket li {
    grid-template-columns: auto 1fr;
  }

  .resto-ticket li em {
    grid-column: 2;
    justify-self: start;
  }

  .resto-gap {
    padding: 20px 18px;
  }
}

/* NPS do restaurante: mais detratores que promotores, ao contrario do mercado. */
.iovpanel__donut--resto {
  background:
    radial-gradient(circle at center, var(--white) 54%, transparent 55%),
    conic-gradient(#1faa5c 0 48%, #98a5a0 48% 54%, #e8433f 54% 100%);
}

/* A linha do tempo saiu do herói e virou evidência de secao; a foto do metodo
   segue o mesmo enquadramento das demais midias de secao. */
.metrics-media + .resto-ticket {
  width: min(100% - 40px, 620px);
  margin: 26px auto 0;
}

.metodo-media {
  max-width: 760px;
  margin: 0 auto 40px;
}

.metodo-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.14);
}

.metodo-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: center;
}

/* As fotos da vertical de restaurantes tem entre 600 e 800px. Nos quadros
   padrao elas seriam ampliadas e o recorte 16/9 cortaria o assunto, entao
   aqui elas ficam contidas no tamanho nativo. */
.testimonial-proof--contida {
  padding: 44px 0;
}

.testimonial-proof--contida img {
  width: min(100% - 40px, 680px);
  max-height: none;
  margin-inline: auto;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-md);
}

.metrics-media--nativa {
  max-width: 620px;
}

.metrics-media--nativa img {
  aspect-ratio: 3 / 2;
}

/* ---------------------------------------------------------------------------
   Blog (/blog): índice com busca e páginas de artigo.
   --------------------------------------------------------------------------- */

.blog-hero {
  padding: 72px 0 58px;
  color: var(--white);
  background: linear-gradient(120deg, var(--green), #10a352);
}

.blog-hero h1 {
  max-width: 820px;
  margin-bottom: 14px;
  color: var(--white);
}

.blog-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.7;
}

.blog-busca {
  position: relative;
  margin-top: -28px;
}

.blog-busca input {
  width: 100%;
  padding: 18px 24px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  box-shadow: 0 18px 44px rgba(6, 40, 22, 0.14);
  font-size: 1rem;
  outline: none;
}

.blog-busca input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 214, 112, 0.18);
}

.blog-busca__vazio {
  margin: 22px 0 0;
  color: var(--muted);
  text-align: center;
}

.post-grid {
  display: grid;
  margin: 44px auto 88px;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  display: grid;
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(6, 40, 22, 0.07);
  gap: 12px;
  align-content: start;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(6, 40, 22, 0.13);
}

.post-card__tag {
  justify-self: start;
  padding: 5px 13px;
  color: var(--green-dark);
  background: var(--soft);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.35;
}

.post-card h3 a {
  color: var(--black);
  text-decoration: none;
}

.post-card h3 a:hover {
  color: var(--green-dark);
}

.post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.post-card footer {
  color: var(--muted);
  font-size: 0.78rem;
}

/* ------------------------------------------------------------ artigo */

.post-head {
  max-width: 780px;
  padding-top: 58px;
  padding-bottom: 8px;
}

.post-migalhas {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.post-migalhas a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.post-head h1 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.post-resumo {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.7;
}

.post-meta {
  margin: 0;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}

.post-corpo {
  max-width: 780px;
  padding-top: 30px;
}

.post-corpo h2 {
  margin: 42px 0 14px;
  font-size: 1.5rem;
}

.post-corpo p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-corpo strong {
  color: var(--black);
}

.post-destaque {
  margin: 32px 0;
  padding: 24px 28px;
  color: var(--white);
  background: var(--black);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.7;
}

.post-lista {
  margin: 0 0 22px;
  padding-left: 22px;
}

.post-lista li {
  margin-bottom: 12px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.post-fontes {
  margin-top: 46px;
  padding: 26px 28px;
  background: #f6f8f7;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.post-fontes h2 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-fontes ul {
  margin: 0 0 16px;
  padding-left: 20px;
}

.post-fontes li {
  margin-bottom: 8px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.post-fontes a {
  color: var(--green-dark);
}

.post-fontes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.post-cta {
  max-width: 780px;
  margin: 58px auto 0;
  padding: 38px 34px;
  background: var(--soft);
  border-radius: var(--radius-md);
  text-align: center;
}

.post-cta h2 {
  margin-bottom: 10px;
  font-size: 1.42rem;
}

.post-cta p {
  margin-bottom: 22px;
  color: var(--muted);
}

.post-relacionados {
  margin-top: 72px;
}

.post-relacionados h2 {
  margin-bottom: 6px;
  font-size: 1.5rem;
}

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

@media (max-width: 1060px) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .post-grid,
  .post-relacionados .post-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    padding: 54px 0 46px;
  }

  .post-cta {
    padding: 28px 20px;
  }
}

/* Todo bloco com número na página precisa dizer que é exemplo. */
.resto-gap__aviso {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

/* ---------------------------------------------------------------------------
   Painel de publicação (/admin). Fora do site público, sem link em lugar nenhum.
   --------------------------------------------------------------------------- */

.admin-wrap {
  max-width: 880px;
  padding: 44px 0 90px;
}

.admin-head {
  display: grid;
  margin-bottom: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
  gap: 22px;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.admin-head img {
  width: 150px;
  height: auto;
}

.admin-head h1 {
  max-width: none;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 2rem;
}

.admin-card {
  margin-bottom: 22px;
  padding: 30px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(6, 40, 22, 0.06);
}

.admin-card__topo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-card h2 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.admin-ajuda {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.admin-ajuda code {
  padding: 2px 7px;
  background: #f2f5f3;
  border-radius: 5px;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.82rem;
}

.admin-card label {
  display: block;
  margin: 18px 0 7px;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
}

.admin-card label small {
  color: var(--muted);
  font-weight: 500;
}

.admin-card input,
.admin-card textarea {
  width: 100%;
  padding: 13px 16px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.96rem;
  outline: none;
}

.admin-card textarea {
  line-height: 1.65;
  resize: vertical;
}

.admin-card input:focus,
.admin-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37, 214, 112, 0.16);
}

.admin-acoes {
  display: flex;
  margin-top: 22px;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-erro,
.admin-ok {
  margin: 16px 0 0;
  padding: 12px 15px;
  border-radius: 10px;
  font-size: 0.88rem;
}

.admin-erro {
  color: #a11916;
  background: #ffe0df;
}

.admin-ok {
  color: #0b6b38;
  background: rgba(37, 214, 112, 0.16);
}

.admin-lista {
  display: grid;
  gap: 10px;
}

.admin-item {
  display: grid;
  padding: 14px 16px;
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 10px;
  gap: 14px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.admin-item div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.admin-item strong {
  overflow: hidden;
  font-size: 0.94rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-item a {
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.admin-remover {
  padding: 7px 13px;
  color: #a11916;
  background: transparent;
  border: 1px solid #f0c3c1;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.admin-remover:hover {
  background: #ffe0df;
}

.admin-previa .post-corpo {
  max-width: none;
  padding-top: 0;
}

@media (max-width: 720px) {
  .admin-head {
    grid-template-columns: 1fr;
  }

  .admin-card {
    padding: 22px 18px;
  }

  .admin-item {
    grid-template-columns: 1fr auto;
  }
}

/* Sem case publicável, o que reduz atrito é dizer exatamente o que acontece
   depois do clique. Estes passos ficam no CTA final. */
.cta-passos {
  display: grid;
  max-width: 760px;
  margin: 30px auto 34px;
  padding: 0;
  gap: 14px;
  list-style: none;
  text-align: left;
}

.cta-passos li {
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.cta-passos b {
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.86rem;
  place-items: center;
}

.cta-passos span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .cta-passos span {
    font-size: 0.92rem;
  }
}

/* O CTA final herdava foto de supermercado. Na vertical de restaurantes a
   imagem de fundo passa a ser do nicho. */
.final-cta-section--resto {
  background:
    linear-gradient(90deg, rgba(37, 214, 112, 0.98), rgba(37, 214, 112, 0.86)),
    url("public/assets/restaurantes/og-restaurantes.jpg") center / cover;
}

/* ---------------------------------------------------------------------------
   Editor do blog: botão no topo de /blog e modal de credenciais + publicação.
   --------------------------------------------------------------------------- */

.editor-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
}

.editor-modal__fundo {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 6, 0.78);
  backdrop-filter: blur(3px);
}

.editor-modal__card {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: 34px 36px 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
}

.editor-modal__card h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.editor-modal__card .lead-flow__close {
  color: var(--muted);
  border-color: var(--line);
}

.editor-modal__card label {
  display: block;
  margin: 18px 0 7px;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
}

.editor-modal__card label small {
  color: var(--muted);
  font-weight: 500;
}

.editor-modal__card input[type="text"],
.editor-modal__card input[type="password"],
.editor-modal__card textarea {
  width: 100%;
  padding: 13px 16px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.96rem;
  outline: none;
}

.editor-modal__card textarea {
  line-height: 1.65;
  resize: vertical;
}

.editor-modal__card input:focus,
.editor-modal__card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37, 214, 112, 0.16);
}

.editor-modal__card input[type="file"] {
  width: 100%;
  padding: 11px;
  background: #f7faf8;
  border: 1px dashed var(--line);
  border-radius: 10px;
  font-size: 0.86rem;
}

.editor-capa {
  width: 100%;
  max-height: 210px;
  margin-top: 8px;
  border-radius: 10px;
  object-fit: cover;
}

/* --------------------------------------------- imagens dentro do artigo */

.post-capa {
  max-width: 780px;
  margin: 26px auto 0;
}

.post-capa img,
.post-figura img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.post-figura {
  margin: 30px 0;
}

.post-figura figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: center;
}

.post-card--com-capa {
  padding-top: 0;
  overflow: hidden;
}

.post-card__capa {
  display: block;
  margin: 0 -26px 4px;
}

.post-card__capa img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 720px) {
  .editor-modal__card {
    padding: 26px 18px 22px;
  }
}

/* Entrada do editor no menu: peso de link, não de CTA. Só quem já sabe que
   existe vai reparar, que é a intenção. */
.nav-postar {
  padding: 0;
  color: var(--muted);
  background: none;
  border: 0;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.nav-postar::before {
  margin-right: 5px;
  content: "+";
  font-weight: 700;
}

.nav-postar:hover {
  color: var(--green-dark);
}

/* Lista de gerenciamento dentro do editor. */
.editor-lista {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.editor-lista h3 {
  margin-bottom: 14px;
  font-size: 1.02rem;
}

.editor-item {
  display: grid;
  margin-bottom: 8px;
  padding: 12px 14px;
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 10px;
  gap: 12px;
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.editor-item.is-oculto {
  background: #fff6e6;
  border-color: #ffd79a;
  grid-template-columns: 1fr auto;
}

.editor-item div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.editor-item strong {
  overflow: hidden;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.editor-item span {
  color: var(--muted);
  font-size: 0.76rem;
}

.editor-item a {
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.editor-remover,
.editor-restaurar {
  padding: 6px 12px;
  background: transparent;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.editor-remover {
  color: #a11916;
  border: 1px solid #f0c3c1;
}

.editor-remover:hover {
  background: #ffe0df;
}

.editor-restaurar {
  color: #8a4b00;
  border: 1px solid #ffd79a;
}

.editor-restaurar:hover {
  background: #ffeccc;
}

@media (max-width: 720px) {
  .editor-item,
  .editor-item.is-oculto {
    grid-template-columns: 1fr auto;
  }
}
