/* ── Paleta Varejo 360 ── */
:root {
  --color-primary: #0075B3; /* azul V360 */
  --color-accent: #F29200; /* laranja V360 */
  --color-green: #13A538; /* verde V360 */
  --color-primary-dark: #005a8a;
  --color-bg: #f4f8fb;
  --color-text: #1a2533;
  --color-muted: #5a6e80;
  --color-border: #d6e4ef;
}

/* Botões */
.btn-primary {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}
.btn-primary:hover {
  background: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
}
.btn-submit {
  background: var(--color-primary) !important;
}
.btn-submit:hover {
  background: var(--color-primary-dark) !important;
}

/* Topbar / header */
.topbar {
  background: #fff !important;
  border-bottom: none !important;
  box-shadow: 0 1px 12px rgba(0, 0, 0, .06) !important;
  padding: 0 !important;
  position: sticky;
  top: 0;
  z-index: 100;
}
.topbar .topbar-grid {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 64px;
}
.topbar .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.topbar .brand img,
.brand-logo {
  height: 40px !important;
  width: auto !important;
}
.topbar .brand-name {
  color: var(--color-primary);
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .01em;
  line-height: 1;
}
.topbar .top-nav {
  display: flex !important;
  gap: 8px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.topbar .top-nav a {
  font-size: .85rem !important;
  font-weight: 500 !important;
  color: var(--color-text) !important;
  text-decoration: none !important;
  padding: 8px 14px !important;
  border-radius: 6px !important;
  transition: background .15s, color .15s !important;
}
.topbar .top-nav a:hover {
  background: var(--color-bg) !important;
  color: var(--color-primary) !important;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}
.nav-toggle:focus-visible {
  outline: 3px solid rgba(0, 117, 179, .25);
  outline-offset: 2px;
}
.topbar .btn-primary {
  font-size: .85rem !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

/* Kickers e destaques de acento */
.section-kicker,
.eyebrow {
  color: var(--color-accent) !important;
}

/* Step numbers e ícones primários */
.step {
  color: var(--color-accent) !important;
}

/* Logo grande no hero */
.hero-logo {
  height: 146px;
  width: auto;
  display: block;
  margin: 0 0 40px;
  border: none;
  border-radius: 0;
}

/* ── Ícones SVG inline (substituem Font Awesome) ── */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
  fill: currentColor;
}
.nav-toggle .icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* ── Overrides e extensões para a LP CMI ── */

/* Hero two-column: copy + form */
.hero-cmi {
  background: #fff;
  padding: 48px 0 0;
}
.hero-cmi .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 1fr);
  gap: 12px;
  align-items: start;
}
.hero-stage {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  min-height: 430px;
  padding: 0;
  overflow: visible;
}
.hero-stage::before {            /* vitrine + pessoa como fundo */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -12px;
  background-image: image-set(url("../img/captis-hero@2x.webp") type("image/webp"), url("../img/captis-hero.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 84%;
  z-index: 0;
}
.hero-stage::after {             /* scrim p/ legibilidade do texto à esquerda */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 32%,
    rgba(255, 255, 255, .98) 42%,
    rgba(255, 255, 255, .88) 50%,
    rgba(255, 255, 255, .62) 58%,
    rgba(255, 255, 255, .28) 66%,
    rgba(255, 255, 255, 0) 78%
  );
  z-index: 1;
}
.hero-stage .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 62%;
}
.hero-cmi h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  line-height: 1.12;
}
@media (max-width: 992px) {
  .hero-cmi .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-stage {
    min-height: 0;
    padding: 8px 0 0;
  }
  .hero-stage::before {
    background-position: right bottom;
    background-size: 66%;
    opacity: .45;
  }
  .hero-stage::after {
    background: linear-gradient(180deg, #fff 28%, rgba(255, 255, 255, .92) 48%, rgba(255, 255, 255, .72) 68%, rgba(255, 255, 255, .55));
  }
  .hero-stage .hero-copy {
    max-width: 100%;
  }
}

/* Hero description maior */
.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 24px;
}

/* Highlights strip */
.highlights-section {
  background: var(--color-primary);
  padding: 64px 0;
  margin-top: 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .highlights-section {
    padding: 64px 0;
  }
}
.highlight-item {
  padding: 40px 36px;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.highlight-item:last-child {
  border-right: none;
}
.highlight-item::before {
  display: none;
}
.highlight-num {
  font-size: 5rem;
  line-height: 1;
  color: #fff;
  opacity: .06;
  position: absolute;
  bottom: 8px;
  right: 20px;
  pointer-events: none;
  user-select: none;
}
.highlight-item strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.highlight-item p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  margin: 0;
  line-height: 1.65;
}

/* Destaque laranja inline */
.hl-accent {
  font-style: normal;
  color: var(--color-accent);
  font-weight: 600;
}

/* Sublinhado decorativo */
.text-underline-accent {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.hero-highlight {
  font-weight: 800;
  color: #F29200;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, .14) 58%);
  border-radius: 2px;
  padding: 0 2px;
  white-space: nowrap;
}

/* Texto rotativo no H1 — efeito máscara (slot machine) */
.hero-rotating-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.15;
  height: 1.15em;
}
.hero-rotating {
  display: inline-block;
  color: var(--color-primary);
  animation: slideMask 3s cubic-bezier(.4, 0, .2, 1) infinite;
}
@keyframes slideMask {
  0% {
    transform: translateY(110%);
  }
  12% {
    transform: translateY(0);
  }
  78% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(-110%);
  }
  100% {
    transform: translateY(-110%);
  }
}

/* Form card inline no hero */
.hero-form-card {
  background: var(--color-bg);
  border: none;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: none;
  position: relative;
  width: 100%;
  max-width: none;
}
.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}
.hero-form-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text, #1a202c);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Estado de sucesso do formulário */
.form-success {
  text-align: center;
  padding: 16px 8px 8px;
  animation: fs-appear .5s ease both;
}
.form-success-icon {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
}
.form-success-icon .fs-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(19, 165, 56, .12);
  animation: fs-ring-pop .5s ease both;
}
.form-success-icon .fs-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(19, 165, 56, .35);
  animation: fs-ripple 1.6s ease-out .3s infinite;
}
.form-success-icon .fs-envelope {
  position: relative;
  font-size: 2.4rem;
  color: var(--color-green);
  animation: fs-icon-pop .6s cubic-bezier(.18, .89, .32, 1.28) .1s both;
}
.form-success-icon .fs-check {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-green);
  color: #fff;
  display: grid;
  place-items: center;
  border: 3px solid var(--color-bg);
  animation: fs-check-pop .4s cubic-bezier(.18, .89, .32, 1.28) .5s both;
}
.form-success-icon .fs-check .icon {
  width: 14px;
  height: 14px;
}
.form-success h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}
.form-success p {
  margin: 0;
  font-size: .95rem;
  color: var(--color-muted);
}

@keyframes fs-appear {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fs-ring-pop {
  from { transform: scale(.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes fs-ripple {
  from { transform: scale(1); opacity: .7; }
  to { transform: scale(1.5); opacity: 0; }
}
@keyframes fs-icon-pop {
  0% { transform: scale(0) rotate(-12deg); opacity: 0; }
  60% { transform: scale(1.12) rotate(3deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes fs-check-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .form-success,
  .form-success-icon .fs-ring,
  .form-success-icon .fs-ring::after,
  .form-success-icon .fs-envelope,
  .form-success-icon .fs-check {
    animation: none;
  }
}

/* Ilustração como composição (marca d'água em alpha) */
.concept-illustration-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 72px 0;
}
.concept-illustration-bg {
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.concept-illustration-bg img {
  width: min(1100px, 116%);
  height: auto;
  opacity: .24;
  -webkit-mask-image: radial-gradient(115% 100% at 50% 50%, #000 42%, transparent 86%);
          mask-image: radial-gradient(115% 100% at 50% 50%, #000 42%, transparent 86%);
}
.concept-illustration-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.concept-illustration-copy::before {
  content: "";
  position: absolute;
  inset: -28px -40px;
  z-index: -1;
  background: radial-gradient(62% 72% at 50% 50%, rgba(255, 255, 255, .88), rgba(255, 255, 255, 0) 78%);
}
.concept-illustration-copy h2 {
  margin: 0 0 12px;
}
.concept-illustration-copy > p:last-child {
  margin: 0 auto;
  max-width: 580px;
  color: var(--color-muted);
}
@media (max-width: 768px) {
  .concept-illustration-section {
    padding: 52px 0;
  }
  .concept-illustration-bg img {
    width: 150%;
    opacity: .16;
  }
}

/* Seção: portfólio de pesquisas */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .portfolio-item {
    padding: 22px 12px 18px;
    border-radius: 14px;
  }
  .portfolio-item .item-icon-wrap {
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
  }
  .portfolio-item h4 {
    font-size: .9rem;
  }
  .portfolio-item h4::after {
    margin: 8px auto;
  }
  .portfolio-item p {
    font-size: .8rem;
    max-width: none;
  }
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 18px;
  padding: 34px 24px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.portfolio-item::before {            /* brilho radial sutil no topo (hover) */
  content: "";
  position: absolute;
  inset: -40% 0 auto 0;
  height: 150px;
  background: radial-gradient(circle at 50% 0%, rgba(0, 117, 179, .10), transparent 70%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.portfolio-item:hover::before {
  opacity: 1;
}
.portfolio-item:hover {
  box-shadow: 0 16px 38px rgba(0, 117, 179, .15);
  transform: translateY(-5px);
  border-color: rgba(0, 117, 179, .22);
}
.portfolio-item .item-icon-wrap {
  width: 96px;
  height: 96px;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.portfolio-item:hover .item-icon-wrap {
  transform: scale(1.05);
}
.portfolio-item .item-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.portfolio-item h4 {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
  line-height: 1.3;
}
.portfolio-item h4::after {          /* traço de acento sob o título */
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin: 10px auto 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}
.portfolio-item p {
  font-size: .88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  max-width: 24ch;
}
/* Selo verificado */
.verified-seal {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-green);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 12px 4px 8px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 12px;
  line-height: 1;
}
.verified-seal svg {
  width: 16px;
  height: 16px;
}
/* Seção: consumidor verificado */
.verified-concept-wrap {
  margin-top: 0;
  display: flex;
  justify-content: center;
}
.verified-concept-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 280px;
  background: linear-gradient(135deg, #0a4d74 0%, #0075b3 52%, #1393d1 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 34px 0 30px 34px;
  max-width: none;
  width: 100%;
  box-shadow: 0 16px 40px rgba(0, 57, 92, 0.25);
  overflow: hidden;
}
.verified-concept-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .28) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  pointer-events: none;
}
.verified-concept-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 146, 0, .30) 0%, rgba(242, 146, 0, 0) 72%);
  z-index: 1;
  pointer-events: none;
}
.verified-concept-copy {
  position: relative;
  z-index: 2;
  flex: 0 1 46%;
  max-width: 46%;
  padding-right: 20px;
}
.verified-concept-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  line-height: 1.2;
}
.verified-concept-card p {
  margin: 0;
  font-size: clamp(1.12rem, 2.1vw, 1.28rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .92);
  max-width: 46ch;
}
.verified-concept-art {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 8%, #000 18%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 8%, #000 18%);
}
.verified-concept-card strong {
  color: #fff;
}
@media (max-width: 768px) {
  .verified-concept-card {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 28px 22px 0;
    border-radius: 16px;
  }
  .verified-concept-copy {
    flex: none;
    max-width: 100%;
    padding-right: 0;
  }
  .verified-concept-title {
    font-size: clamp(1.65rem, 5.5vw, 2rem);
  }
  .verified-concept-card p {
    font-size: 1.08rem;
    max-width: none;
  }
  .verified-concept-art {
    position: relative;
    width: calc(100% + 44px);
    height: auto;
    max-height: 240px;
    margin: 20px -22px 0;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .4) 14%, #000 28%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .4) 14%, #000 28%);
  }
}

/* Seção: evolução da pesquisa */
.evolution-section {
  background: #f8fafc;
  padding: 80px 0 12px;
}
.evolution-section .section-head {
  max-width: 100%;
}
.evolution-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .evolution-pillars {
    grid-template-columns: 1fr;
  }
}
.evolution-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 4px 18px rgba(0, 117, 179, 0.06);
}
.pillar-icon {
  width: 88px;
  height: 88px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.evolution-pillar h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px;
}
.evolution-pillar p {
  font-size: .92rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}
.evolution-grid {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .evolution-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .evolution-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}
.evolution-col {
  border-radius: 16px;
  padding: 32px;
}
.evolution-col--old {
  background: #fff;
  border: 1.5px solid #e2e8f0;
}
.evolution-col--new {
  background: #fff;
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 24px rgba(0, 117, 179, .10);
}
.evolution-col-label {
  margin-bottom: 20px;
}
.evo-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.evo-badge--old {
  background: #f1f5f9;
  color: #64748b;
}
.evo-badge--new {
  background: var(--color-primary);
  color: #fff;
}
.evolution-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 16px;
  position: relative;
}
.evolution-quote--new {
  color: var(--color-text);
  font-weight: 500;
}
.quote-mark {
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.5rem;
  color: #cbd5e1;
  margin-right: 4px;
  font-style: normal;
}
.evolution-col--new .quote-mark {
  color: var(--color-primary);
  opacity: .3;
}
.evolution-col-desc {
  font-size: .88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}
.evolution-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
}
.evolution-arrow svg {
  width: 40px;
  height: 40px;
}
.evolution-arrow span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.evolution-bottom {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.evolution-title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.3;
}
.evolution-body {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 16px;
}
.evolution-body:last-child {
  margin-bottom: 0;
}
.evolution-body strong {
  color: var(--color-text);
}

/* Seção: portfólio de soluções V2 */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}
.solution-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow .18s, border-color .18s;
}
.solution-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(0, 117, 179, .09);
}
.solution-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.solution-body {
  flex: 1;
}
.solution-body h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px;
}
.solution-desc {
  font-size: .85rem;
  color: #64748b;
  margin: 0 0 14px;
  line-height: 1.5;
}
.solution-questions {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.solution-questions li {
  font-size: .83rem;
  color: #475569;
  line-height: 1.45;
  padding-left: 14px;
  position: relative;
}
.solution-questions li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: .8rem;
}

/* Seção: robustez do painel */
.panel-scale-section {
  background: #fff;
  padding-top: 1.75rem;
}

/* Layout O Painel: mapa + stats em caixa branca */
.panel-scale-top {
  display: grid;
  grid-template-columns: minmax(300px, 47%) 1fr;
  align-items: stretch;
  margin: 28px 0 24px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 44px rgba(0, 117, 179, .10);
}
.panel-scale-top .panel-scale-map {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 42%, #e7f2fb 0%, #ffffff 70%);
}
.panel-scale-top .panel-scale-map img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
}
.panel-scale-top .panel-stats-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 20px 44px;
  border-radius: 0;
  background: #ffffff;
}
.panel-scale-top .panel-stat {
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  gap: 16px;
  text-align: left;
  padding: 22px 0;
}
.panel-scale-top .panel-stat strong {
  color: var(--color-primary);
  font-size: clamp(2rem, 2.8vw, 2.7rem);
  flex: 0 0 auto;
}
.panel-scale-top .panel-stat span {
  color: #64748b;
  text-align: left;
  font-size: .92rem;
}
.panel-scale-top .panel-stat-divider {
  width: 100%;
  height: 1px;
  background: #eaf0f6;
}
@media (max-width: 992px) {
  .panel-scale-top {
    grid-template-columns: 1fr;
    margin: 32px 0;
  }
  .panel-scale-top .panel-scale-map {
    padding: 28px 24px 10px;
  }
  .panel-scale-top .panel-scale-map img {
    max-width: min(460px, 84vw);
    margin: 0 auto;
  }
  .panel-scale-top .panel-stats-banner {
    padding: 10px 30px 26px;
  }
}
@media (max-width: 768px) {
  .panel-scale-top .panel-stats-banner {
    padding: 12px 18px 16px;
    text-align: left;
  }
  .panel-scale-top .panel-stat {
    display: grid;
    grid-template-columns: minmax(7.5rem, 38%) 1fr;
    align-items: center;
    gap: 10px 14px;
    padding: 14px 0;
  }
  .panel-scale-top .panel-stat strong {
    font-size: clamp(1.5rem, 5.2vw, 1.85rem);
    line-height: 1.05;
    text-align: left;
  }
  .panel-scale-top .panel-stat span {
    font-size: .86rem;
    line-height: 1.45;
    text-align: left;
  }
  .panel-scale-top .panel-stat-divider {
    width: 100%;
    background: #eaf0f6;
  }
}

/* Cards de autoridade: azul intenso */
.panel-scale-section .authority-grid {
  margin-top: 0;
}
.panel-scale-section .authority-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 32px rgba(0, 117, 179, .22);
}
.panel-scale-section .authority-icon {
  background: transparent;
  width: 88px;
  height: 88px;
  border-radius: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-scale-section .authority-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.panel-scale-section .authority-card h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.panel-scale-section .authority-card p {
  color: rgba(255, 255, 255, .88);
}
.panel-scale-section .authority-card strong {
  color: #fff;
}

.panel-stats-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-primary);
  border-radius: 16px;
  padding: 40px 48px;
  margin: 48px 0;
  gap: 24px;
}
@media (max-width: 768px) {
  .panel-stats-banner {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }
  .panel-stat-divider {
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, .25);
  }
}
.panel-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  text-align: center;
}
.panel-stat strong {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.panel-stat span {
  font-size: .88rem;
  color: rgba(255, 255, 255, .80);
  line-height: 1.4;
}
.panel-stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .authority-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .panel-scale-section .authority-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 12px;
    text-align: left;
  }
  .panel-scale-section .authority-card > div {
    width: 100%;
    min-width: 0;
  }
  .panel-scale-section .authority-icon {
    display: none;
  }
  .panel-scale-section .authority-card h4 {
    font-size: 1.08rem;
    margin-bottom: 6px;
  }
  .panel-scale-section .authority-card p {
    font-size: .9rem;
    line-height: 1.55;
  }
}
.authority-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 4px 18px rgba(0, 117, 179, 0.06);
}
.authority-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.authority-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px;
}
.authority-card p {
  font-size: .92rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

/* Compradores verificados conciso */
.cv-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cv-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 180px;
}
.cv-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.cv-step p {
  font-size: .85rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}
.cv-step-arrow {
  color: #cbd5e1;
  font-size: 1.2rem;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cv-step-arrow {
    transform: rotate(90deg);
  }
}

/* Seção: clientes / logos */
.clients {
  background: #ffffff;
  padding-bottom: 1.75rem;
}
.clients-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #ffffff 0%, #eef6fb 100%);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: 44px 40px 38px;
  margin-top: 40px;
  box-shadow: 0 18px 46px rgba(0, 117, 179, .10);
}
.clients-block::before {            /* brilho de marca (azul) */
  content: "";
  position: absolute;
  top: -130px;
  right: -90px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 117, 179, .12), transparent 68%);
  pointer-events: none;
}
.clients-block::after {             /* brilho de marca (laranja) */
  content: "";
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(242, 146, 0, .08), transparent 68%);
  pointer-events: none;
}
.clients-logo-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: stretch;
  justify-content: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 117, 179, .12);
}
.client-logo-placeholder {
  background: #f1f5f9;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: #94a3b8;
  font-weight: 600;
}
.client-logo-item {
  background: #fff;
  border: 1px solid #e8eef4;
  border-radius: 14px;
  width: 170px;
  height: 86px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, .05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.client-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 117, 179, .15);
  border-color: rgba(0, 117, 179, .22);
}
.client-logo-item img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: .68;
  transition: filter .25s ease, opacity .25s ease;
}
.client-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.logo-vigor {
  transform: scale(.78);
  transform-origin: center;
}
.client-logo-item img.logo-royal-canin {
  max-height: 48px;
  transform: none;
}
.client-logo-item img.logo-camil {
  max-height: 58px;
  transform: none;
}
.clients-proof-text {
  position: relative;
  margin: 0;
  padding-top: 28px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-text);
  font-weight: 600;
}
.clients-proof-text .proof-highlight {
  display: inline-block;
  background: rgba(0, 117, 179, .10);
  color: var(--color-primary);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
  vertical-align: baseline;
}
.clients-proof-text .proof-num {
  font-weight: 800;
  font-size: 1.08em;
  color: inherit;
}
@media (max-width: 768px) {
  .clients-block {
    padding: 30px 18px 26px;
    border-radius: 18px;
  }
  .clients-logo-grid {
    gap: 12px;
    padding-bottom: 24px;
  }
  .client-logo-item {
    width: calc(50% - 6px);
    height: 72px;
  }
  .clients-proof-text {
    font-size: 1.1rem;
    padding-top: 22px;
  }
}

/* Seção: base estatisticamente relevante */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.stat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary, #1f4fd6);
}
.stat-card span {
  font-size: .85rem;
  color: #64748b;
}

/* Timeline horizontal — ciclo integrado */
#como-rodamos {
  background: #fff;
  position: relative;
  padding-top: 2.25rem;
  padding-bottom: 24px;
}
.process-cycle-block {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 40px 0 32px;
  margin-top: 36px;
  position: relative;
  box-shadow: none;
}
.htimeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.htimeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 12px;
  min-width: 0;
}
.htimeline-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 14px;
}
.htimeline-illus {
  display: block;
  width: min(88px, 56%);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  opacity: .92;
}
.htimeline-connector {
  position: absolute;
  top: 44px;
  left: calc(50% + 38px);
  width: calc(100% - 48px);
  height: 0;
  border-top: 2px dashed rgba(0, 117, 179, .45);
  z-index: 1;
}
.htimeline-connector::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0, 117, 179, .55);
  border-right: none;
}
.htimeline-step:last-child .htimeline-connector {
  display: none;
}
.htimeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 117, 179, .22);
}
.htimeline-step h4 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--color-text);
  line-height: 1.25;
}
.htimeline-step p {
  font-size: .88rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.55;
  max-width: 220px;
}
.process-cycle-footer {
  display: none;
}
#como-rodamos .section-head {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
#como-rodamos .section-head > p:not(.section-kicker) {
  max-width: none;
  width: 100%;
}
#como-rodamos .section-head h2 {
  max-width: none;
  width: 100%;
}
#pesquisas .section-head,
#base .section-head {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
#pesquisas .section-head > p:not(.section-kicker) {
  max-width: none;
  width: 100%;
}
#base .section-head > p:not(.section-kicker) {
  max-width: none;
  width: 100%;
}
@media (max-width: 992px) {
  .htimeline-step p {
    max-width: none;
    font-size: .84rem;
  }
  .htimeline-connector {
    top: 40px;
    left: calc(50% + 34px);
    width: calc(100% - 42px);
  }
}
@media (max-width: 768px) {
  .process-cycle-block {
    padding: 20px 0 0;
    margin-top: 20px;
  }
  #como-rodamos {
    padding-bottom: 28px;
  }
  #como-rodamos .section-head {
    text-align: center;
  }
  .htimeline {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    max-width: min(340px, 100%);
    margin-inline: auto;
  }
  .htimeline-connector {
    display: none;
  }
  .htimeline-step {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 18px 16px 16px;
    background: #f8fafc;
    border: 1px solid #e8eef4;
    border-radius: 14px;
    box-sizing: border-box;
  }
  .htimeline-visual {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: auto;
    margin-bottom: 10px;
  }
  .htimeline-illus {
    width: 72px;
  }
  .htimeline-step h4 {
    margin: 0 0 6px;
    width: 100%;
  }
  .htimeline-step p {
    max-width: none;
    width: 100%;
    margin: 0;
    font-size: .86rem;
    line-height: 1.5;
  }
  .cta-final-section {
    padding: 64px 0 56px;
  }
}

/* CTA final - fundo azul escuro */
.cta-final-section {
  background: var(--color-primary-dark);
  padding: 64px 0 80px;
  margin: 0;
}

/* Footer CMI */
.cmi-footer {
  padding: 48px 0 0 !important;
}
.cmi-footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
@media (max-width: 768px) {
  .cmi-footer {
    padding: 14px 0 0 !important;
  }
  .cmi-footer-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
    padding-bottom: 8px;
  }
  .cmi-footer-brand img {
    height: 26px;
    margin-inline: auto;
  }
  .cmi-footer-tagline {
    font-size: .66rem;
    margin: 3px 0 0;
    line-height: 1.3;
  }
  .cmi-footer-desc {
    display: none;
  }
  .cmi-footer-address p {
    font-size: .7rem;
    line-height: 1.32;
    margin: 0 0 2px;
  }
  .cmi-footer-cnpj {
    font-size: .64rem !important;
    margin: 0 !important;
  }
  .cmi-footer .legal-note {
    padding: 8px 0 10px;
    font-size: .58rem;
    line-height: 1.35;
  }
}
.cmi-footer-brand img {
  height: 48px;
  width: auto;
  display: block;
}
.cmi-footer-tagline {
  font-size: .8rem;
  margin: 10px 0 0;
  opacity: .6;
  font-style: italic;
}
.cmi-footer-desc p {
  font-size: .92rem;
  line-height: 1.7;
  margin: 0;
  opacity: .8;
}
.cmi-footer-address p {
  font-size: .88rem;
  line-height: 1.7;
  margin: 0 0 8px;
  opacity: .8;
}
.cmi-footer-cnpj {
  font-size: .78rem !important;
  opacity: .5 !important;
}
.cmi-footer .legal-note {
  padding: 16px 0;
  font-size: .78rem;
  opacity: .5;
  border-top: none;
  margin: 0;
}

/* Seção: produto da Varejo 360 */
.v360-strip {
  background: #f8f9fb;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}
.v360-strip img {
  height: 40px;
  flex-shrink: 0;
}
.v360-strip p {
  margin: 0;
  font-size: .95rem;
  color: #475569;
}
@media (max-width: 600px) {
  .v360-strip {
    flex-direction: column;
    text-align: center;
  }
}

/* Correcoes de layout para mobile */
@media (max-width: 768px) {
  .container {
    width: min(1140px, 94%);
  }

  .topbar .topbar-grid {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 8px !important;
    align-items: center !important;
    padding: 10px 0 !important;
  }

  .topbar nav {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid rgba(0, 117, 179, .16);
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(3, 32, 58, .12);
    padding: 8px;
  }

  .topbar.is-open nav {
    display: block;
  }

  .topbar .brand {
    min-width: 0;
    gap: 8px;
  }
  .topbar .brand-name {
    font-size: 1.05rem;
  }

  .topbar .nav-toggle {
    display: inline-flex;
  }

  .topbar .top-nav {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    gap: 6px !important;
    margin-top: 4px !important;
  }

  .topbar .top-nav a {
    display: block;
    text-align: left;
    padding: 12px 12px !important;
    font-size: .9rem !important;
    font-weight: 800 !important;
    letter-spacing: .01em;
    line-height: 1.25 !important;
    word-break: break-word;
    color: #0b3150 !important;
    background: linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
    border: 1px solid #cfe3f5;
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
  }

  .topbar .top-nav a:hover,
  .topbar .top-nav a:focus-visible {
    color: #fff !important;
    background: linear-gradient(180deg, #0075b3 0%, #005a8a 100%) !important;
    border-color: #005a8a;
  }

  .topbar .btn-primary {
    display: none !important;
  }

  .hero-cmi {
    padding: 28px 0 0;
  }

  .hero-logo {
    height: 104px;
    margin-bottom: 32px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-rotating-wrap {
    display: block;
    height: auto;
    overflow: visible;
    margin-top: 6px;
  }

  .hero-rotating {
    display: inline;
    animation: none !important;
  }

  .hero-form-card {
    padding: 24px 16px;
  }

  .highlight-item {
    padding: 28px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

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

  .highlight-num {
    font-size: 3.2rem;
    right: 12px;
  }

  .evolution-pillar,
  .solution-card {
    flex-direction: column;
    gap: 12px;
  }
  .evolution-pillar .pillar-icon {
    display: none;
  }

  .clients-logo-grid {
    justify-content: center;
  }

  .v360-strip {
    padding: 24px 18px;
  }

  .cta-final-section {
    padding: 64px 0 56px;
    margin: 0;
  }

  .cta-final-section .btn {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 1rem !important;
    padding: 14px 16px !important;
  }

  .mobile-slide-item {
    opacity: 0;
    transform: translateY(26px);
  }

  .mobile-slide-item.is-visible {
    animation: slideInUpMobile .65s cubic-bezier(.22, .61, .36, 1) both;
    animation-delay: var(--slide-delay, 0ms);
  }
}

@media (max-width: 480px) {
  .topbar .top-nav a {
    font-size: .86rem !important;
  }
}

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

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

  .hero-rotating,
  .mobile-slide-item.is-visible {
    animation: none !important;
  }

  .mobile-slide-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Padronização de espaçamento — tudo ABAIXO de "Por que o Captis" ── */
#pesquisas,
#solucoes,
#clientes,
#base,
#como-rodamos,
.cta-final-section {
  padding-top: 48px;
  padding-bottom: 48px;
}
#consumidor-verificado {
  padding-top: 16px;
  padding-bottom: 48px;
}
/* distância uniforme entre o cabeçalho da seção e o conteúdo/box */
#pesquisas .portfolio-grid,
#clientes .clients-block,
#base .panel-scale-top,
#como-rodamos .process-cycle-block {
  margin-top: 40px;
}
@media (max-width: 768px) {
  #consumidor-verificado {
    padding-top: 12px;
    padding-bottom: 40px;
  }
  #pesquisas,
  #solucoes,
  #clientes,
  #base,
  #como-rodamos,
  .cta-final-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
