
/* =========================================================
   INÍCIO - VARIÁVEIS GERAIS E RESET
   ========================================================= */
:root {
  --sol-lilac: #e2a9f1;
  --sol-lilac-strong: #c47de0;
  --sol-lilac-soft: #f3d6fa;
  --sol-black: #060608;
  --sol-dark: #09070d;
  --sol-dark-2: #0f0916;
  --sol-purple-deep: #1b0826;
  --sol-purple: #4b1370;
  --sol-purple-2: #7b2fa8;
  --sol-card: rgba(255,255,255,0.045);
  --sol-card-strong: rgba(226,169,241,0.075);
  --sol-border: rgba(226,169,241,0.16);
  --sol-border-soft: rgba(255,255,255,0.08);
  --sol-text: #ffffff;
  --sol-muted: rgba(255,255,255,0.64);
  --sol-muted-2: rgba(255,255,255,0.44);
  --sol-max: 1200px;
  --sol-radius-lg: 34px;
  --sol-radius-md: 22px;
  --sol-shadow-purple: 0 32px 100px rgba(123,47,168,0.38);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  font-family: 'DM Sans', Arial, sans-serif;
  background: var(--sol-dark);
  color: var(--sol-text);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--sol-lilac); color: var(--sol-black); }
/* =========================================================
   FIM - VARIÁVEIS GERAIS E RESET
   ========================================================= */

/* =========================================================
   INÍCIO - COMPONENTES GLOBAIS
   ========================================================= */
.sol-shell {
  width: min(var(--sol-max), calc(100% - 40px));
  margin-inline: auto;
}
.sol-section {
  position: relative;
  padding: clamp(72px, 8vw, 112px) 0;
}
.sol-section--alt { background: #0a0a12; }
.sol-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sol-lilac);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sol-section-label::before {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--sol-lilac), transparent);
}
.sol-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.sol-title em,
.sol-gradient-text {
  font-style: italic;
  color: var(--sol-lilac);
}
.sol-text {
  color: var(--sol-muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.82;
}
.sol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
}
.sol-btn:hover { transform: translateY(-2px); }
.sol-btn--primary {
  background: linear-gradient(135deg, var(--sol-lilac), var(--sol-lilac-strong));
  color: #09070d;
  box-shadow: 0 18px 45px rgba(226,169,241,.22);
}
.sol-btn--primary:hover {
  box-shadow: 0 24px 60px rgba(226,169,241,.32);
}
.sol-btn--secondary {
  color: var(--sol-text);
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.16);
}
.sol-btn--secondary:hover {
  color: var(--sol-lilac);
  border-color: rgba(226,169,241,.42);
  background: rgba(226,169,241,.07);
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
/* =========================================================
   FIM - COMPONENTES GLOBAIS
   ========================================================= */

/* =========================================================
   INÍCIO - CABEÇALHO / MENU
   ========================================================= */
.sol-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  height: 74px;
  border-bottom: 1px solid rgba(226,169,241,.12);
  background: rgba(9,7,13,.72);
  backdrop-filter: blur(18px);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.sol-header.is-scrolled {
  height: 68px;
  background: rgba(9,7,13,.96);
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}
.sol-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.sol-header__logo img {
  display: block;
  width: auto;
  height: 50px;
  object-fit: contain;
  filter: none;
}
.sol-menu,
.sol-header .menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  list-style: none;
}
.sol-menu a,
.sol-header .menu a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .22s ease;
}
.sol-menu a:hover,
.sol-header .menu a:hover { color: var(--sol-lilac); }
.sol-header__actions { display: flex; align-items: center; gap: 14px; }
.sol-header__cta {
  min-height: 42px;
  padding: 12px 22px;
  font-size: 16px;
}
.sol-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.sol-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 20px;
  background: var(--sol-text);
  transition: transform .3s ease, opacity .3s ease;
}
.sol-menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.sol-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.sol-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.sol-mobile-menu {
  display: none;
  position: fixed;
  inset: 74px 0 auto 0;
  z-index: 998;
  padding: 22px 20px 28px;
  background: rgba(9,7,13,.98);
  border-bottom: 1px solid rgba(226,169,241,.16);
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}
.sol-mobile-menu.is-open { display: block; }
.sol-mobile-menu a {
  display: block;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 17px;
}
.sol-mobile-menu .sol-btn { margin-top: 18px; width: 100%; }
/* =========================================================
   FIM - CABEÇALHO / MENU
   ========================================================= */

/* =========================================================
   INÍCIO - HERO REPAGINADO COM LOGOS
   ========================================================= */
.sol-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 114px 0 58px;
  background:
    radial-gradient(circle at 88% 18%, rgba(226,169,241,.24), transparent 34%),
    radial-gradient(circle at 70% 82%, rgba(123,47,168,.34), transparent 32%),
    radial-gradient(circle at 15% 24%, rgba(226,169,241,.14), transparent 30%),
    linear-gradient(135deg, #070509 0%, #1b0826 52%, #09070d 100%);
}
.sol-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(226,169,241,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226,169,241,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.28));
  pointer-events: none;
}
.sol-hero::after {
  content: '';
  position: absolute;
  width: min(62vw, 760px);
  height: min(62vw, 760px);
  right: -12vw;
  top: 7vh;
  border-radius: 38% 62% 46% 54% / 45% 38% 62% 55%;
  background:
    radial-gradient(circle at 35% 34%, rgba(226,169,241,.42), transparent 0 18%, rgba(123,47,168,.44) 19%, transparent 67%),
    linear-gradient(140deg, rgba(226,169,241,.12), rgba(123,47,168,.24));
  filter: blur(.2px);
  opacity: .9;
  pointer-events: none;
}
.sol-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
  gap: clamp(28px, 4.3vw, 54px);
  align-items: center;
}
.sol-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(226,169,241,.28);
  border-radius: 999px;
  background: rgba(226,169,241,.10);
  color: var(--sol-lilac);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sol-hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sol-lilac);
  box-shadow: 0 0 0 7px rgba(226,169,241,.12);
}
.sol-hero h1 {
  max-width: 710px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6.2vw, 5.45rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -0.06em;
  color: #fff;
}
.sol-hero h1 em {
  display: inline-block;
  font-style: normal;
  color: var(--sol-lilac);
  text-shadow: 0 0 38px rgba(226,169,241,.25);
}
.sol-hero__desc {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 300;
  line-height: 1.75;
}
.sol-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.sol-hero__stats-line {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 34px;
}
.sol-hero__stat-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.58);
  font-size: 18px;
  line-height: 1.2;
}
.sol-hero__stat-pill strong {
  color: var(--sol-lilac);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  line-height: 1;
}
.sol-hero__proof {
  margin-top: 28px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,.09);
}
.sol-hero__proof-title {
  margin-bottom: 14px;
  color: rgba(255,255,255,.48);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sol-hero__logos {
  overflow-x: auto;
  scrollbar-width: thin;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
}
.sol-hero__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 56px;
  padding: 10px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sol-hero__logo-card img {
  display: block;
  max-height: 30px;
  max-width: 126px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform .25s ease;
}
.sol-hero__logo-card:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(0,0,0,.2); }
.sol-hero__logo-card:hover img { transform: scale(1.02); }
.sol-hero__visual {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.sol-hero__photo-shape {
  position: absolute;
  inset: 92px 4% 34px 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(111,39,160,.34), transparent 42%),
    radial-gradient(circle at 62% 65%, rgba(226,169,241,.16), transparent 34%),
    radial-gradient(circle at 30% 78%, rgba(123,47,168,.22), transparent 30%);
  filter: blur(18px);
  opacity: .88;
}
.sol-hero__photo-shape::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 54px;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,169,241,.14), rgba(123,47,168,.03) 72%, transparent 74%);
}
.sol-hero__photo-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  border-radius: 0;
  overflow: visible;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.sol-hero__photo-frame::after { content: none; }
.sol-hero__photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 36px 70px rgba(0,0,0,.34));
}
.sol-hero__floating-card {
  position: absolute;
  z-index: 3;
  left: 6px;
  bottom: 110px;
  width: min(270px, 54%);
  padding: 18px 18px 17px;
  border-radius: 20px;
  background: rgba(9,7,13,.78);
  border: 1px solid rgba(226,169,241,.22);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0,0,0,.33);
}
.sol-hero__floating-card span {
  display: block;
  color: var(--sol-lilac);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.sol-hero__floating-card p {
  margin-top: 6px;
  color: rgba(255,255,255,.62);
  font-size: 18px;
  line-height: 1.45;
}
/* =========================================================
   FIM - HERO REPAGINADO COM LOGOS
   ========================================================= */

/* =========================================================
   INÍCIO - TRAJETÓRIA
   ========================================================= */
.sol-traj-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(38px, 7vw, 84px);
  align-items: center;
}
.sol-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--sol-radius-lg);
  background: linear-gradient(180deg, rgba(226,169,241,.08), rgba(123,47,168,.18));
  border: 1px solid rgba(226,169,241,.18);
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
}
.sol-photo-frame img {
  display: block;
  width: 100%;
  filter: grayscale(.18) contrast(1.04);
}
.sol-photo-badge {
  position: absolute;
  right: -16px;
  bottom: -18px;
  min-width: 146px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--sol-lilac), var(--sol-lilac-strong));
  color: var(--sol-black);
  box-shadow: 0 18px 55px rgba(226,169,241,.30);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}
.sol-photo-badge strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 35px;
  line-height: .9;
}
.sol-timeline { margin-top: 34px; }
.sol-timeline__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.075);
}
.sol-timeline__item:last-child { border-bottom: 0; }
.sol-timeline__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(226,169,241,.095);
  border: 1px solid rgba(226,169,241,.28);
}
.sol-timeline__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--sol-lilac);
}
.sol-timeline__title {
  display: block;
  color: var(--sol-lilac);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 6px;
}
.sol-timeline__text {
  color: var(--sol-muted-2);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.68;
}
/* =========================================================
   FIM - TRAJETÓRIA
   ========================================================= */

/* =========================================================
   INÍCIO - PROBLEMA
   ========================================================= */
.sol-problem {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(226,169,241,.11), transparent 25%),
    #0a0a12;
}
.sol-problem__statement {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,255,.78);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: -0.035em;
}
.sol-problem__statement strong { color: #fff; }
.sol-problem__statement .highlight {
  color: var(--sol-lilac);
  font-style: italic;
}
.sol-problem__sub {
  max-width: 820px;
  margin: 26px auto 0;
  text-align: center;
  color: var(--sol-muted-2);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}
.sol-problem__mini-title {
  margin-top: 54px;
  text-align: center;
  color: rgba(255,255,255,.74);
  font-size: 18px;
  font-weight: 700;
}
.sol-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.sol-problem-card {
  position: relative;
  min-height: 235px;
  padding: 30px;
  border-radius: var(--sol-radius-md);
  border: 1px solid var(--sol-border-soft);
  background: linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.026));
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}
.sol-problem-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sol-lilac), transparent);
  opacity: .58;
}
.sol-problem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226,169,241,.25);
  background: rgba(226,169,241,.055);
}
.sol-problem-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(226,169,241,.10);
  border: 1px solid rgba(226,169,241,.18);
  margin-bottom: 20px;
}
.sol-problem-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--sol-lilac);
}
.sol-problem-card h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 12px;
}
.sol-problem-card p {
  color: var(--sol-muted-2);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
}
/* =========================================================
   FIM - PROBLEMA
   ========================================================= */

/* =========================================================
   INÍCIO - CONSULTORIA / COMO FUNCIONA
   ========================================================= */
.sol-consultoria-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--sol-radius-lg);
  border: 1px solid rgba(226,169,241,.2);
  background:
    radial-gradient(circle at 95% 8%, rgba(226,169,241,.20), transparent 26%),
    linear-gradient(135deg, rgba(47,12,71,.82), rgba(20,8,31,.94));
  box-shadow: 0 32px 90px rgba(0,0,0,.22);
}
.sol-consultoria-panel::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -160px;
  bottom: -190px;
  background: radial-gradient(circle, rgba(226,169,241,.18), transparent 70%);
  pointer-events: none;
}
.sol-consultoria-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  margin-bottom: 42px;
}
.sol-frentes-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sol-frente-card {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(6,6,8,.34);
  text-decoration: none;
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}
.sol-frente-card:hover {
  transform: translateY(-5px);
  background: rgba(226,169,241,.075);
  border-color: rgba(226,169,241,.26);
}
.sol-frente-card__num {
  color: rgba(226,169,241,.24);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  line-height: .9;
  margin-bottom: 24px;
}
.sol-frente-card h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 9px;
}
.sol-frente-card p {
  color: rgba(255,255,255,.46);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}
.sol-frente-card__arrow {
  margin-top: auto;
  color: var(--sol-lilac);
  font-size: 22px;
  line-height: 1;
  padding-top: 18px;
}
/* =========================================================
   FIM - CONSULTORIA / COMO FUNCIONA
   ========================================================= */

/* =========================================================
   INÍCIO - CLIENTES / CASES
   ========================================================= */
.sol-clientes-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.sol-clientes-header .sol-section-label { justify-content: center; }
.sol-clientes-header .sol-section-label::after {
  content: '';
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sol-lilac));
}
.sol-clientes-header p {
  margin-top: 18px;
  color: var(--sol-muted-2);
}
.sol-logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin-bottom: 42px;
  padding: 26px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.03);
}
.sol-logo-item {
  display: grid;
  place-items: center;
  min-width: 170px;
  min-height: 74px;
  padding: 10px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 30px rgba(0,0,0,.14);
}
.sol-logo-item img {
  max-height: 40px;
  max-width: 148px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform .25s ease;
}
.sol-logo-item:hover img { transform: scale(1.03); }
.sol-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.sol-case-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 30px;
  border-radius: var(--sol-radius-md);
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.024));
  transition: transform .28s ease, border-color .28s ease, background .28s ease;
}
.sol-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(226,169,241,.23);
  background: rgba(226,169,241,.05);
}
.sol-case-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(226,169,241,.22);
  background: rgba(226,169,241,.09);
  color: var(--sol-lilac);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sol-case-logo {
  display: inline-block;
  max-height: 40px;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(0,0,0,.14);
}
.sol-case-client {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 9px;
}
.sol-case-result {
  color: var(--sol-lilac);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}
.sol-case-desc {
  color: var(--sol-muted-2);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
}
/* =========================================================
   FIM - CLIENTES / CASES
   ========================================================= */

/* =========================================================
   INÍCIO - FAQ
   ========================================================= */
.sol-faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}
.sol-faq-side { position: sticky; top: 96px; }
.sol-faq-side p { margin-top: 18px; color: var(--sol-muted-2); }
.sol-faq-list {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: rgba(255,255,255,.025);
  overflow: hidden;
}
.sol-faq-item + .sol-faq-item { border-top: 1px solid rgba(255,255,255,.075); }
.sol-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 22px 24px;
  text-align: left;
  font-size: 18px;
  font-weight: 800;
  transition: color .22s ease, background .22s ease;
}
.sol-faq-question:hover {
  color: var(--sol-lilac);
  background: rgba(226,169,241,.035);
}
.sol-faq-toggle {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  border: 1px solid rgba(226,169,241,.3);
  color: var(--sol-lilac);
  line-height: 1;
  transition: transform .28s ease, background .28s ease, color .28s ease;
}
.sol-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.sol-faq-answer__inner {
  padding: 0 24px 24px;
  color: var(--sol-muted-2);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.78;
}
.sol-faq-item.is-open .sol-faq-answer { max-height: 320px; }
.sol-faq-item.is-open .sol-faq-toggle {
  transform: rotate(45deg);
  background: var(--sol-lilac);
  color: var(--sol-black);
}
/* =========================================================
   FIM - FAQ
   ========================================================= */

/* =========================================================
   INÍCIO - CTA FINAL
   ========================================================= */
.sol-cta-block {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 86px) clamp(24px, 6vw, 70px);
  border-radius: 36px;
  border: 1px solid rgba(226,169,241,.22);
  background:
    radial-gradient(circle at 88% 15%, rgba(226,169,241,.20), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(123,47,168,.26), transparent 34%),
    linear-gradient(135deg, rgba(226,169,241,.10), rgba(123,47,168,.14));
  text-align: center;
}
.sol-cta-eyebrow {
  color: var(--sol-lilac);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sol-cta-title {
  position: relative;
  z-index: 1;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.sol-cta-title em {
  color: var(--sol-lilac);
  font-style: italic;
}
.sol-cta-desc {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 22px auto 34px;
  color: var(--sol-muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.78;
}
/* =========================================================
   FIM - CTA FINAL
   ========================================================= */

/* =========================================================
   INÍCIO - RODAPÉ E WHATSAPP
   ========================================================= */
.sol-footer {
  background: #050506;
  border-top: 1px solid rgba(255,255,255,.055);
  padding: 50px 0 34px;
}
.sol-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(240px, .9fr) minmax(220px, .7fr);
  gap: 34px;
  align-items: start;
}
.sol-footer__logo {
  height: 82px;
  width: auto;
  object-fit: contain;
  filter: none;
  margin-bottom: 16px;
}
.sol-footer__copy,
.sol-footer__text {
  color: rgba(255,255,255,.28);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}
.sol-footer h3 {
  color: rgba(255,255,255,.72);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sol-footer ul { list-style: none; display: grid; gap: 10px; }
.sol-footer a {
  color: rgba(255,255,255,.38);
  text-decoration: none;
  font-size: 16px;
  transition: color .22s ease;
}
.sol-footer a:hover { color: var(--sol-lilac); }
.sol-footer__bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.055);
}
.sol-whatsapp-float {
  position: fixed;
  z-index: 1000;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 16px 44px rgba(37,211,102,.35);
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease;
}
.sol-whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 56px rgba(37,211,102,.45);
}
.sol-whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
/* =========================================================
   FIM - RODAPÉ E WHATSAPP
   ========================================================= */

/* =========================================================
   INÍCIO - RESPONSIVO
   ========================================================= */
@media (max-width: 1100px) {
  .sol-hero__inner { grid-template-columns: 1fr .78fr; }
  .sol-hero__visual { min-height: 640px; }
  .sol-frentes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .sol-header__nav,
  .sol-header__actions .sol-header__cta { display: none; }
  .sol-menu-toggle { display: block; }
  .sol-hero {
    align-items: start;
    padding-top: 104px;
    text-align: center;
  }
  .sol-hero__inner { grid-template-columns: 1fr; }
  .sol-hero__content { order: 2; }
  .sol-hero__visual {
    order: 1;
    min-height: 470px;
    max-width: 540px;
    margin: 0 auto -20px;
  }
  .sol-hero__photo-frame { width: min(100%, 520px); }
  .sol-hero__floating-card { left: 6px; bottom: 38px; text-align: left; }
  .sol-hero__stats-line,
  .sol-hero__logos { justify-content: flex-start; }
  .sol-hero__proof-title { text-align: left; }
  .sol-hero__ctas,
  .sol-hero__stats-line,
  .sol-hero__logos {
  overflow-x: auto;
  scrollbar-width: thin; justify-content: center; }
  .sol-hero__proof-title { text-align: center; }
  .sol-traj-grid,
  .sol-consultoria-top,
  .sol-faq-grid,
  .sol-footer__inner { grid-template-columns: 1fr; }
  .sol-faq-side { position: static; }
  .sol-problem-grid { grid-template-columns: 1fr; }
  .sol-cases-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .sol-shell { width: min(100% - 28px, var(--sol-max)); }
  .sol-section { padding: 64px 0; }
  .sol-header__logo img { height: 36px; }
  .sol-hero h1 { font-size: clamp(2.45rem, 14vw, 3.55rem); }
  .sol-hero__desc { font-size: 15px; line-height: 1.7; }
  .sol-hero__ctas .sol-btn { width: 100%; }
  .sol-hero__logo-card { min-width: calc(50% - 10px); }
  .sol-logo-item { min-width: calc(50% - 10px); }
  .sol-hero__stats-line,
  .sol-hero__logos { flex-wrap: wrap; overflow-x: visible; }
  .sol-hero__photo-shape { inset: 76px 0 22px 8%; opacity: .82; }
  .sol-hero__visual { min-height: 400px; }
  .sol-hero__floating-card { display: none; }
  .sol-photo-badge { right: 10px; bottom: 10px; }
  .sol-frentes-grid { grid-template-columns: 1fr; }
  .sol-consultoria-panel { padding: 28px 18px; border-radius: 28px; }
  .sol-problem-card,
  .sol-case-card { padding: 24px; }
  .sol-faq-question { padding: 20px 18px; }
  .sol-faq-answer__inner { padding: 0 18px 22px; }
  .sol-whatsapp-float { width: 54px; height: 54px; right: 18px; bottom: 18px; }
}
/* =========================================================
   FIM - RESPONSIVO
   ========================================================= */


/* =========================================================
   INÍCIO - VARIAÇÃO CLARA DO TEMA
   ========================================================= */
:root {
  --sol-lilac: #9d51bd;
  --sol-lilac-strong: #7d369d;
  --sol-lilac-soft: #efe0f6;
  --sol-black: #24142c;
  --sol-dark: #fbf8fd;
  --sol-dark-2: #f5eef9;
  --sol-purple-deep: #efe3f5;
  --sol-purple: #ad73c9;
  --sol-purple-2: #7b2fa8;
  --sol-card: rgba(255,255,255,.82);
  --sol-card-strong: rgba(255,255,255,.94);
  --sol-border: rgba(123,47,168,.18);
  --sol-border-soft: rgba(44,24,52,.10);
  --sol-text: #24142c;
  --sol-muted: rgba(36,20,44,.72);
  --sol-muted-2: rgba(36,20,44,.52);
  --sol-shadow-purple: 0 30px 90px rgba(123,47,168,.16);
}

body {
  background: #fbf8fd;
  color: var(--sol-text);
}

.sol-header {
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(123,47,168,.12);
  box-shadow: 0 14px 42px rgba(55,25,70,.06);
}
.sol-header.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 50px rgba(55,25,70,.12);
}
.sol-header__logo img,
.sol-footer__logo {
  filter: none !important;
}
.sol-header__logo img {
  height: 66px;
}
.sol-menu a,
.sol-header .menu a {
  color: rgba(36,20,44,.72);
}
.sol-menu a:hover,
.sol-header .menu a:hover {
  color: var(--sol-purple-2);
}
.sol-menu-toggle {
  background: rgba(123,47,168,.06);
  border-color: rgba(123,47,168,.18);
}
.sol-menu-toggle span { background: var(--sol-text); }
.sol-mobile-menu {
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid rgba(123,47,168,.14);
}
.sol-mobile-menu a {
  color: rgba(36,20,44,.76);
  border-bottom-color: rgba(36,20,44,.08);
}

.sol-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #9d51bd, #6f2491);
  box-shadow: 0 18px 44px rgba(123,47,168,.18);
}
.sol-btn--primary:hover {
  box-shadow: 0 24px 58px rgba(123,47,168,.24);
}
.sol-btn--secondary {
  color: var(--sol-text);
  background: rgba(255,255,255,.74);
  border-color: rgba(123,47,168,.18);
}
.sol-btn--secondary:hover {
  color: var(--sol-purple-2);
  background: rgba(255,255,255,.96);
  border-color: rgba(123,47,168,.30);
}

.sol-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(226,169,241,.48), transparent 32%),
    radial-gradient(circle at 72% 82%, rgba(123,47,168,.16), transparent 30%),
    radial-gradient(circle at 12% 22%, rgba(226,169,241,.26), transparent 28%),
    linear-gradient(135deg, #fff 0%, #fbf7fd 44%, #f1e4f7 100%);
}
.sol-hero::before {
  background-image:
    linear-gradient(rgba(123,47,168,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,168,.055) 1px, transparent 1px);
  opacity: .75;
}
.sol-hero::after {
  background: linear-gradient(140deg, rgba(157,81,189,.12), rgba(226,169,241,.16));
  opacity: .75;
}
.sol-hero__badge {
  background: rgba(255,255,255,.72);
  border-color: rgba(123,47,168,.18);
  color: var(--sol-purple-2);
}
.sol-hero h1 {
  color: #24142c;
}
.sol-hero h1 em {
  color: #9d51bd;
  text-shadow: 0 12px 34px rgba(123,47,168,.14);
}
.sol-hero__desc {
  color: rgba(36,20,44,.70);
}
.sol-hero__stat-pill {
  color: rgba(36,20,44,.70);
  background: rgba(255,255,255,.78);
  border-color: rgba(123,47,168,.16);
  box-shadow: 0 12px 32px rgba(55,25,70,.06);
}
.sol-hero__stat-pill strong { color: #9d51bd; }
.sol-hero__proof-title {
  color: rgba(36,20,44,.58);
}
.sol-hero__logo-card {
  background: rgba(255,255,255,.95);
  border-color: rgba(123,47,168,.12);
  box-shadow: 0 16px 34px rgba(55,25,70,.10);
}
.sol-hero__photo-shape {
  background:
    radial-gradient(circle at 52% 38%, rgba(157,81,189,.20), transparent 42%),
    radial-gradient(circle at 62% 65%, rgba(226,169,241,.28), transparent 34%),
    radial-gradient(circle at 30% 78%, rgba(123,47,168,.12), transparent 30%);
  opacity: .92;
}
.sol-hero__floating-card {
  background: rgba(255,255,255,.84);
  border-color: rgba(123,47,168,.18);
  box-shadow: 0 22px 64px rgba(55,25,70,.14);
}
.sol-hero__floating-card span { color: #9d51bd; }
.sol-hero__floating-card p { color: rgba(36,20,44,.66); }

.sol-section { background: #fbf8fd; }
.sol-section--alt { background: #f5eef9; }
.sol-section-label { color: var(--sol-purple-2); }
.sol-title { color: var(--sol-text); }
.sol-title em,
.sol-gradient-text { color: #9d51bd; }
.sol-text { color: rgba(36,20,44,.70); }

.sol-photo-frame,
.sol-problem-card,
.sol-frente-card,
.sol-case-card,
.sol-faq-item,
.sol-consultoria-panel,
.sol-cta-block {
  background: rgba(255,255,255,.86);
  border-color: rgba(123,47,168,.14);
  box-shadow: 0 24px 70px rgba(55,25,70,.08);
}
.sol-photo-frame::after { border-color: rgba(123,47,168,.14); }
.sol-photo-badge,
.sol-consultoria-note {
  color: #fff;
  background: linear-gradient(135deg, #9d51bd, #6f2491);
  box-shadow: 0 16px 40px rgba(123,47,168,.20);
}
.sol-timeline__item { border-bottom-color: rgba(36,20,44,.09); }
.sol-timeline__icon {
  background: rgba(123,47,168,.08);
  border-color: rgba(123,47,168,.18);
}
.sol-timeline__icon svg { stroke: #9d51bd; }
.sol-timeline__title,
.sol-problem-card h3,
.sol-frente-card h3,
.sol-case-client,
.sol-faq-question,
.sol-footer h3 { color: var(--sol-text); }
.sol-timeline__text,
.sol-problem-card p,
.sol-frente-card p,
.sol-case-desc,
.sol-faq-answer__inner { color: rgba(36,20,44,.60); }
.sol-problem { background: #f5eef9; }
.sol-problem__statement { color: rgba(36,20,44,.78); }
.sol-problem__statement strong { color: var(--sol-text); }
.sol-problem__statement .highlight,
.sol-problem__mini-title,
.sol-case-result { color: #9d51bd; }
.sol-problem__sub { color: rgba(36,20,44,.58); }
.sol-problem-card__icon {
  background: rgba(123,47,168,.08);
}
.sol-problem-card__icon svg { stroke: #9d51bd; }
.sol-consultoria-panel {
  background:
    radial-gradient(circle at 18% 20%, rgba(226,169,241,.30), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(123,47,168,.12), transparent 32%),
    rgba(255,255,255,.86);
}
.sol-frente-card__num { color: rgba(157,81,189,.30); }
.sol-frente-card__arrow { color: #9d51bd; }
.sol-clientes-header p { color: rgba(36,20,44,.56); }
.sol-logos-strip {
  background: rgba(255,255,255,.56);
  border-color: rgba(123,47,168,.10);
}
.sol-logo-item {
  background: #fff;
  box-shadow: 0 16px 30px rgba(55,25,70,.08);
}
.sol-case-tag {
  color: #9d51bd;
  background: rgba(123,47,168,.08);
  border-color: rgba(123,47,168,.14);
}
.sol-faq-toggle {
  border-color: rgba(123,47,168,.22);
  color: #9d51bd;
  background: rgba(123,47,168,.04);
}
.sol-faq-item.open .sol-faq-toggle {
  color: #fff;
  background: #9d51bd;
}
.sol-cta-block {
  background:
    radial-gradient(circle at 20% 25%, rgba(226,169,241,.32), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.90), rgba(245,238,249,.94));
}
.sol-cta-eyebrow { color: #9d51bd; }
.sol-cta-desc { color: rgba(36,20,44,.66); }
.sol-footer {
  background: #f1e8f6;
  border-top: 1px solid rgba(123,47,168,.12);
}
.sol-footer__copy,
.sol-footer__text,
.sol-footer a {
  color: rgba(36,20,44,.58);
}
.sol-footer a:hover { color: #9d51bd; }
.sol-footer__bottom { border-top-color: rgba(36,20,44,.08); }
/* =========================================================
   FIM - VARIAÇÃO CLARA DO TEMA
   ========================================================= */


/* =========================================================
   INÍCIO - AJUSTES CLIENTES / LINKS PERSONALIZÁVEIS
   ========================================================= */
.sol-hero__logo-card,
.sol-logo-item,
.sol-case-brand {
  text-decoration: none;
}

.sol-hero__logo-card--text span,
.sol-logo-item--text span,
.sol-case-brand--text span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #24142c;
  letter-spacing: -0.02em;
}

.sol-hero__logo-card--text span,
.sol-logo-item--text span {
  font-size: 20px;
}

.sol-case-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-height: 58px;
  margin: 2px 0 14px;
}

.sol-case-brand img {
  display: block;
  max-width: 210px;
  max-height: 64px;
  object-fit: contain;
}

.sol-case-brand--text span {
  font-size: 31px;
  color: #24142c;
}

.sol-case-logo { display: none !important; }

@media (max-width: 620px) {
  .sol-case-brand img {
    max-width: 178px;
    max-height: 56px;
  }
  .sol-case-brand--text span {
    font-size: 28px;
  }
}
/* =========================================================
   FIM - AJUSTES CLIENTES / LINKS PERSONALIZÁVEIS
   ========================================================= */


/* =========================================================
   INÍCIO - AJUSTE FINAL CLIENTES / HERO LOGOS
   ========================================================= */
/* Mantém as 5 logos do hero em uma única linha no desktop, sem barra de rolagem */
.sol-hero__logos {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  align-items: center !important;
  gap: 10px !important;
  overflow: visible !important;
  scrollbar-width: none !important;
}
.sol-hero__logos::-webkit-scrollbar { display: none !important; }

.sol-hero__logo-card {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 74px !important;
  padding: 8px 9px !important;
  border-radius: 15px !important;
}

.sol-hero__logo-card img {
  max-width: 100% !important;
  max-height: 58px !important;
}

.sol-hero__logo-card--text span { font-size: 18px !important; }

/* Nos cards, a logo entra abaixo da tag, ocupando a posição do título */
.sol-case-card .sol-case-tag {
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 0 18px 0 !important;
  vertical-align: top !important;
}

.sol-case-card .sol-case-brand {
  display: flex !important;
  clear: both !important;
  width: 100% !important;
  min-height: 58px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin: 0 0 14px 0 !important;
}

.sol-case-card .sol-case-brand img {
  display: block !important;
  max-width: 210px !important;
  max-height: 64px !important;
  object-fit: contain !important;
}

.sol-case-card .sol-case-brand--text span {
  display: block !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 31px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #24142c !important;
  letter-spacing: -0.02em !important;
}

@media (max-width: 900px) {
  .sol-hero__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .sol-hero__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .sol-hero__logo-card {
    min-width: 0 !important;
  }
  .sol-case-card .sol-case-brand img {
    max-width: 178px !important;
    max-height: 56px !important;
  }
  .sol-case-card .sol-case-brand--text span {
    font-size: 28px !important;
  }
}
/* =========================================================
   FIM - AJUSTE FINAL CLIENTES / HERO LOGOS
   ========================================================= */


/* =========================================================
   INÍCIO - REVISÃO RESPONSIVA FINAL / MOBILE-FIRST
   Ajustes adicionados para preservar as alterações de fonte/logo
   feitas na home e corrigir comportamento no mobile.
   ========================================================= */
html,
body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body,
.sol-site,
.sol-shell,
.sol-section,
.sol-hero,
.sol-hero__inner,
.sol-hero__content,
.sol-hero__visual,
.sol-case-card,
.sol-logo-item,
.sol-hero__logo-card {
  min-width: 0 !important;
}

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

/* Desktop: garante hero e logos sem rolagem quando há espaço */
@media (min-width: 901px) {
  .sol-hero__logos {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 12px !important;
    overflow: visible !important;
    scrollbar-width: none !important;
  }

  .sol-hero__logo-card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 68px !important;
  }

  .sol-hero__stats-line {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    gap: 12px !important;
  }
}

/* Menu tablet/mobile */
@media (max-width: 1024px) {
  .sol-header {
    height: 72px !important;
  }

  .sol-header__inner {
    width: min(100% - 28px, var(--sol-max)) !important;
    gap: 12px !important;
  }

  .sol-header__logo img {
    height: 50px !important;
    max-width: 230px !important;
    object-fit: contain !important;
  }

  .sol-header__nav,
  .sol-header__actions .sol-header__cta {
    display: none !important;
  }

  .sol-header__actions {
    display: flex !important;
    margin-left: auto !important;
  }

  .sol-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    flex: 0 0 46px !important;
    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.92) !important;
    border: 1px solid rgba(123,47,168,.20) !important;
    box-shadow: 0 12px 28px rgba(55,25,70,.10) !important;
    cursor: pointer !important;
  }

  .sol-menu-toggle span {
    display: block !important;
    width: 20px !important;
    height: 2px !important;
    margin: 3px 0 !important;
    border-radius: 10px !important;
    background: #24142c !important;
  }

  .sol-mobile-menu {
    top: 72px !important;
    inset-inline: 0 !important;
    padding: 18px 20px 24px !important;
    background: rgba(255,255,255,.98) !important;
    backdrop-filter: blur(18px) !important;
    border-bottom: 1px solid rgba(123,47,168,.14) !important;
    box-shadow: 0 22px 60px rgba(55,25,70,.14) !important;
  }

  .sol-mobile-menu.is-open {
    display: block !important;
  }

  .sol-mobile-menu a {
    color: #24142c !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    padding: 14px 0 !important;
  }
}

/* Tablet: reorganiza hero sem quebrar textos */
@media (max-width: 900px) {
  .sol-hero {
    padding-top: 92px !important;
    text-align: center !important;
  }

  .sol-hero__inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .sol-hero__content {
    order: 1 !important;
  }

  .sol-hero__visual {
    order: 2 !important;
    width: 100% !important;
    max-width: 560px !important;
    min-height: auto !important;
    margin: 0 auto !important;
  }

  .sol-hero__photo-frame {
    width: min(100%, 500px) !important;
    margin-inline: auto !important;
  }

  .sol-hero__photo {
    width: 100% !important;
    max-height: 560px !important;
    object-fit: contain !important;
  }

  .sol-hero__floating-card {
    left: 18px !important;
    bottom: 18px !important;
    max-width: min(270px, calc(100% - 36px)) !important;
  }

  .sol-hero__ctas {
    justify-content: center !important;
  }

  .sol-hero__stats-line {
    justify-content: center !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
  }

  .sol-hero__proof-title {
    text-align: center !important;
  }

  .sol-hero__logos {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
    overflow: visible !important;
  }

  .sol-hero__logo-card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 66px !important;
  }
}

/* Mobile principal */
@media (max-width: 620px) {
  .sol-shell {
    width: min(100% - 28px, var(--sol-max)) !important;
  }

  .sol-section {
    padding: 58px 0 !important;
  }

  .sol-header {
    height: 68px !important;
  }

  .sol-header__inner {
    width: min(100% - 24px, var(--sol-max)) !important;
  }

  .sol-header__logo img {
    height: 42px !important;
    max-width: 205px !important;
  }

  .sol-menu-toggle {
    flex-basis: 44px !important;
    width: 44px !important;
    height: 44px !important;
  }

  .sol-mobile-menu {
    top: 68px !important;
  }

  .sol-hero {
    padding: 86px 0 46px !important;
  }

  .sol-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem) !important;
    line-height: 1 !important;
    letter-spacing: -0.052em !important;
    max-width: 100% !important;
  }

  .sol-hero__desc {
    font-size: 17px !important;
    line-height: 1.58 !important;
    max-width: 100% !important;
  }

  .sol-hero__ctas {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 26px !important;
  }

  .sol-btn,
  .sol-hero__ctas .sol-btn,
  .sol-cta-block .sol-btn,
  #contato .sol-btn,
  .sol-mobile-menu .sol-btn {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 54px !important;
    padding: 14px 16px !important;
    border-radius: 999px !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.24 !important;
    font-size: 15px !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .sol-hero__stats-line {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
    overflow: visible !important;
    margin-top: 26px !important;
  }

  .sol-hero__stat-pill {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 4px !important;
    min-width: 0 !important;
    padding: 12px 8px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    line-height: 1.22 !important;
    text-align: center !important;
  }

  .sol-hero__stat-pill strong {
    font-size: 23px !important;
  }

  .sol-hero__proof {
    margin-top: 24px !important;
    padding-top: 18px !important;
  }

  .sol-hero__proof-title {
    font-size: 12px !important;
    letter-spacing: .14em !important;
    margin-bottom: 12px !important;
  }

  .sol-hero__logos {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    overflow: visible !important;
  }

  .sol-hero__logo-card {
    min-width: 0 !important;
    width: 100% !important;
    min-height: 62px !important;
    padding: 9px 10px !important;
    border-radius: 16px !important;
  }

  .sol-hero__logo-card:nth-child(5) {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    width: min(100%, 180px) !important;
  }

  .sol-hero__logo-card img {
    max-width: 100% !important;
    max-height: 42px !important;
    object-fit: contain !important;
  }

  .sol-hero__logo-card--text span {
    font-size: 18px !important;
  }

  .sol-hero__visual {
    max-width: 440px !important;
    margin-top: 8px !important;
  }

  .sol-hero__photo-frame {
    width: min(100%, 420px) !important;
  }

  .sol-hero__photo {
    max-height: 460px !important;
  }

  .sol-hero__floating-card {
    left: 12px !important;
    bottom: 12px !important;
    width: min(240px, calc(100% - 24px)) !important;
    padding: 14px 16px !important;
  }

  .sol-title,
  .sol-cta-title {
    font-size: clamp(2rem, 9.2vw, 2.85rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
  }

  .sol-text,
  .sol-problem__sub,
  .sol-case-desc,
  .sol-faq-answer__inner,
  .sol-cta-desc {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .sol-logos-strip {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto 34px !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }

  .sol-logo-item {
    display: grid !important;
    place-items: center !important;
    min-width: 0 !important;
    width: 100% !important;
    min-height: 74px !important;
    padding: 10px 12px !important;
    border-radius: 16px !important;
  }

  .sol-logo-item:nth-child(5) {
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    width: min(100%, 174px) !important;
  }

  .sol-logo-item img {
    max-width: 128px !important;
    max-height: 46px !important;
    object-fit: contain !important;
  }

  .sol-logo-item--text span {
    font-size: 18px !important;
  }

  .sol-cases-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .sol-case-card {
    min-height: auto !important;
    padding: 24px 20px !important;
    border-radius: 22px !important;
  }

  .sol-case-card .sol-case-tag {
    margin-bottom: 14px !important;
  }

  .sol-case-card .sol-case-brand {
    width: 100% !important;
    min-height: 52px !important;
    margin: 0 0 14px 0 !important;
    justify-content: flex-start !important;
  }

  .sol-case-card .sol-case-brand img {
    max-width: 170px !important;
    max-height: 54px !important;
  }

  .sol-case-card .sol-case-brand--text span,
  .sol-case-card .sol-case-brand--text a,
  .sol-case-brand--text span {
    font-size: 28px !important;
    line-height: 1.08 !important;
  }

  .sol-cta-block {
    padding: 40px 22px !important;
    border-radius: 30px !important;
  }

  .sol-cta-eyebrow {
    font-size: 14px !important;
    letter-spacing: .14em !important;
  }

  .sol-footer__inner {
    gap: 26px !important;
  }
}

/* Celulares bem estreitos */
@media (max-width: 380px) {
  .sol-header__logo img {
    height: 38px !important;
    max-width: 178px !important;
  }

  .sol-hero h1 {
    font-size: clamp(2rem, 10.5vw, 2.55rem) !important;
  }

  .sol-hero__stats-line,
  .sol-hero__logos,
  .sol-logos-strip {
    grid-template-columns: 1fr !important;
  }

  .sol-hero__logo-card:nth-child(5),
  .sol-logo-item:nth-child(5) {
    grid-column: auto !important;
    width: 100% !important;
  }

  .sol-btn,
  .sol-cta-block .sol-btn {
    font-size: 14px !important;
    padding-inline: 12px !important;
  }
}
/* =========================================================
   FIM - REVISÃO RESPONSIVA FINAL / MOBILE-FIRST
   ========================================================= */


/* =========================================================
   INÍCIO - AJUSTES SOL CLIENTE 10/07/2026
   ========================================================= */
.sol-section-head {
  margin-bottom: 30px;
}
.sol-section-label--centered {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin-bottom: 0;
  text-align: center;
  font-size: clamp(18px, 1.9vw, 26px);
  letter-spacing: .18em;
}
.sol-section-label--centered::before,
.sol-section-label--centered::after {
  content: '';
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}
.sol-section-label--centered::before {
  background: linear-gradient(90deg, transparent, currentColor);
}
.sol-section-label--centered::after {
  background: linear-gradient(90deg, currentColor, transparent);
}
.sol-hero__proof-title {
  letter-spacing: .16em;
}
.sol-hero__stat-pill--wide {
  min-width: 360px;
}
.sol-hero__stat-pill--wide span {
  max-width: 260px;
}
.sol-hero__logo-card--wide {
  min-width: 190px;
}
.sol-hero__logo-card--wide img {
  max-width: 170px;
  max-height: 36px;
}

.sol-traj-grid--updated {
  align-items: start;
}
.sol-traj-photo {
  position: relative;
  padding-right: 44px;
}
.sol-photo-frame--portrait {
  min-height: 740px;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,238,250,.96));
}
.sol-photo-frame--portrait img {
  width: 100%;
  max-width: 630px;
  margin: 0 auto;
  object-fit: contain;
  filter: none;
}
.sol-photo-frame__orb {
  position: absolute;
  inset: auto auto 0 -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,169,241,.26) 0%, rgba(226,169,241,.14) 45%, transparent 70%);
}
.sol-photo-badge--light {
  right: 12px;
  bottom: -22px;
  color: var(--sol-text);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(123,47,168,.14);
  box-shadow: 0 22px 56px rgba(55,25,70,.12);
}
.sol-photo-badge--light strong {
  color: #9d51bd;
}
.sol-traj-intro {
  margin-top: 18px;
}
.sol-timeline__title {
  color: var(--sol-text);
}
.sol-timeline__text {
  color: rgba(36,20,44,.66);
}

.sol-consultoria-top--single {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 42px;
}
.sol-consultoria-top--single .sol-text {
  max-width: 760px;
  margin: 0 auto;
}

.sol-logo-item--wide {
  min-width: 240px;
}
.sol-logo-item--wide img {
  max-width: 200px;
  max-height: 48px;
}
.sol-cases-grid--expanded {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.sol-case-card--expanded {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px 30px 28px;
}
.sol-case-brand--center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 92px;
  margin-bottom: 18px;
}
.sol-case-brand--center img {
  max-width: 230px;
  max-height: 86px;
  object-fit: contain;
}
.sol-case-brand--wide img {
  max-width: 300px;
  max-height: 92px;
}
.sol-case-headline {
  color: var(--sol-text);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.28;
  font-weight: 800;
  margin: 0 0 12px;
  text-align: center;
}
.sol-case-card--expanded .sol-case-result {
  text-align: center;
  font-size: 1.18rem;
  margin-bottom: 12px;
}
.sol-case-card--expanded .sol-case-desc {
  font-size: 17px;
  line-height: 1.72;
  text-align: center;
  margin-bottom: 18px;
}
.sol-case-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}
.sol-case-metric {
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(123,47,168,.05);
  border: 1px solid rgba(123,47,168,.12);
}
.sol-case-metric strong {
  display: block;
  color: #9d51bd;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.sol-case-metric span {
  display: block;
  color: rgba(36,20,44,.70);
  font-size: 15px;
  line-height: 1.45;
}
.sol-case-list {
  margin: 6px 0 0;
  padding-left: 18px;
  color: rgba(36,20,44,.72);
  display: grid;
  gap: 10px;
}
.sol-case-list li {
  line-height: 1.58;
}
.sol-case-list strong {
  color: var(--sol-text);
}
.sol-case-region {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(123,47,168,.04);
  border: 1px solid rgba(123,47,168,.12);
  color: rgba(36,20,44,.80);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.sol-case-footer {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #9d51bd, #6f2491);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
.sol-faq-grid {
  align-items: start;
}
.sol-cta-block {
  text-align: center;
}
.sol-cta-desc {
  max-width: 760px;
  margin: 18px auto 0;
}
.sol-cta-block .sol-btn {
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .sol-cases-grid--expanded {
    grid-template-columns: 1fr;
  }
  .sol-photo-frame--portrait {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .sol-section-head {
    margin-bottom: 22px;
  }
  .sol-section-label--centered {
    font-size: 16px;
    gap: 12px;
  }
  .sol-section-label--centered::before,
  .sol-section-label--centered::after {
    width: 28px;
  }
  .sol-hero__stat-pill--wide {
    min-width: 290px;
  }
  .sol-hero__stat-pill--wide span {
    max-width: 195px;
  }
  .sol-photo-frame--portrait img {
    max-width: 100%;
  }
  .sol-photo-badge--light {
    position: static;
    margin-top: 16px;
  }
  .sol-traj-photo {
    padding-right: 0;
  }
  .sol-case-card--expanded {
    padding: 24px 20px 22px;
  }
  .sol-case-brand--center img {
    max-width: 190px;
    max-height: 72px;
  }
  .sol-case-brand--wide img {
    max-width: 240px;
  }
  .sol-case-metrics {
    grid-template-columns: 1fr;
  }
  .sol-logo-item--wide {
    min-width: 100%;
  }
}
/* =========================================================
   FIM - AJUSTES SOL CLIENTE 10/07/2026
   ========================================================= */











/* =========================================================
   INÍCIO - HERO MATCH REFERÊNCIA V2
   ========================================================= */
.sol-hero {
  min-height: auto;
  padding: 38px 0 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 8%, rgba(221,192,242,.34) 0%, rgba(221,192,242,0) 27%),
    radial-gradient(circle at 83% 82%, rgba(199,183,242,.16) 0%, rgba(199,183,242,0) 27%),
    linear-gradient(180deg, #faf8fc 0%, #f3eef8 100%);
}
.sol-hero::before,
.sol-hero::after { content:none; }
.sol-hero__inner {
  display:grid;
  grid-template-columns:minmax(0, 44%) minmax(0, 56%);
  gap:28px;
  align-items:center;
}
.sol-hero__content {
  max-width:440px;
  position:relative;
  z-index:3;
}
.sol-hero__badge {
  margin:0 0 18px;
  padding:9px 16px;
  border:1px solid rgba(153,112,226,.18);
  border-radius:999px;
  background:rgba(153,112,226,.08);
  color:#996fe6;
  font-size:10px;
  font-weight:800;
  letter-spacing:.17em;
  box-shadow:none;
}
.sol-hero__badge::before {
  width:6px;
  height:6px;
  background:#a176eb;
  box-shadow:0 0 0 6px rgba(161,118,235,.11);
}
.sol-hero h1 {
  margin:0;
  color:#1d1624;
  font-family:'Playfair Display', Georgia, serif;
  font-size:clamp(3.15rem, 5.85vw, 5.1rem);
  line-height:.91;
  letter-spacing:-.055em;
}
.sol-hero h1 > span {
  display:block;
  white-space:nowrap;
}
.sol-hero h1 em {
  display:inline;
  font-style:normal;
  background:linear-gradient(90deg,#764fd8 0%,#a471e8 55%,#ce79d8 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:none;
}
.sol-hero__desc {
  max-width:410px;
  margin-top:18px;
  color:#766e7f;
  font-size:.98rem;
  font-weight:400;
  line-height:1.72;
}
.sol-hero__ctas {
  display:flex;
  flex-wrap:nowrap;
  gap:15px;
  margin-top:26px;
}
.sol-hero .sol-btn {
  min-height:45px;
  padding:12px 20px;
  border-radius:999px;
  font-size:13px;
}
.sol-hero .sol-btn--primary {
  color:#fff;
  background:linear-gradient(90deg,#7c52db 0%,#9e75ea 100%);
  box-shadow:0 13px 26px rgba(123,82,219,.16);
}
.sol-hero .sol-btn--secondary {
  color:#2b2231;
  background:rgba(255,255,255,.76);
  border-color:rgba(99,66,149,.12);
}
.sol-hero__stats-line {
  display:grid;
  grid-template-columns:1.22fr .92fr .98fr;
  gap:12px;
  margin-top:24px;
  overflow:visible;
}
.sol-hero__stat-pill,
.sol-hero__stat-pill--wide {
  width:auto;
  min-width:0;
  min-height:62px;
  padding:13px 14px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(255,255,255,.94);
  box-shadow:0 14px 29px rgba(91,64,138,.07);
  color:#716879;
  font-size:.87rem;
  line-height:1.16;
  text-align:left;
}
.sol-hero__stat-pill strong {
  color:#a56fe8;
  font-family:'Playfair Display', Georgia, serif;
  font-size:1.85rem;
  line-height:1;
  flex:0 0 auto;
}
.sol-hero__stat-pill span { display:block; }
.sol-hero__proof {
  margin-top:20px;
  padding-top:17px;
  border-top:1px solid rgba(41,25,61,.08);
}
.sol-hero__proof-title {
  margin-bottom:13px;
  color:#766d81;
  font-size:.84rem;
  font-weight:700;
  letter-spacing:.17em;
}
.sol-hero__logos {
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:9px;
  overflow:visible;
}
.sol-hero__logo-card {
  width:100%;
  min-width:0;
  min-height:56px;
  padding:7px 8px;
  border-radius:12px;
  border:1px solid rgba(115,75,214,.08);
  background:rgba(255,255,255,.94);
  box-shadow:0 12px 24px rgba(91,64,138,.06);
}
.sol-hero__logo-card img {
  max-width:64px;
  max-height:30px;
}
.sol-hero__visual {
  position:relative;
  min-height:590px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
  overflow:hidden;
  isolation:isolate;
}
.sol-hero__visual::before {
  content:'';
  position:absolute;
  width:410px;
  height:410px;
  left:4%;
  top:27%;
  border-radius:50%;
  background:radial-gradient(circle,rgba(179,142,242,.58) 0%,rgba(179,142,242,.23) 43%,rgba(179,142,242,0) 73%);
  filter:blur(16px);
  z-index:0;
}
.sol-hero__visual::after {
  content:'';
  position:absolute;
  right:0;
  top:0;
  width:540px;
  height:590px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.43);
  z-index:0;
}
.sol-hero__photo-shape {
  position:absolute;
  inset:92px 0 12px 12%;
  border-radius:45% 55% 42% 58% / 35% 34% 66% 65%;
  background:linear-gradient(180deg,rgba(242,230,249,.93) 0%,rgba(231,213,247,.96) 100%);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.40);
  filter:none;
  opacity:1;
  z-index:1;
}
.sol-hero__photo-shape::before {
  content:'';
  position:absolute;
  inset:2% 4% 6% 5%;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.23);
}
.sol-hero__photo-frame {
  position:relative;
  z-index:2;
  width:100%;
  max-width:580px;
  display:flex;
  align-items:flex-end;
  justify-content:flex-end;
}
.sol-hero__photo {
  display:block;
  width:min(100%, 500px);
  height:auto;
  object-fit:contain;
  object-position:center bottom;
  transform:translate(22px, 0);
  filter:drop-shadow(0 18px 24px rgba(88,57,138,.09));
}
.sol-hero__floating-card {
  position:absolute;
  z-index:3;
  left:6%;
  bottom:18%;
  width:176px;
  padding:16px 16px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.93);
  border:1px solid rgba(255,255,255,.93);
  backdrop-filter:blur(10px);
  box-shadow:0 18px 36px rgba(91,64,138,.10);
}
.sol-hero__floating-card span {
  color:#a46ee8;
  font-family:'Playfair Display', Georgia, serif;
  font-size:1.95rem;
  line-height:1;
}
.sol-hero__floating-card p {
  margin-top:6px;
  color:#766d80;
  font-size:.92rem;
  line-height:1.38;
}
@media (max-width:900px) {
  .sol-hero__inner { grid-template-columns:minmax(0,46%) minmax(0,54%); gap:18px; }
  .sol-hero__content { max-width:100%; }
  .sol-hero h1 { font-size:clamp(3rem,5.9vw,4.1rem); }
  .sol-hero__desc { font-size:.9rem; line-height:1.68; }
  .sol-hero .sol-btn { padding-inline:16px; font-size:12px; }
  .sol-hero__stat-pill,.sol-hero__stat-pill--wide { padding:11px 10px; font-size:.76rem; }
  .sol-hero__stat-pill strong { font-size:1.55rem; }
  .sol-hero__visual { min-height:540px; }
  .sol-hero__photo { width:min(100%,450px); }
  .sol-hero__floating-card { left:2%; }
}
@media (max-width:760px) {
  .sol-hero { padding:28px 0 40px; }
  .sol-hero__inner { grid-template-columns:1fr; gap:20px; }
  .sol-hero__visual { order:1; min-height:390px; }
  .sol-hero__content { order:2; }
  .sol-hero h1 { font-size:clamp(2.9rem,12vw,3.7rem); }
  .sol-hero__desc { max-width:100%; font-size:.98rem; }
  .sol-hero__ctas { flex-wrap:wrap; }
  .sol-hero__ctas .sol-btn { width:100%; }
  .sol-hero__stats-line { grid-template-columns:1fr; }
  .sol-hero__proof-title { font-size:.78rem; }
  .sol-hero__logos { grid-template-columns:repeat(3,1fr); }
  .sol-hero__photo-shape { inset:52px 8% 14px 8%; }
  .sol-hero__visual::after { width:330px; height:380px; right:4%; }
  .sol-hero__visual::before { width:230px; height:230px; left:5%; top:23%; }
  .sol-hero__photo { width:min(100%,320px); transform:translate(8px,0); }
  .sol-hero__floating-card { left:4px; bottom:7px; width:148px; padding:13px; }
}
/* =========================================================
   FIM - HERO MATCH REFERÊNCIA V2
   ========================================================= */


/* =========================================================
   INÍCIO - AJUSTES TÍTULOS DE SEÇÃO + FOTO TRAJETÓRIA
   ========================================================= */
.sol-section-head {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}
.sol-section-label,
.sol-section-label--centered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  margin: 0 auto;
  padding: 13px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(164,122,233,.20);
  color: #864fd8;
  font-size: clamp(12px, 1.25vw, 14px);
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(130,85,186,.07);
  text-align: center;
}
.sol-section-label::before,
.sol-section-label--centered::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a76fea;
  box-shadow: 0 0 0 5px rgba(167,111,234,.12);
}
.sol-section-label::after,
.sol-section-label--centered::after {
  content: none !important;
  display: none !important;
}

.sol-traj-grid--updated {
  grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr);
  gap: clamp(38px, 6vw, 78px);
  align-items: start;
}
.sol-traj-photo {
  position: relative;
  padding-right: 20px;
  padding-bottom: 18px;
}
.sol-photo-frame--portrait {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 690px;
  padding: 22px 18px 0;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, #f7f2fb 0%, #f1ebf7 100%);
  border: 1px solid rgba(170,129,231,.18);
  box-shadow: 0 18px 42px rgba(98,63,145,.07);
}
.sol-photo-frame--portrait::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  left: -90px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,177,239,.34) 0%, rgba(214,177,239,.16) 48%, rgba(214,177,239,0) 72%);
  z-index: 0;
}
.sol-photo-frame--portrait::after {
  content: '';
  position: absolute;
  inset: auto -30px -40px auto;
  width: 240px;
  height: 170px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(215,184,242,.22), rgba(232,220,247,.50));
  transform: rotate(-14deg);
  z-index: 0;
}
.sol-photo-frame__orb {
  display: none;
}
.sol-photo-frame--portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 118%;
  max-width: none;
  margin: 0 0 0 -26px;
  object-fit: contain;
  object-position: left bottom;
  filter: none;
}
.sol-photo-badge {
  font-size: 13px;
  line-height: 1.28;
}
.sol-photo-badge--light {
  right: -6px;
  bottom: -4px;
  min-width: 168px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  color: #6a6176;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(165,123,232,.14);
  box-shadow: 0 18px 40px rgba(73,39,98,.12);
}
.sol-photo-badge--light strong {
  display: block;
  margin-bottom: 2px;
  color: #a66fea;
  font-size: 32px;
  line-height: .95;
}

@media (max-width: 1100px) {
  .sol-traj-grid--updated {
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 34px;
  }
  .sol-photo-frame--portrait {
    min-height: 620px;
  }
  .sol-photo-frame--portrait img {
    width: 122%;
    margin-left: -30px;
  }
}

@media (max-width: 767px) {
  .sol-section-head {
    margin-bottom: 20px;
  }
  .sol-section-label,
  .sol-section-label--centered {
    font-size: 11px;
    padding: 12px 18px;
    letter-spacing: .16em;
  }
  .sol-traj-grid--updated {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sol-traj-photo {
    padding-right: 0;
    padding-bottom: 0;
  }
  .sol-photo-frame--portrait {
    min-height: 540px;
    padding: 16px 12px 0;
    border-radius: 24px;
  }
  .sol-photo-frame--portrait::before {
    width: 230px;
    height: 230px;
    left: -70px;
    bottom: -55px;
  }
  .sol-photo-frame--portrait::after {
    width: 170px;
    height: 120px;
    right: -30px;
    bottom: -20px;
  }
  .sol-photo-frame--portrait img {
    width: 126%;
    margin-left: -28px;
  }
  .sol-photo-badge--light {
    position: absolute;
    right: 12px;
    bottom: 12px;
    min-width: 154px;
    margin-top: 0;
    padding: 14px 15px 13px;
  }
  .sol-photo-badge--light strong {
    font-size: 28px;
  }
}
/* =========================================================
   FIM - AJUSTES TÍTULOS DE SEÇÃO + FOTO TRAJETÓRIA
   ========================================================= */


/* =========================================================
   INÍCIO - HOTFIX BADGE TRAJETÓRIA
   ========================================================= */
.sol-traj-photo {
  overflow: visible;
}
.sol-photo-frame--portrait {
  position: relative;
  z-index: 1;
}
.sol-photo-frame--portrait img {
  position: relative;
  z-index: 1;
}
.sol-photo-badge,
.sol-photo-badge--light {
  position: absolute;
  z-index: 6;
}
.sol-photo-badge--light {
  right: -22px;
  bottom: -18px;
}
@media (max-width: 767px) {
  .sol-photo-badge--light {
    right: 12px;
    bottom: 12px;
  }
}
/* =========================================================
   FIM - HOTFIX BADGE TRAJETÓRIA
   ========================================================= */


/* =========================================================
   INÍCIO - CASES V3 (ajustes jul/2026 – layout artes)
   ========================================================= */

/* Grid 2 colunas, 3 linhas → 6 cards */
.sol-cases-grid--v3 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  margin-top: 0;
}

/* Card base v3 */
.sol-case-card--v3 {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(123,47,168,.13);
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 44px rgba(55,25,70,.07);
  transition: transform .28s ease, box-shadow .28s ease;
}
.sol-case-card--v3:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(55,25,70,.12);
}

/* Tag */
.sol-case-card--v3 .sol-case-tag {
  align-self: flex-start;
  margin-bottom: 18px;
}

/* Logo centralizada e GRANDE */
.sol-case-brand-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  margin-bottom: 18px;
  padding: 14px 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(123,47,168,.07);
}
.sol-case-brand-logo {
  display: block;
  max-width: 220px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sol-case-brand-logo--wide {
  max-width: 280px;
  max-height: 88px;
}

/* Headline, result, desc */
.sol-case-card--v3 .sol-case-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  font-weight: 800;
  line-height: 1.26;
  color: #24142c;
  margin-bottom: 8px;
  text-align: center;
}
.sol-case-card--v3 .sol-case-result {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  color: #9d51bd;
  margin-bottom: 10px;
}
.sol-case-card--v3 .sol-case-desc {
  font-size: 15px;
  color: rgba(36,20,44,.62);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 18px;
}

/* Metrics grid 2×N */
.sol-case-card--v3 .sol-case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
  margin-bottom: 14px;
}
.sol-case-card--v3 .sol-case-metric {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(123,47,168,.05);
  border: 1px solid rgba(123,47,168,.10);
  text-align: left;
}
.sol-case-card--v3 .sol-case-metric strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #9d51bd;
  margin-bottom: 3px;
  line-height: 1.2;
}
.sol-case-card--v3 .sol-case-metric span {
  font-size: 13px;
  color: rgba(36,20,44,.65);
  line-height: 1.4;
}
/* Metric ocupa linha inteira */
.sol-case-card--v3 .sol-case-metric--full {
  grid-column: 1 / -1;
}
/* Metric destaque (big number) */
.sol-case-card--v3 .sol-case-metric--highlight {
  background: linear-gradient(135deg, rgba(157,81,189,.12), rgba(157,81,189,.07));
  border-color: rgba(157,81,189,.22);
  grid-column: 1 / -1;
  text-align: center;
}
.sol-case-card--v3 .sol-case-metric--highlight strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  color: #864fd8;
}

/* Region pill */
.sol-case-card--v3 .sol-case-region {
  margin: 6px 0 14px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(123,47,168,.04);
  border: 1px solid rgba(123,47,168,.10);
  color: rgba(36,20,44,.74);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/* Footer roxo */
.sol-case-card--v3 .sol-case-footer {
  margin-top: auto;
  padding: 13px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #9d51bd, #6f2491);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

/* Header clientes centralizado */
.sol-clientes-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}
.sol-clientes-header .sol-section-label {
  margin: 0 auto 20px;
}
.sol-clientes-header .sol-title {
  margin-bottom: 10px;
}

/* Logos strip: 6 logos em linha */
.sol-logos-strip {
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
}
.sol-logo-item {
  min-width: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .sol-cases-grid--v3 { grid-template-columns: 1fr; }
  .sol-logos-strip { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .sol-case-card--v3 { padding: 22px 18px 20px; }
  .sol-case-brand-logo { max-width: 180px; max-height: 66px; }
  .sol-case-brand-logo--wide { max-width: 220px; max-height: 72px; }
  .sol-logos-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sol-case-card--v3 .sol-case-metric--highlight strong { font-size: 1.45rem; }
}
/* =========================================================
   FIM - CASES V3
   ========================================================= */


/* =========================================================
   INÍCIO - HERO STAT-PILL WIDE CORREÇÃO v3
   ========================================================= */
/* Pill larga com texto novo: "11+ anos atuando em estratégias..." */
.sol-hero__stat-pill--wide {
  min-width: 0;
  flex: 1.4;
}
.sol-hero__stat-pill--wide span {
  max-width: none;
  font-size: .82rem;
  line-height: 1.3;
}
/* Logo grid com 6 itens */
.sol-hero__logos {
  grid-template-columns: repeat(6, minmax(0,1fr)) !important;
}
.sol-hero__logo-card img {
  max-width: 58px !important;
  max-height: 26px !important;
}
.sol-hero__logo-card--wide img {
  max-width: 70px !important;
  max-height: 32px !important;
}
@media (max-width: 900px) {
  .sol-hero__logos {
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  }
}
@media (max-width: 620px) {
  .sol-hero__logos {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }
  .sol-hero__logo-card:nth-child(5),
  .sol-hero__logo-card:nth-child(6) {
    grid-column: auto !important;
    width: 100% !important;
  }
}
/* =========================================================
   FIM - HERO STAT-PILL WIDE CORREÇÃO v3
   ========================================================= */

/* =========================================================
   HERO FINAL — REFERÊNCIA APROVADA PELA CLIENTE (JUL/2026)
   Mantido ao final do arquivo para neutralizar versões antigas.
   ========================================================= */
.sol-hero {
  position: relative;
  min-height: 0;
  padding: 34px 0 32px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 44% 74% at 94% 50%, rgba(211, 164, 235, .42) 0%, rgba(218, 180, 239, .25) 42%, rgba(245, 234, 250, 0) 76%),
    radial-gradient(ellipse 36% 50% at 72% 8%, rgba(255, 255, 255, .88) 0%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(ellipse 34% 42% at 14% 82%, rgba(255, 255, 255, .78) 0%, rgba(255, 255, 255, 0) 75%),
    linear-gradient(112deg, #fbf8fc 0%, #f9f5fb 48%, #f0ddf7 100%);
}

.sol-hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  width: clamp(520px, 55vw, 900px);
  height: clamp(520px, 55vw, 900px);
  right: -25%;
  top: -28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 137, 228, .18) 0%, rgba(216, 177, 237, .08) 52%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.sol-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: min(58vw, 860px);
  height: min(68vw, 920px);
  right: -16%;
  top: 4%;
  background: linear-gradient(145deg, rgba(233, 207, 247, .05), rgba(203, 151, 231, .26));
  clip-path: polygon(46% 0, 100% 18%, 100% 100%, 8% 72%);
  opacity: .72;
  pointer-events: none;
}

.sol-hero .sol-shell {
  width: min(1240px, calc(100% - 48px));
}

.sol-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 50.5%) minmax(0, 49.5%);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.sol-hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 590px;
}

.sol-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 7px 15px;
  border: 1px solid rgba(145, 83, 207, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .46);
  color: #8f48bf;
  box-shadow: 0 8px 22px rgba(106, 54, 139, .04);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sol-hero__badge::before {
  width: 6px;
  height: 6px;
  background: #a258d0;
  box-shadow: none;
}

.sol-hero h1 {
  max-width: 590px;
  margin: 0;
  color: #211529;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.25rem, 5.45vw, 5rem);
  font-weight: 700;
  line-height: .93;
  letter-spacing: -.055em;
}

.sol-hero h1 > span {
  display: block;
  white-space: nowrap;
}

.sol-hero h1 em {
  display: inline;
  color: #9745c0;
  background: linear-gradient(90deg, #8d43bb 0%, #ae5fd0 62%, #bd73d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  font-style: normal;
}

.sol-hero__desc {
  max-width: 555px;
  margin-top: 17px;
  color: #786e7d;
  font-size: clamp(.83rem, 1.02vw, .96rem);
  font-weight: 400;
  line-height: 1.62;
}

.sol-hero__ctas {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.sol-hero .sol-btn {
  min-height: 44px;
  padding: 12px 23px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.sol-hero .sol-btn--primary {
  min-width: 230px;
  color: #fff;
  border: 0;
  background: linear-gradient(100deg, #a44fc8 0%, #7d27ad 100%);
  box-shadow: 0 13px 27px rgba(126, 42, 171, .20);
}

.sol-hero .sol-btn--secondary {
  min-width: 174px;
  color: #271b2d;
  border: 1px solid rgba(113, 72, 134, .14);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 24px rgba(83, 49, 102, .04);
}

.sol-hero__stats-line {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1.08fr;
  gap: 12px;
  margin-top: 24px;
  overflow: visible;
}

.sol-hero__stat-pill,
.sol-hero__stat-pill--wide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 0;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 22px;
  background: rgba(255, 255, 255, .73);
  color: #716677;
  box-shadow: 0 14px 29px rgba(88, 53, 108, .07);
  font-size: clamp(.72rem, .88vw, .84rem);
  line-height: 1.18;
  text-align: left;
}

.sol-hero__stat-pill strong {
  flex: 0 0 auto;
  color: #9d50c5;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.35rem, 1.75vw, 1.7rem);
  line-height: 1;
}

.sol-hero__stat-pill span {
  display: block;
}

.sol-hero__proof {
  margin-top: 20px;
  padding-top: 17px;
  border-top: 0;
}

.sol-hero__proof-title {
  margin: 0 0 13px;
  color: #746879;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.sol-hero__logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  overflow: visible;
}

.sol-hero__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 7px 8px;
  border: 1px solid rgba(124, 72, 147, .06);
  border-radius: 12px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 25px rgba(84, 47, 103, .06);
}

.sol-hero__logo-card img {
  display: block;
  width: auto;
  max-width: 76px;
  max-height: 31px;
  object-fit: contain;
}

.sol-hero__visual {
  position: relative;
  min-height: clamp(530px, 46vw, 590px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
}

.sol-hero__visual::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: 9% -12% 0 3%;
  background:
    radial-gradient(ellipse at 48% 68%, rgba(177, 105, 214, .21) 0%, rgba(194, 136, 224, .10) 46%, transparent 72%),
    linear-gradient(145deg, rgba(235, 211, 247, .14), rgba(196, 133, 228, .20));
  clip-path: polygon(42% 0, 100% 15%, 100% 100%, 0 77%);
  opacity: .82;
  pointer-events: none;
}

.sol-hero__visual::after {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 1% 4% 0 7%;
  border: 1.25px solid rgba(255, 255, 255, .68);
  border-radius: 50% 50% 47% 53% / 41% 43% 57% 59%;
  transform: rotate(2deg);
  pointer-events: none;
}

.sol-hero__photo-shape {
  position: absolute;
  z-index: -1;
  inset: 10% 5% 0 6%;
  border-radius: 50% 50% 47% 53% / 39% 42% 58% 61%;
  background:
    radial-gradient(circle at 52% 31%, rgba(255, 255, 255, .36) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(245, 229, 250, .92) 0%, rgba(226, 195, 242, .92) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .36),
    0 22px 60px rgba(139, 73, 170, .08);
  filter: none;
  opacity: 1;
}

.sol-hero__photo-shape::before {
  content: '';
  position: absolute;
  inset: 2.5% 3% 4% 4%;
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: inherit;
  background: transparent;
}

.sol-hero__photo-frame {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  pointer-events: none;
}

.sol-hero__photo {
  display: block;
  width: min(92%, 520px);
  height: auto;
  max-height: none;
  margin-right: 0;
  object-fit: contain;
  object-position: right bottom;
  transform: translate(1.5%, 1.5%);
  filter: drop-shadow(0 21px 29px rgba(81, 45, 95, .13));
}

.sol-hero__floating-card {
  position: absolute;
  z-index: 4;
  left: 7%;
  bottom: 18%;
  width: min(184px, 38%);
  padding: 15px 15px 14px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 17px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
  box-shadow: 0 17px 38px rgba(82, 48, 100, .13);
}

.sol-hero__floating-card span {
  display: block;
  color: #a456c6;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.sol-hero__floating-card p {
  margin-top: 7px;
  color: #776c7b;
  font-size: .82rem;
  line-height: 1.42;
}

@media (max-width: 1080px) {
  .sol-hero .sol-shell {
    width: min(100%, calc(100% - 36px));
  }

  .sol-hero__inner {
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
    gap: 14px;
  }

  .sol-hero h1 {
    font-size: clamp(3rem, 5.7vw, 4.2rem);
  }

  .sol-hero__desc {
    font-size: .83rem;
  }

  .sol-hero .sol-btn {
    padding-inline: 16px;
    font-size: 11px;
  }

  .sol-hero .sol-btn--primary {
    min-width: 205px;
  }

  .sol-hero .sol-btn--secondary {
    min-width: 154px;
  }

  .sol-hero__stat-pill,
  .sol-hero__stat-pill--wide {
    padding-inline: 9px;
    font-size: .69rem;
  }

  .sol-hero__visual {
    min-height: 530px;
  }

  .sol-hero__photo {
    width: min(94%, 470px);
  }
}

@media (max-width: 820px) {
  .sol-hero {
    padding: 28px 0 44px;
  }

  .sol-hero__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sol-hero__content {
    order: 1;
    max-width: 640px;
    margin-inline: auto;
  }

  .sol-hero__visual {
    order: 2;
    min-height: 520px;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .sol-hero h1 {
    font-size: clamp(3.1rem, 9.2vw, 4.6rem);
  }

  .sol-hero__desc {
    max-width: 600px;
    font-size: .95rem;
  }

  .sol-hero__photo {
    width: min(92%, 470px);
  }
}

@media (max-width: 560px) {
  .sol-hero .sol-shell {
    width: min(100%, calc(100% - 28px));
  }

  .sol-hero__badge {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .sol-hero h1 {
    font-size: clamp(2.7rem, 13.2vw, 3.65rem);
    line-height: .94;
  }

  .sol-hero h1 > span {
    white-space: normal;
  }

  .sol-hero__ctas {
    flex-wrap: wrap;
    gap: 10px;
  }

  .sol-hero__ctas .sol-btn,
  .sol-hero .sol-btn--primary,
  .sol-hero .sol-btn--secondary {
    width: 100%;
    min-width: 0;
  }

  .sol-hero__stats-line {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .sol-hero__stat-pill,
  .sol-hero__stat-pill--wide {
    justify-content: flex-start;
    min-height: 54px;
    padding-inline: 18px;
    font-size: .82rem;
  }

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

  .sol-hero__logo-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .sol-hero__visual {
    min-height: 400px;
  }

  .sol-hero__photo-shape {
    inset: 8% 5% 0 5%;
  }

  .sol-hero__visual::after {
    inset: 0 3% 0 5%;
  }

  .sol-hero__photo {
    width: min(96%, 365px);
    transform: translate(1%, 1.5%);
  }

  .sol-hero__floating-card {
    left: 2%;
    bottom: 8%;
    width: 154px;
    padding: 13px;
  }
}
/* =========================================================
   FIM — HERO FINAL
   ========================================================= */

/* =========================================================
   NORMALIZAÇÃO FINAL DO HERO
   O tema recebeu versões antigas com !important; estas regras
   garantem que a composição final prevaleça em todos os desktops.
   ========================================================= */
.sol-hero__stats-line {
  display: grid !important;
  grid-template-columns: 1.08fr 1fr 1.08fr !important;
  flex-wrap: initial !important;
  overflow: visible !important;
}

.sol-hero__stat-pill,
.sol-hero__stat-pill--wide {
  flex: 0 1 auto !important;
  min-width: 0 !important;
}

.sol-hero__stat-pill--wide span {
  max-width: none !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.sol-hero__logos {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.sol-hero__logo-card {
  min-height: 56px !important;
}

.sol-hero__logo-card img {
  max-width: 76px !important;
  max-height: 31px !important;
}

/* Ajuste proporcional para o formato da referência (desktop compacto). */
@media (min-width: 821px) and (max-width: 1080px) {
  .sol-hero {
    padding: 9px 0 31px !important;
  }

  .sol-hero .sol-shell {
    width: calc(100% - 120px) !important;
    max-width: 900px;
  }

  .sol-hero__inner {
    grid-template-columns: 440px minmax(0, 1fr) !important;
    gap: 20px !important;
    align-items: start !important;
  }

  .sol-hero__content {
    max-width: 440px !important;
  }

  .sol-hero__badge {
    height: 20px;
    margin-bottom: 20px !important;
    padding: 5px 12px !important;
    gap: 7px !important;
    font-size: 8px !important;
    letter-spacing: .13em !important;
  }

  .sol-hero__badge::before {
    width: 5px;
    height: 5px;
  }

  .sol-hero h1 {
    width: 440px;
    max-width: 440px !important;
    font-size: 53.5px !important;
    line-height: .93 !important;
  }

  .sol-hero__desc {
    width: 390px;
    max-width: 390px !important;
    margin-top: 20px !important;
    font-size: 11.2px !important;
    line-height: 1.45 !important;
  }

  .sol-hero__ctas {
    width: 390px;
    gap: 18px !important;
    margin-top: 28px !important;
  }

  .sol-hero .sol-btn {
    min-height: 36px !important;
    height: 36px;
    padding: 9px 18px !important;
    font-size: 10px !important;
  }

  .sol-hero .sol-btn--primary {
    min-width: 202px !important;
  }

  .sol-hero .sol-btn--secondary {
    min-width: 150px !important;
  }

  .sol-hero__stats-line {
    width: 403px;
    grid-template-columns: 1.08fr 1fr 1.08fr !important;
    gap: 10px !important;
    margin-top: 24px !important;
  }

  .sol-hero__stat-pill,
  .sol-hero__stat-pill--wide {
    min-height: 54px !important;
    height: 54px;
    padding: 9px 9px !important;
    border-radius: 21px !important;
    gap: 7px !important;
    font-size: 11px !important;
    line-height: 1.18 !important;
  }

  .sol-hero__stat-pill strong {
    font-size: 22px !important;
  }

  .sol-hero__proof {
    width: 418px;
    margin-top: 40px !important;
    padding-top: 0 !important;
  }

  .sol-hero__proof-title {
    margin-bottom: 10px !important;
    font-size: 11px !important;
    line-height: 12px !important;
  }

  .sol-hero__logos {
    width: 418px;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .sol-hero__logo-card {
    min-height: 56px !important;
    height: 56px;
    padding: 7px !important;
    border-radius: 12px !important;
  }

  .sol-hero__logo-card img {
    max-width: 62px !important;
    max-height: 29px !important;
  }

  .sol-hero__visual {
    min-height: 587px !important;
    height: 587px;
    overflow: visible !important;
  }

  .sol-hero__visual::before {
    inset: 4% -18% 0 -2% !important;
  }

  .sol-hero__visual::after {
    inset: 25px -20px 8px 2px !important;
  }

  .sol-hero__photo-shape {
    inset: 30px -20px 8px 2px !important;
  }

  .sol-hero__photo-frame {
    inset: 0 !important;
    overflow: visible !important;
  }

  .sol-hero__photo {
    position: absolute;
    top: 31px;
    left: 5px;
    width: 395px !important;
    max-width: none !important;
    margin: 0 !important;
    transform: none !important;
  }

  .sol-hero__floating-card {
    left: 14px !important;
    top: 380px;
    bottom: auto !important;
    width: 176px !important;
    padding: 14px !important;
    border-radius: 16px !important;
  }

  .sol-hero__floating-card span {
    font-size: 23px !important;
  }

  .sol-hero__floating-card p {
    margin-top: 6px !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 820px) {
  .sol-hero__stats-line {
    grid-template-columns: 1fr !important;
  }

  .sol-hero__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .sol-hero__logo-card:nth-child(5) {
    grid-column: 1 / -1 !important;
    width: min(100%, 190px) !important;
    justify-self: center;
  }
}
/* =========================================================
   FIM — NORMALIZAÇÃO FINAL DO HERO
   ========================================================= */

@media (min-width: 821px) and (max-width: 1080px) {
  .sol-hero__photo-frame {
    right: -17px !important;
    overflow: hidden !important;
  }
}
@media (min-width: 821px) and (max-width: 1080px) {
  .sol-hero__photo-frame {
    width: calc(100% + 17px) !important;
    max-width: none !important;
  }
}
/* Mantém o recorte PNG visível; o próprio arquivo já possui fundo transparente. */
@media (min-width: 821px) and (max-width: 1080px) {
  .sol-hero__photo-frame {
    right: 0 !important;
    width: 100% !important;
    overflow: visible !important;
  }
}


/* =========================================================
   HERO AJUSTADO FINAL – REFERÊNCIA MOCKUP JUL/2026
   ========================================================= */
body.admin-bar .sol-header {
  top: 32px;
}
body.admin-bar .sol-mobile-menu {
  top: 106px;
}
@media (max-width: 782px) {
  body.admin-bar .sol-header {
    top: 46px;
  }
  body.admin-bar .sol-mobile-menu {
    top: 120px;
  }
}

.sol-hero {
  min-height: auto;
  align-items: stretch;
  padding: 138px 0 72px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,.96), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(221,187,239,.36), transparent 28%),
    linear-gradient(90deg, #fbf8fd 0%, #f8f4fb 42%, #eeddf6 100%);
}
.sol-hero::before {
  background-image: none;
  mask-image: none;
}
.sol-hero::after {
  width: 48vw;
  max-width: 680px;
  min-width: 420px;
  height: auto;
  aspect-ratio: 1 / 1;
  right: -11vw;
  top: 18px;
  border-radius: 48% 52% 0 100% / 35% 35% 0 100%;
  background: linear-gradient(142deg, rgba(221,187,239,.22), rgba(194,145,223,.17));
  filter: none;
  opacity: .95;
}
.sol-hero__inner {
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr);
  gap: clamp(24px, 3.4vw, 48px);
  align-items: center;
}
.sol-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 4px;
}
.sol-hero__badge {
  margin-bottom: 30px;
  padding: 10px 22px;
  background: rgba(255,255,255,.78);
  border-color: rgba(123,47,168,.22);
  box-shadow: 0 10px 24px rgba(102,58,126,.05);
}
.sol-hero h1 {
  max-width: 650px;
  font-size: clamp(3.6rem, 5.55vw, 5.45rem);
  line-height: .90;
  letter-spacing: -.055em;
}
.sol-hero h1 span {
  display: block;
}
.sol-hero__desc {
  max-width: 610px;
  margin-top: 22px;
  font-size: clamp(1.02rem, 1.08vw, 1.12rem);
  line-height: 1.65;
}
.sol-hero__ctas {
  gap: 16px;
  margin-top: 30px;
}
.sol-hero__stats-line {
  gap: 14px;
  margin-top: 30px;
  overflow: visible;
}
.sol-hero__stat-pill {
  gap: 10px;
  padding: 14px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
}
.sol-hero__stat-pill strong {
  font-size: 22px;
}
.sol-hero__proof {
  margin-top: 28px;
  padding-top: 0;
  border-top: 0;
}
.sol-hero__proof-title {
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: .17em;
}
.sol-hero__logos {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 12px !important;
  overflow: visible !important;
  scrollbar-width: none !important;
}
.sol-hero__logo-card {
  min-height: 64px !important;
  padding: 8px 10px !important;
  border-radius: 16px !important;
}
.sol-hero__logo-card img {
  max-width: 100% !important;
  max-height: 34px !important;
}
.sol-hero__logo-card--monobloco img {
  max-height: 28px !important;
}

.sol-hero__visual--refined {
  position: relative;
  min-height: 760px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: visible;
}
.sol-hero__visual--refined::before {
  content: '';
  position: absolute;
  inset: 4px 7% 28px 6%;
  border-radius: 48% 52% 45% 55% / 43% 43% 57% 57%;
  background: linear-gradient(180deg, rgba(243,232,248,.96), rgba(226,205,238,.94));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.sol-hero__visual--refined::after {
  content: '';
  position: absolute;
  inset: -8px 1% 0 0;
  border-radius: 48% 52% 45% 55% / 43% 43% 57% 57%;
  border: 1.5px solid rgba(255,255,255,.6);
  opacity: .95;
}
.sol-hero__photo-shape {
  inset: 58px 4% 18px 10%;
  border-radius: 0;
  background: linear-gradient(145deg, rgba(243,228,249,.74), rgba(224,197,237,.54));
  clip-path: polygon(46% 0, 100% 19%, 100% 83%, 62% 100%, 10% 84%, 0 44%, 22% 14%);
  filter: none;
  opacity: .9;
}
.sol-hero__photo-shape::before {
  top: 92px;
  right: auto;
  left: 22px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.12), rgba(255,255,255,0) 68%);
}
.sol-hero__photo-frame--mockup {
  z-index: 2;
  width: min(100%, 665px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  transform: translateX(74px);
}
.sol-hero__photo {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 16px 26px rgba(94,55,119,.08));
}
.sol-hero__floating-card--mockup {
  left: 24px;
  bottom: 168px;
  width: min(255px, 55%);
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(123,47,168,.14);
  backdrop-filter: none;
  box-shadow: 0 22px 52px rgba(90,56,114,.14);
}
.sol-hero__floating-card--mockup span {
  font-size: 30px;
}
.sol-hero__floating-card--mockup p {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .sol-hero {
    padding-top: 128px;
  }
  .sol-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  }
  .sol-hero h1 {
    font-size: clamp(3.2rem, 5.3vw, 4.85rem);
  }
  .sol-hero__logo-card img {
    max-height: 30px !important;
  }
  .sol-hero__logo-card--monobloco img {
    max-height: 24px !important;
  }
  .sol-hero__visual--refined {
    min-height: 690px;
  }
  .sol-hero__photo-frame--mockup {
    width: min(100%, 600px);
    transform: translateX(48px);
  }
  .sol-hero__floating-card--mockup {
    left: 10px;
    bottom: 152px;
  }
}

@media (max-width: 900px) {
  .sol-hero {
    padding: 124px 0 56px;
    text-align: center;
  }
  .sol-hero__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .sol-hero__content {
    order: 2;
  }
  .sol-hero__visual--refined {
    order: 1;
    min-height: 560px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
  .sol-hero__visual--refined::before {
    inset: 8px 9% 24px 9%;
  }
  .sol-hero__visual--refined::after {
    inset: -4px 4% 0 4%;
  }
  .sol-hero__photo-shape {
    inset: 68px 6% 20px 12%;
  }
  .sol-hero__photo-frame--mockup {
    width: min(100%, 520px);
    justify-content: center;
    transform: none;
  }
  .sol-hero__photo {
    max-width: 520px;
  }
  .sol-hero__floating-card--mockup {
    left: 18px;
    bottom: 72px;
    text-align: left;
  }
  .sol-hero__stats-line {
    justify-content: center;
    flex-wrap: wrap;
  }
  .sol-hero__proof-title {
    text-align: center;
  }
  .sol-hero__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .sol-hero {
    padding-top: 118px;
  }
  .sol-hero__badge {
    margin-bottom: 22px;
    padding: 8px 16px;
    font-size: 11px;
  }
  .sol-hero h1 {
    font-size: clamp(2.7rem, 12.8vw, 3.95rem);
    line-height: .95;
  }
  .sol-hero__desc {
    font-size: 15px;
    line-height: 1.7;
  }
  .sol-hero__ctas .sol-btn {
    width: 100%;
  }
  .sol-hero__stats-line {
    gap: 10px;
  }
  .sol-hero__stat-pill {
    width: calc(50% - 5px);
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    border-radius: 18px;
    min-width: 0;
  }
  .sol-hero__stat-pill--wide,
  .sol-hero__stat-pill:last-child {
    width: 100%;
  }
  .sol-hero__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .sol-hero__logo-card {
    min-height: 60px !important;
  }
  .sol-hero__logo-card img {
    max-height: 28px !important;
  }
  .sol-hero__logo-card--monobloco img {
    max-height: 18px !important;
  }
  .sol-hero__visual--refined {
    min-height: 440px;
  }
  .sol-hero__photo-shape {
    inset: 62px 0 18px 8%;
  }
  .sol-hero__photo-frame--mockup {
    width: min(100%, 390px);
  }
  .sol-hero__floating-card--mockup {
    display: none;
  }
}
/* =========================================================
   FIM - HERO AJUSTADO FINAL – REFERÊNCIA MOCKUP JUL/2026
   ========================================================= */


/* HERO RECORTE FINAL DA SOL – JUL/2026 */
.sol-hero__photo-frame--mockup {
  width: min(100%, 540px);
  transform: translateX(54px);
}
.sol-hero__photo {
  width: auto;
  max-width: 100%;
  max-height: 790px;
}
@media (max-width: 1180px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 500px);
    transform: translateX(34px);
  }
  .sol-hero__photo {
    max-height: 720px;
  }
}
@media (max-width: 900px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 440px);
    transform: none;
  }
  .sol-hero__photo {
    max-height: 560px;
  }
}
@media (max-width: 620px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 350px);
  }
  .sol-hero__photo {
    max-height: 420px;
  }
}
/* FIM - HERO RECORTE FINAL DA SOL – JUL/2026 */


/* HERO ENCAIXE SUAVE DA SOL – JUL/2026 */
.sol-hero__visual--refined {
  min-height: 820px;
}
.sol-hero__visual--refined::before {
  inset: 18px 7% 12px 6%;
}
.sol-hero__visual--refined::after {
  inset: 6px 1% -6px 0;
}
.sol-hero__photo-shape {
  inset: 78px 5% 58px 10%;
  opacity: .78;
}
.sol-hero__photo-frame--mockup {
  width: min(100%, 500px);
  transform: translateX(28px) translateY(8px);
}
.sol-hero__photo {
  width: auto;
  max-width: 100%;
  max-height: 760px;
  filter: drop-shadow(0 18px 28px rgba(94,55,119,.10));
}
.sol-hero__floating-card--mockup {
  left: 14px;
  bottom: 164px;
  width: min(238px, 52%);
  padding: 21px 19px 18px;
  box-shadow: 0 20px 44px rgba(90,56,114,.12);
}
@media (max-width: 1180px) {
  .sol-hero__visual--refined {
    min-height: 760px;
  }
  .sol-hero__photo-shape {
    inset: 74px 4% 44px 10%;
  }
  .sol-hero__photo-frame--mockup {
    width: min(100%, 460px);
    transform: translateX(14px) translateY(12px);
  }
  .sol-hero__photo {
    max-height: 690px;
  }
  .sol-hero__floating-card--mockup {
    bottom: 148px;
    left: 10px;
  }
}
@media (max-width: 900px) {
  .sol-hero__visual--refined {
    min-height: 620px;
  }
  .sol-hero__photo-shape {
    inset: 72px 8% 48px 12%;
  }
  .sol-hero__photo-frame--mockup {
    width: min(100%, 410px);
    transform: translateY(10px);
  }
  .sol-hero__photo {
    max-height: 560px;
  }
  .sol-hero__floating-card--mockup {
    left: 12px;
    bottom: 112px;
    width: 225px;
  }
}
@media (max-width: 620px) {
  .sol-hero__visual--refined {
    min-height: 480px;
  }
  .sol-hero__photo-shape {
    inset: 70px 4% 40px 8%;
  }
  .sol-hero__photo-frame--mockup {
    width: min(100%, 330px);
    transform: translateY(8px);
  }
  .sol-hero__photo {
    max-height: 430px;
  }
}
/* FIM - HERO ENCAIXE SUAVE DA SOL – JUL/2026 */


/* HERO CORTE ABAIXO DO BRAÇO – JUL/2026 */
.sol-hero__photo-frame--mockup {
  width: min(100%, 430px);
  transform: translateX(30px) translateY(14px);
}
.sol-hero__photo {
  max-height: 620px;
}
@media (max-width: 1180px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 395px);
    transform: translateX(18px) translateY(16px);
  }
  .sol-hero__photo {
    max-height: 580px;
  }
}
@media (max-width: 900px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 360px);
    transform: translateY(14px);
  }
  .sol-hero__photo {
    max-height: 500px;
  }
}
@media (max-width: 620px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 300px);
    transform: translateY(10px);
  }
  .sol-hero__photo {
    max-height: 400px;
  }
}
/* FIM - HERO CORTE ABAIXO DO BRAÇO – JUL/2026 */


/* HERO RECORTE MELHORADO DOS BRAÇOS – JUL/2026 */
.sol-hero__photo-frame--mockup {
  width: min(100%, 468px);
  transform: translateX(24px) translateY(-10px);
}
.sol-hero__photo {
  max-height: 660px;
}
.sol-hero__floating-card--mockup {
  bottom: 154px;
}
@media (max-width: 1180px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 430px);
    transform: translateX(14px) translateY(-8px);
  }
  .sol-hero__photo {
    max-height: 620px;
  }
}
@media (max-width: 900px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 388px);
    transform: translateY(-6px);
  }
  .sol-hero__photo {
    max-height: 540px;
  }
  .sol-hero__floating-card--mockup {
    bottom: 104px;
  }
}
@media (max-width: 620px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 325px);
    transform: translateY(-4px);
  }
  .sol-hero__photo {
    max-height: 430px;
  }
}
/* FIM - HERO RECORTE MELHORADO DOS BRAÇOS – JUL/2026 */


/* HERO CORTE ALTO APROVADO – JUL/2026 */
.sol-hero__photo-frame--mockup {
  width: min(100%, 452px);
  transform: translateX(58px) translateY(-42px);
}
.sol-hero__photo {
  max-height: 640px;
}
.sol-hero__floating-card--mockup {
  bottom: 148px;
}
@media (max-width: 1180px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 418px);
    transform: translateX(38px) translateY(-30px);
  }
  .sol-hero__photo {
    max-height: 602px;
  }
}
@media (max-width: 900px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 380px);
    transform: translateX(12px) translateY(-18px);
  }
  .sol-hero__photo {
    max-height: 520px;
  }
  .sol-hero__floating-card--mockup {
    bottom: 98px;
  }
}
@media (max-width: 620px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 318px);
    transform: translateX(8px) translateY(-12px);
  }
  .sol-hero__photo {
    max-height: 410px;
  }
}
/* FIM - HERO CORTE ALTO APROVADO – JUL/2026 */


/* HERO RECORTE FINAL ENVIADO PELA CLIENTE – JUL/2026 */
.sol-hero__photo-frame--mockup {
  width: min(100%, 490px);
  transform: translateX(78px) translateY(-58px);
}
.sol-hero__photo {
  max-height: 700px;
}
.sol-hero__floating-card--mockup {
  bottom: 152px;
}
@media (max-width: 1180px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 448px);
    transform: translateX(52px) translateY(-44px);
  }
  .sol-hero__photo {
    max-height: 650px;
  }
}
@media (max-width: 900px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 400px);
    transform: translateX(18px) translateY(-24px);
  }
  .sol-hero__photo {
    max-height: 560px;
  }
  .sol-hero__floating-card--mockup {
    bottom: 110px;
  }
}
@media (max-width: 620px) {
  .sol-hero__photo-frame--mockup {
    width: min(100%, 330px);
    transform: translateX(10px) translateY(-18px);
  }
  .sol-hero__photo {
    max-height: 450px;
  }
}
/* FIM - HERO RECORTE FINAL ENVIADO PELA CLIENTE – JUL/2026 */


/* =========================================================
   TRAJETÓRIA REFINADA – JUL/2026
   ========================================================= */
#trajetoria {
  position: relative;
  overflow: hidden;
}
#trajetoria::before {
  content: '';
  position: absolute;
  left: -8%;
  top: 140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219,190,241,.18) 0%, rgba(219,190,241,.08) 45%, rgba(219,190,241,0) 72%);
  pointer-events: none;
}
#trajetoria::after {
  content: '';
  position: absolute;
  right: -120px;
  top: 80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(187,154,232,.16);
  pointer-events: none;
}
.sol-traj-grid--updated {
  grid-template-columns: minmax(360px, .98fr) minmax(0, 1.02fr);
  gap: clamp(38px, 5vw, 74px);
  align-items: start;
}
.sol-traj-photo {
  position: relative;
  padding-right: 30px;
  padding-bottom: 20px;
}
.sol-photo-frame--portrait {
  min-height: 760px;
  padding: 28px 18px 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.55), transparent 28%),
    linear-gradient(180deg, #f8f4fb 0%, #efe5f7 100%);
  border: 1px solid rgba(187,154,232,.22);
  box-shadow: 0 24px 56px rgba(94,55,119,.08);
}
.sol-photo-frame--portrait::before {
  width: 470px;
  height: 470px;
  left: auto;
  right: -110px;
  bottom: 98px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,200,245,.56) 0%, rgba(227,200,245,.28) 45%, rgba(227,200,245,0) 72%);
}
.sol-photo-frame--portrait::after {
  inset: auto 26px 44px auto;
  width: 318px;
  height: 405px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(229,210,245,.52), rgba(219,190,241,.20));
  clip-path: polygon(22% 0, 100% 15%, 100% 88%, 48% 100%, 0 77%, 0 16%);
  transform: none;
}
.sol-photo-frame__orb {
  display: block;
  position: absolute;
  inset: 26px 12% 28px 16%;
  border-radius: 46% 54% 52% 48% / 50% 43% 57% 50%;
  border: 1px solid rgba(255,255,255,.62);
  z-index: 0;
}
.sol-photo-frame--portrait img {
  width: 124%;
  margin: 0 0 0 -24px;
  object-position: left bottom;
}
.sol-photo-badge--light {
  right: -8px;
  bottom: -10px;
  min-width: 178px;
  padding: 18px 18px 15px;
  border-radius: 20px;
  box-shadow: 0 22px 48px rgba(73,39,98,.14);
}
.sol-photo-badge--light strong {
  font-size: 34px;
}
.sol-traj-content .sol-title {
  max-width: 720px;
  font-size: clamp(2.6rem, 4vw, 4.25rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.sol-traj-intro {
  max-width: 740px;
  margin-top: 20px;
  color: #6e647e;
  font-size: 1.08rem;
  line-height: 1.8;
}
.sol-timeline {
  margin-top: 34px;
}
.sol-timeline__item {
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 18px 0 20px;
  border-bottom: 1px solid rgba(132,104,170,.14);
}
.sol-timeline__icon {
  width: 32px;
  height: 32px;
  margin-top: 4px;
  background: rgba(173,128,233,.10);
  border: 1px solid rgba(173,128,233,.20);
}
.sol-timeline__icon svg {
  width: 15px;
  height: 15px;
  stroke: #ae72e9;
}
.sol-timeline__title {
  color: #1d1027;
  font-size: clamp(1.7rem, 2.1vw, 2rem);
  line-height: 1.08;
  margin-bottom: 8px;
}
.sol-timeline__text {
  color: #6e647e;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.68;
}
.sol-timeline__text strong {
  color: #1d1027;
  font-weight: 700;
}
@media (max-width: 1180px) {
  .sol-traj-grid--updated {
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1.08fr);
    gap: 34px;
  }
  .sol-photo-frame--portrait {
    min-height: 700px;
  }
  .sol-photo-frame--portrait::before {
    width: 410px;
    height: 410px;
    right: -94px;
  }
  .sol-photo-frame--portrait::after {
    width: 284px;
    height: 360px;
  }
  .sol-photo-frame--portrait img {
    width: 128%;
    margin-left: -30px;
  }
}
@media (max-width: 900px) {
  .sol-traj-grid--updated {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sol-traj-photo {
    max-width: 520px;
    margin: 0 auto;
    padding-right: 0;
  }
  .sol-photo-frame--portrait {
    min-height: 610px;
  }
  .sol-photo-frame--portrait img {
    width: 122%;
    margin-left: -18px;
  }
}
@media (max-width: 767px) {
  #trajetoria::before,
  #trajetoria::after {
    display: none;
  }
  .sol-photo-frame--portrait {
    min-height: 540px;
    border-radius: 26px;
    padding-top: 18px;
  }
  .sol-photo-frame--portrait::before {
    width: 270px;
    height: 270px;
    right: -54px;
    bottom: 82px;
  }
  .sol-photo-frame--portrait::after {
    width: 190px;
    height: 250px;
    right: 10px;
    bottom: 34px;
  }
  .sol-photo-frame__orb {
    inset: 18px 10% 22px 12%;
  }
  .sol-photo-badge--light {
    right: 10px;
    bottom: 10px;
    min-width: 156px;
    padding: 14px 14px 12px;
  }
  .sol-traj-content .sol-title {
    font-size: clamp(2.15rem, 9vw, 3rem);
  }
  .sol-timeline__title {
    font-size: 1.9rem;
  }
  .sol-timeline__text {
    font-size: .98rem;
  }
}
/* =========================================================
   FIM - TRAJETÓRIA REFINADA – JUL/2026
   ========================================================= */


/* =========================================================
   CASE FEATURE – CORANTE JUL/2026
   ========================================================= */
.sol-case-card--feature {
  grid-column: 1 / -1;
  padding: 0;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(252,249,255,.96));
  overflow: hidden;
}
.sol-case-card--feature:hover {
  transform: translateY(-4px);
}
.sol-case-showcase {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .85fr);
  gap: 30px;
  align-items: stretch;
  padding: 30px 38px 26px;
}
.sol-case-showcase__left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sol-case-showcase__brand {
  margin: 10px 0 18px;
}
.sol-case-showcase__brand-logo {
  display: block;
  max-width: 360px;
  width: 100%;
  height: auto;
}
.sol-case-showcase__highlight {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}
.sol-case-showcase__highlight-icon {
  display: grid;
  place-items: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(177,130,233,.14), rgba(177,130,233,.07));
  border: 1px solid rgba(177,130,233,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
.sol-case-showcase__highlight-icon svg {
  width: 32px;
  height: 32px;
  stroke: #9951cd;
}
.sol-case-showcase__headline {
  margin: 0;
  color: #7b42be;
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.sol-case-showcase__divider {
  width: 100%;
  height: 1px;
  margin: 2px 0 16px;
  background: linear-gradient(90deg, rgba(170,124,224,.35), rgba(170,124,224,.06));
}
.sol-case-showcase__result {
  margin: 0 0 10px;
  color: #8f4fca;
  font-size: clamp(1.55rem, 2.25vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.03em;
}
.sol-case-showcase__desc {
  max-width: 520px;
  margin: 0;
  color: rgba(36,20,44,.76);
  font-size: 1.06rem;
  line-height: 1.72;
}
.sol-case-showcase__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-case-showcase__map-area {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 360px;
}
.sol-case-showcase__map-area::before {
  content: '';
  position: absolute;
  inset: 8px 8% 8px 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,222,248,.46) 0%, rgba(234,222,248,.18) 45%, rgba(234,222,248,0) 76%);
}
.sol-case-showcase__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .88;
}
.sol-case-showcase__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}
.sol-case-showcase__stat-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sol-case-showcase__stat-group strong {
  color: #8b49c7;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(4rem, 7vw, 5rem);
  line-height: .88;
  letter-spacing: -.05em;
}
.sol-case-showcase__stat-group span {
  margin-top: 8px;
  color: #8749c1;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .02em;
}
.sol-case-showcase__arrow {
  color: #8f4fca;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  transform: translateY(-8px);
}
.sol-case-showcase__pill {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #9550ca, #7f3ebc);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 14px 28px rgba(123,47,168,.16);
}
@media (max-width: 1080px) {
  .sol-case-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
    gap: 22px;
    padding: 26px 28px 24px;
  }
  .sol-case-showcase__brand-logo {
    max-width: 320px;
  }
  .sol-case-showcase__map-area {
    min-height: 320px;
  }
}
@media (max-width: 900px) {
  .sol-case-card--feature {
    grid-column: auto;
  }
  .sol-case-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .sol-case-showcase__left {
    order: 1;
  }
  .sol-case-showcase__right {
    order: 2;
  }
  .sol-case-showcase__brand-logo {
    max-width: 290px;
  }
  .sol-case-showcase__map-area {
    min-height: 300px;
  }
}
@media (max-width: 620px) {
  .sol-case-showcase {
    padding: 22px 18px 20px;
  }
  .sol-case-showcase__highlight {
    gap: 12px;
    align-items: flex-start;
  }
  .sol-case-showcase__highlight-icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
  .sol-case-showcase__highlight-icon svg {
    width: 28px;
    height: 28px;
  }
  .sol-case-showcase__headline {
    font-size: 1.9rem;
  }
  .sol-case-showcase__result {
    font-size: 1.6rem;
  }
  .sol-case-showcase__desc {
    font-size: 1rem;
  }
  .sol-case-showcase__map-area {
    min-height: 260px;
  }
  .sol-case-showcase__stats {
    gap: 10px;
  }
  .sol-case-showcase__stat-group strong {
    font-size: 3.5rem;
  }
  .sol-case-showcase__arrow {
    font-size: 2.7rem;
    transform: translateY(-4px);
  }
  .sol-case-showcase__pill {
    font-size: .92rem;
    padding: 11px 18px;
  }
}
/* =========================================================
   FIM - CASE FEATURE – CORANTE JUL/2026
   ========================================================= */


/* =========================================================
   CASE FEATURE – DOCEIRO JUL/2026
   ========================================================= */
.sol-case-card--doceiro {
  padding: 0;
}
.sol-doceiro-showcase {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: stretch;
  padding: 30px 34px 26px;
}
.sol-doceiro-showcase__left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sol-doceiro-showcase__brand {
  margin: 18px 0 18px;
}
.sol-doceiro-showcase__brand-logo {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
}
.sol-doceiro-showcase__headline {
  max-width: 450px;
  margin: 0;
  color: #7b42be;
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.03em;
}
.sol-doceiro-showcase__divider {
  width: 100%;
  max-width: 470px;
  height: 1px;
  margin: 18px 0 16px;
  background: linear-gradient(90deg, rgba(170,124,224,.35), rgba(170,124,224,.06));
}
.sol-doceiro-showcase__desc {
  max-width: 480px;
  margin: 0;
  color: rgba(36,20,44,.76);
  font-size: 1.06rem;
  line-height: 1.82;
}
.sol-doceiro-showcase__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.sol-doceiro-showcase__maps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}
.sol-doceiro-showcase__map-col {
  text-align: center;
}
.sol-doceiro-showcase__map-title {
  color: #7b42be;
  font-size: .96rem;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.sol-doceiro-showcase__map-subtitle {
  margin-top: 2px;
  color: #24142c;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
}
.sol-doceiro-showcase__map-subtitle--big {
  color: #7b42be;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.sol-doceiro-showcase__map-image {
  display: block;
  margin: 10px auto 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.sol-doceiro-showcase__map-image--sul {
  max-width: 178px;
}
.sol-doceiro-showcase__map-image--brasil {
  max-width: 208px;
}
.sol-doceiro-showcase__arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sol-doceiro-showcase__arrow {
  width: 48px;
  height: auto;
}
.sol-doceiro-showcase__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}
.sol-doceiro-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 8px 16px 0;
  min-height: 158px;
}
.sol-doceiro-metric + .sol-doceiro-metric {
  border-left: 1px solid rgba(170,124,224,.18);
}
.sol-doceiro-metric__icon-bg {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(177,130,233,.14), rgba(177,130,233,.07));
  border: 1px solid rgba(177,130,233,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
.sol-doceiro-metric__icon-bg svg {
  width: 29px;
  height: 29px;
  stroke: #9951cd;
}
.sol-doceiro-metric__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  text-align: center;
  text-transform: uppercase;
}
.sol-doceiro-metric__accent {
  display: block;
  color: #7b42be;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.sol-doceiro-metric--number .sol-doceiro-metric__accent {
  font-size: 2rem;
}
.sol-doceiro-metric--reposition .sol-doceiro-metric__accent,
.sol-doceiro-metric--expansion .sol-doceiro-metric__accent {
  font-size: 1.05rem;
}
.sol-doceiro-metric__body {
  display: block;
  color: #24142c;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.01em;
}
@media (max-width: 1180px) {
  .sol-doceiro-showcase {
    grid-template-columns: minmax(0, .94fr) minmax(360px, 1.06fr);
    gap: 26px;
    padding: 28px 26px 24px;
  }
  .sol-doceiro-showcase__headline {
    font-size: 1.95rem;
  }
  .sol-doceiro-showcase__map-image--sul {
    max-width: 160px;
  }
  .sol-doceiro-showcase__map-image--brasil {
    max-width: 188px;
  }
  .sol-doceiro-metric {
    padding-inline: 10px;
  }
}
@media (max-width: 900px) {
  .sol-doceiro-showcase {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .sol-doceiro-showcase__left,
  .sol-doceiro-showcase__right {
    width: 100%;
  }
  .sol-doceiro-showcase__maps {
    grid-template-columns: 1fr 48px 1fr;
  }
  .sol-doceiro-showcase__map-image--sul {
    max-width: 150px;
  }
  .sol-doceiro-showcase__map-image--brasil {
    max-width: 180px;
  }
}
@media (max-width: 620px) {
  .sol-doceiro-showcase {
    padding: 22px 18px 20px;
  }
  .sol-doceiro-showcase__brand-logo {
    max-width: 250px;
  }
  .sol-doceiro-showcase__headline {
    font-size: 1.7rem;
  }
  .sol-doceiro-showcase__desc {
    font-size: 1rem;
    line-height: 1.72;
  }
  .sol-doceiro-showcase__maps {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sol-doceiro-showcase__arrow-wrap {
    order: 2;
  }
  .sol-doceiro-showcase__map-col--right {
    order: 3;
  }
  .sol-doceiro-showcase__arrow {
    width: 42px;
    transform: rotate(90deg);
  }
  .sol-doceiro-showcase__metrics {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }
  .sol-doceiro-metric {
    min-height: auto;
    padding: 16px 0;
  }
  .sol-doceiro-metric + .sol-doceiro-metric {
    border-left: 0;
    border-top: 1px solid rgba(170,124,224,.18);
  }
}
/* =========================================================
   FIM - CASE FEATURE – DOCEIRO JUL/2026
   ========================================================= */


/* =========================================================
   CASE FEATURE – CHRIS TOFOLI JUL/2026
   ========================================================= */
.sol-case-card--chris { padding: 0; }
.sol-chris-showcase {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr);
  gap: 38px;
  align-items: stretch;
  padding: 30px 34px 26px;
}
.sol-chris-showcase__left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sol-chris-showcase__brand {
  display: flex;
  align-items: center;
  min-height: 128px;
  margin: 16px 0 14px;
}
.sol-chris-showcase__brand-logo {
  display: block;
  max-width: 260px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sol-chris-showcase__headline {
  max-width: 450px;
  margin: 0;
  color: #7b42be;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.03em;
}
.sol-chris-showcase__divider {
  position: relative;
  width: 100%;
  max-width: 470px;
  height: 1px;
  margin: 18px 0 16px;
  background: linear-gradient(90deg, rgba(170,124,224,.38), rgba(170,124,224,.08));
}
.sol-chris-showcase__divider::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7a5eb;
  transform: translateY(-50%);
}
.sol-chris-showcase__desc {
  max-width: 470px;
  margin: 0;
  color: rgba(36,20,44,.78);
  font-size: 1.08rem;
  line-height: 1.82;
}
.sol-chris-showcase__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.sol-chris-showcase__hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 176px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f2e9f9, #eee3f7);
  overflow: hidden;
  border: 1px solid rgba(158,103,215,.08);
}
.sol-chris-big-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  text-align: center;
}
.sol-chris-big-metric + .sol-chris-big-metric {
  border-left: 1px solid rgba(129,75,180,.16);
}
.sol-chris-big-metric__eyebrow {
  color: #6d3ca2;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}
.sol-chris-big-metric--digits strong {
  margin: -2px 0 1px;
  color: #743ca9;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(5rem, 8vw, 6.4rem);
  line-height: .86;
  letter-spacing: -.06em;
}
.sol-chris-big-metric__label {
  color: #643794;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.08;
}
.sol-chris-calendar {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 8px;
}
.sol-chris-calendar svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: #6f3ca4;
}
.sol-chris-calendar span {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: #6f3ca4;
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1;
}
.sol-chris-showcase__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}
.sol-chris-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 152px;
  padding: 0 14px;
  text-align: center;
}
.sol-chris-pillar + .sol-chris-pillar {
  border-left: 1px solid rgba(164,112,217,.18);
}
.sol-chris-pillar__icon-bg {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(177,130,233,.15), rgba(177,130,233,.07));
  border: 1px solid rgba(177,130,233,.17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
.sol-chris-pillar__icon-bg svg {
  width: 36px;
  height: 36px;
  stroke: #7b42be;
}
.sol-chris-pillar__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}
.sol-chris-pillar__text strong {
  color: #7b42be;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.02;
}
.sol-chris-pillar__text span {
  color: #25182d;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.1;
}
.sol-chris-showcase__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  align-self: stretch;
  margin-top: 18px;
  padding: 13px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8746bd, #6e2f9c);
  color: #fff;
  box-shadow: 0 14px 28px rgba(112,52,151,.18);
}
.sol-chris-showcase__footer-icon {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.sol-chris-showcase__footer-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
.sol-chris-showcase__footer span {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .01em;
}
@media (max-width: 1180px) {
  .sol-chris-showcase {
    grid-template-columns: minmax(0, .95fr) minmax(390px, 1.05fr);
    gap: 28px;
    padding: 28px 26px 24px;
  }
  .sol-chris-showcase__brand-logo { max-width: 230px; }
  .sol-chris-showcase__headline { font-size: 1.95rem; }
  .sol-chris-pillar { padding-inline: 10px; }
  .sol-chris-showcase__footer span { font-size: .94rem; }
}
@media (max-width: 900px) {
  .sol-chris-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sol-chris-showcase__left,
  .sol-chris-showcase__right { width: 100%; }
  .sol-chris-showcase__brand { min-height: 110px; }
}
@media (max-width: 620px) {
  .sol-chris-showcase { padding: 22px 18px 20px; }
  .sol-chris-showcase__brand-logo { max-width: 210px; }
  .sol-chris-showcase__headline { font-size: 1.72rem; }
  .sol-chris-showcase__desc { font-size: 1rem; line-height: 1.72; }
  .sol-chris-showcase__hero-metrics { min-height: 150px; }
  .sol-chris-big-metric { padding: 14px 10px; }
  .sol-chris-big-metric--digits strong { font-size: 4.3rem; }
  .sol-chris-big-metric__label { font-size: .9rem; }
  .sol-chris-calendar { width: 68px; height: 68px; }
  .sol-chris-calendar span { font-size: 2rem; }
  .sol-chris-showcase__pillars { grid-template-columns: 1fr; }
  .sol-chris-pillar {
    min-height: auto;
    padding: 16px 0;
  }
  .sol-chris-pillar + .sol-chris-pillar {
    border-left: 0;
    border-top: 1px solid rgba(164,112,217,.18);
  }
  .sol-chris-showcase__footer {
    border-radius: 22px;
    padding: 14px 16px;
  }
  .sol-chris-showcase__footer span { font-size: .86rem; }
}
/* =========================================================
   FIM - CASE FEATURE – CHRIS TOFOLI JUL/2026
   ========================================================= */


/* =========================================================
   CHRIS METRICAS SUPERIORES AJUSTADAS – JUL/2026
   ========================================================= */
.sol-chris-showcase__hero-metrics {
  min-height: 196px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3ebf9 0%, #eee3f7 100%);
}
.sol-chris-big-metric {
  display: grid;
  grid-template-rows: 22px 96px 44px;
  align-items: center;
  justify-items: center;
  align-content: center;
  padding: 18px 22px 16px;
}
.sol-chris-big-metric__eyebrow {
  align-self: end;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1;
}
.sol-chris-big-metric--digits strong {
  align-self: center;
  margin: 0;
  font-size: clamp(5.2rem, 7vw, 6.15rem);
  line-height: .82;
}
.sol-chris-big-metric__label {
  align-self: start;
  margin: 0;
  font-size: 1rem;
  line-height: 1.08;
}
.sol-chris-big-metric--days {
  grid-template-rows: 22px 96px 44px;
}
.sol-chris-big-metric--days::before {
  content: '';
  display: block;
}
.sol-chris-calendar {
  align-self: center;
  width: 78px;
  height: 78px;
  margin: 0;
}
.sol-chris-calendar span {
  margin-top: 13px;
  font-size: 2.35rem;
}
@media (max-width: 620px) {
  .sol-chris-showcase__hero-metrics {
    min-height: 172px;
  }
  .sol-chris-big-metric {
    grid-template-rows: 20px 78px 38px;
    padding: 14px 10px 12px;
  }
  .sol-chris-big-metric--days {
    grid-template-rows: 20px 78px 38px;
  }
  .sol-chris-big-metric--digits strong {
    font-size: 4.65rem;
  }
  .sol-chris-calendar {
    width: 66px;
    height: 66px;
  }
  .sol-chris-calendar span {
    margin-top: 11px;
    font-size: 2rem;
  }
  .sol-chris-big-metric__label {
    font-size: .86rem;
  }
}
/* =========================================================
   FIM - CHRIS METRICAS SUPERIORES AJUSTADAS – JUL/2026
   ========================================================= */


/* =========================================================
   CHRIS METRICAS FINAIS + CARDS SEM HOVER – JUL/2026
   ========================================================= */
/* Remove qualquer animação/efeito de mouse dos cards de clientes */
.sol-case-card,
.sol-case-card--v3,
.sol-case-card--feature {
  transition: none !important;
}
.sol-case-card:hover,
.sol-case-card--v3:hover,
.sol-case-card--feature:hover {
  transform: none !important;
  box-shadow: 0 16px 44px rgba(55,25,70,.07) !important;
}

/* Métricas superiores da Chris: alinhamento rígido e simétrico */
.sol-chris-showcase__hero-metrics {
  min-height: 194px;
  height: 194px;
  border-radius: 18px;
  overflow: hidden;
}
.sol-chris-big-metric {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 22px 20px 18px;
  box-sizing: border-box;
}
.sol-chris-big-metric__eyebrow {
  display: block;
  flex: 0 0 20px;
  height: 20px;
  margin: 0;
  color: #6d3ca2;
  font-size: 1rem;
  font-weight: 900;
  line-height: 20px;
}
.sol-chris-big-metric--digits strong {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 92px;
  height: 92px;
  margin: 0;
  padding: 0;
  color: #743ca9;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.06em;
  transform: translateY(-2px);
}
.sol-chris-big-metric__label {
  display: block;
  flex: 0 0 auto;
  margin: 5px 0 0;
  color: #643794;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
}
.sol-chris-big-metric--days {
  padding-top: 24px;
}
.sol-chris-big-metric--days::before {
  display: none !important;
}
.sol-chris-calendar {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 92px;
  width: 82px;
  height: 92px;
  margin: 0;
}
.sol-chris-calendar svg {
  position: absolute;
  inset: 4px 0 auto;
  width: 82px;
  height: 82px;
}
.sol-chris-calendar span {
  position: relative;
  z-index: 1;
  margin: 13px 0 0;
  font-size: 2.4rem;
  line-height: 1;
}
.sol-chris-big-metric--days .sol-chris-big-metric__label {
  margin-top: 4px;
}

@media (max-width: 620px) {
  .sol-chris-showcase__hero-metrics {
    min-height: 172px;
    height: 172px;
  }
  .sol-chris-big-metric {
    padding: 17px 10px 14px;
  }
  .sol-chris-big-metric__eyebrow {
    flex-basis: 18px;
    height: 18px;
    font-size: .88rem;
    line-height: 18px;
  }
  .sol-chris-big-metric--digits strong {
    flex-basis: 78px;
    height: 78px;
    font-size: 4.8rem;
  }
  .sol-chris-calendar {
    flex-basis: 78px;
    width: 68px;
    height: 78px;
  }
  .sol-chris-calendar svg {
    width: 68px;
    height: 68px;
  }
  .sol-chris-calendar span {
    margin-top: 11px;
    font-size: 2rem;
  }
  .sol-chris-big-metric__label {
    margin-top: 3px;
    font-size: .84rem;
  }
}
/* =========================================================
   FIM - CHRIS METRICAS FINAIS + CARDS SEM HOVER – JUL/2026
   ========================================================= */


/* =========================================================
   CHRIS – ALINHAMENTO DEFINITIVO + CARDS SEM HOVER – JUL/2026
   ========================================================= */
.sol-cases-grid .sol-case-card,
.sol-cases-grid .sol-case-card--v3,
.sol-cases-grid .sol-case-card--feature {
  transition: none !important;
}
.sol-cases-grid .sol-case-card:hover,
.sol-cases-grid .sol-case-card--v3:hover,
.sol-cases-grid .sol-case-card--feature:hover {
  transform: none !important;
  border-color: rgba(123,47,168,.13) !important;
  background: rgba(255,255,255,.88) !important;
  box-shadow: 0 16px 44px rgba(55,25,70,.07) !important;
}
.sol-cases-grid .sol-case-card--feature:hover {
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(252,249,255,.96)) !important;
}

.sol-chris-showcase__hero-metrics {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  height: 190px !important;
  min-height: 190px !important;
  border-radius: 18px;
  overflow: hidden;
}
.sol-chris-big-metric {
  display: grid !important;
  grid-template-rows: 24px 104px 28px !important;
  align-items: center !important;
  justify-items: center !important;
  align-content: center !important;
  height: 190px !important;
  min-width: 0;
  padding: 15px 18px 14px !important;
  box-sizing: border-box;
  text-align: center;
}
.sol-chris-big-metric__eyebrow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 24px;
  margin: 0 !important;
  font-size: 1rem !important;
  font-weight: 900;
  line-height: 1 !important;
}
.sol-chris-big-metric__eyebrow--placeholder {
  visibility: hidden;
}
.sol-chris-big-metric__value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 104px;
  margin: 0;
  padding: 0;
  color: #743ca9;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 6.15rem;
  font-weight: 700;
  line-height: .78;
  letter-spacing: -.07em;
  transform: translateY(2px);
}
.sol-chris-big-metric__label {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 28px;
  margin: 0 !important;
  color: #643794;
  font-size: 1rem !important;
  font-weight: 900;
  line-height: 1.05 !important;
  text-align: center;
}
.sol-chris-big-metric--days {
  padding-top: 15px !important;
}
.sol-chris-big-metric--days::before {
  display: none !important;
}
.sol-chris-calendar {
  position: relative;
  display: grid !important;
  place-items: center;
  width: 88px !important;
  height: 104px !important;
  margin: 0 !important;
}
.sol-chris-calendar svg {
  position: absolute;
  inset: 8px 0 auto;
  width: 88px !important;
  height: 88px !important;
}
.sol-chris-calendar span {
  position: relative;
  z-index: 1;
  margin: 18px 0 0 !important;
  font-size: 2.2rem !important;
  line-height: 1 !important;
}
@media (max-width: 620px) {
  .sol-chris-showcase__hero-metrics {
    height: 166px !important;
    min-height: 166px !important;
  }
  .sol-chris-big-metric {
    grid-template-rows: 20px 88px 26px !important;
    height: 166px !important;
    padding: 14px 8px 12px !important;
  }
  .sol-chris-big-metric__eyebrow {
    height: 20px;
    font-size: .86rem !important;
  }
  .sol-chris-big-metric__value {
    height: 88px;
    font-size: 4.9rem;
  }
  .sol-chris-calendar {
    width: 72px !important;
    height: 88px !important;
  }
  .sol-chris-calendar svg {
    width: 72px !important;
    height: 72px !important;
  }
  .sol-chris-calendar span {
    margin-top: 15px !important;
    font-size: 2.05rem !important;
  }
  .sol-chris-big-metric__label {
    min-height: 26px;
    font-size: .82rem !important;
  }
}
/* =========================================================
   FIM - CHRIS – ALINHAMENTO DEFINITIVO + CARDS SEM HOVER
   ========================================================= */


/* =========================================================
   CHRIS – CORREÇÃO FINAL ABSOLUTA DE ALINHAMENTO – JUL/2026
   ========================================================= */
.sol-chris-showcase__hero-metrics {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  width: 100% !important;
  height: 190px !important;
  min-height: 190px !important;
  padding: 0 !important;
  overflow: hidden !important;
}
.sol-chris-big-metric {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 190px !important;
  min-height: 190px !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  text-align: center !important;
}
.sol-chris-big-metric__eyebrow {
  position: absolute !important;
  top: 24px !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%) !important;
  text-align: center !important;
  font-size: 1rem !important;
  line-height: 1 !important;
}
.sol-chris-big-metric__value {
  position: absolute !important;
  top: 50px !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%) !important;
  text-align: center !important;
  font-size: 6rem !important;
  line-height: .72 !important;
}
.sol-chris-big-metric__label {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  bottom: 22px !important;
  top: auto !important;
  display: block !important;
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 12px !important;
  transform: translateX(-50%) !important;
  box-sizing: border-box !important;
  text-align: center !important;
  font-size: 1rem !important;
  line-height: 1.05 !important;
}
.sol-chris-big-metric--days .sol-chris-big-metric__eyebrow {
  display: none !important;
}
.sol-chris-calendar {
  position: absolute !important;
  top: 34px !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  display: block !important;
  width: 88px !important;
  height: 88px !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%) !important;
}
.sol-chris-calendar svg {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 88px !important;
  height: 88px !important;
  margin: 0 !important;
}
.sol-chris-calendar span {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translate(-50%, -26%) !important;
  text-align: center !important;
  font-size: 2.55rem !important;
  line-height: 1 !important;
}
.sol-chris-big-metric--days .sol-chris-big-metric__label {
  bottom: 20px !important;
}

/* Remove integralmente qualquer efeito ao passar o mouse nos cases. */
.sol-cases-grid .sol-case-card,
.sol-cases-grid .sol-case-card *,
.sol-cases-grid .sol-case-card--v3,
.sol-cases-grid .sol-case-card--v3 *,
.sol-cases-grid .sol-case-card--feature,
.sol-cases-grid .sol-case-card--feature * {
  transition: none !important;
}
.sol-cases-grid .sol-case-card:hover,
.sol-cases-grid .sol-case-card--v3:hover,
.sol-cases-grid .sol-case-card--feature:hover {
  transform: none !important;
  translate: none !important;
  scale: 1 !important;
  filter: none !important;
}
/* Não zerar transformações dos elementos internos no hover.
   Alguns componentes usam translateX(-50%) para permanecer centralizados. */

@media (max-width: 620px) {
  .sol-chris-showcase__hero-metrics,
  .sol-chris-big-metric {
    height: 166px !important;
    min-height: 166px !important;
  }
  .sol-chris-big-metric__eyebrow {
    top: 20px !important;
    font-size: .86rem !important;
  }
  .sol-chris-big-metric__value {
    top: 45px !important;
    font-size: 4.8rem !important;
  }
  .sol-chris-big-metric__label {
    bottom: 18px !important;
    font-size: .82rem !important;
  }
  .sol-chris-calendar {
    top: 28px !important;
    width: 72px !important;
    height: 72px !important;
  }
  .sol-chris-calendar svg {
    width: 72px !important;
    height: 72px !important;
  }
  .sol-chris-calendar span {
    font-size: 2.05rem !important;
  }
  .sol-chris-big-metric--days .sol-chris-big-metric__label {
    bottom: 17px !important;
  }
}
/* =========================================================
   FIM - CHRIS – CORREÇÃO FINAL ABSOLUTA DE ALINHAMENTO
   ========================================================= */


/* FIX DEFINITIVO – HOVER SEM DESALINHAR ELEMENTOS INTERNOS */
.sol-cases-grid .sol-case-card,
.sol-cases-grid .sol-case-card--v3,
.sol-cases-grid .sol-case-card--feature {
  transition: none !important;
}
.sol-cases-grid .sol-case-card:hover,
.sol-cases-grid .sol-case-card--v3:hover,
.sol-cases-grid .sol-case-card--feature:hover {
  transform: none !important;
  translate: none !important;
  scale: 1 !important;
  filter: none !important;
  box-shadow: inherit !important;
}
/* FIM - FIX DEFINITIVO – HOVER SEM DESALINHAR ELEMENTOS INTERNOS */


/* =========================================================
   CASE FEATURE – TACTIUM JUL/2026
   ========================================================= */
.sol-case-card--tactium { padding: 0; }
.sol-tactium-showcase {
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(450px,1.12fr);
  gap: 34px;
  padding: 30px 36px 26px;
  align-items: stretch;
}
.sol-tactium-showcase__left { display:flex; flex-direction:column; min-width:0; }
.sol-tactium-showcase__brand { margin:28px 0 24px; }
.sol-tactium-showcase__brand-logo { display:block; width:100%; max-width:310px; height:auto; }
.sol-tactium-showcase__headline {
  margin:0; max-width:430px; color:#6f35c5; font-size:clamp(1.7rem,2.4vw,2.05rem);
  line-height:1.2; font-weight:800; letter-spacing:-.025em;
}
.sol-tactium-showcase__divider {
  width:100%; max-width:430px; height:1px; margin:18px 0 16px;
  background:linear-gradient(90deg,rgba(170,124,224,.35),rgba(170,124,224,.06));
}
.sol-tactium-showcase__divider::after {
  content:''; display:block; width:7px; height:7px; margin-left:calc(100% - 7px); transform:translateY(-3px);
  border-radius:50%; background:#c7a7ed;
}
.sol-tactium-showcase__desc {
  margin:0; max-width:455px; color:#24142c; font-size:1.05rem; line-height:1.82;
}
.sol-tactium-showcase__right { display:flex; flex-direction:column; justify-content:space-between; min-width:0; }
.sol-tactium-showcase__visual {
  display:grid; grid-template-columns:minmax(0,1fr) 54px minmax(0,1fr); gap:12px; align-items:center;
}
.sol-tactium-showcase__visual-col { text-align:center; min-width:0; }
.sol-tactium-showcase__visual-title { color:#24142c; font-size:.95rem; font-weight:800; line-height:1.15; text-transform:uppercase; }
.sol-tactium-showcase__visual-title strong { color:#6f35c5; font-weight:900; }
.sol-tactium-showcase__visual-image { display:block; margin:10px auto 0; width:100%; height:auto; object-fit:contain; }
.sol-tactium-showcase__visual-image--bubbles { max-width:155px; }
.sol-tactium-showcase__visual-image--target { max-width:170px; }
.sol-tactium-showcase__arrow-wrap { display:flex; align-items:center; justify-content:center; }
.sol-tactium-showcase__arrow { width:46px; height:auto; }
.sol-tactium-showcase__metrics { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); margin-top:18px; }
.sol-tactium-metric {
  display:flex; flex-direction:column; align-items:center; text-align:center; padding:8px 14px 0; min-height:160px;
}
.sol-tactium-metric + .sol-tactium-metric { border-left:1px solid rgba(170,124,224,.18); }
.sol-tactium-metric__icon-bg {
  display:grid; place-items:center; width:56px; height:56px; border-radius:999px;
  background:linear-gradient(180deg,rgba(177,130,233,.14),rgba(177,130,233,.07));
  border:1px solid rgba(177,130,233,.18); box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
}
.sol-tactium-metric__icon-bg svg { width:30px; height:30px; stroke:#6f35c5; }
.sol-tactium-metric__text { margin-top:13px; text-align:center; }
.sol-tactium-metric__text strong { display:block; color:#6f35c5; font-size:.92rem; font-weight:900; line-height:1.15; }
.sol-tactium-metric__text span { display:block; margin-top:8px; color:#24142c; font-size:.78rem; font-weight:600; line-height:1.3; }
.sol-tactium-showcase__footer {
  display:flex; align-items:center; justify-content:center; gap:14px; margin-top:18px; padding:12px 22px;
  border-radius:999px; background:linear-gradient(135deg,#7440c6,#6a2fb8); color:#fff;
  box-shadow:0 14px 30px rgba(111,53,197,.18);
}
.sol-tactium-showcase__footer-icon { display:grid; place-items:center; width:34px; height:34px; flex:0 0 34px; }
.sol-tactium-showcase__footer-icon svg { width:30px; height:30px; stroke:#fff; }
.sol-tactium-showcase__footer span { font-size:.92rem; font-weight:800; line-height:1.18; text-align:left; }
@media (max-width:1180px){
  .sol-tactium-showcase{grid-template-columns:minmax(0,.94fr) minmax(390px,1.06fr);gap:26px;padding:28px 26px 24px}
  .sol-tactium-showcase__brand-logo{max-width:270px}
  .sol-tactium-showcase__visual-image--bubbles{max-width:140px}
  .sol-tactium-showcase__visual-image--target{max-width:155px}
}
@media (max-width:900px){
  .sol-tactium-showcase{grid-template-columns:1fr;gap:24px}
  .sol-tactium-showcase__visual{grid-template-columns:1fr 50px 1fr}
}
@media (max-width:620px){
  .sol-tactium-showcase{padding:22px 18px 20px}
  .sol-tactium-showcase__brand-logo{max-width:240px}
  .sol-tactium-showcase__headline{font-size:1.7rem}
  .sol-tactium-showcase__desc{font-size:1rem;line-height:1.72}
  .sol-tactium-showcase__visual{grid-template-columns:1fr;gap:10px}
  .sol-tactium-showcase__arrow-wrap{order:2}
  .sol-tactium-showcase__visual-col:last-child{order:3}
  .sol-tactium-showcase__arrow{width:40px;transform:rotate(90deg)}
  .sol-tactium-showcase__metrics{grid-template-columns:1fr}
  .sol-tactium-metric{min-height:auto;padding:16px 0}
  .sol-tactium-metric + .sol-tactium-metric{border-left:0;border-top:1px solid rgba(170,124,224,.18)}
  .sol-tactium-showcase__footer{border-radius:24px;padding:14px 16px}
  .sol-tactium-showcase__footer span{font-size:.82rem}
}
/* =========================================================
   FIM - CASE FEATURE – TACTIUM JUL/2026
   ========================================================= */


/* =========================================================
   CASE FEATURE – ABRAFARMA JUL/2026
   ========================================================= */
.sol-case-card--abrafarma { padding: 0; }
.sol-abrafarma-showcase {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(430px,1.1fr);
  gap: 34px;
  padding: 30px 34px 26px;
}
.sol-abrafarma-showcase__left { display:flex; flex-direction:column; min-width:0; }
.sol-abrafarma-showcase__brand { margin: 22px 0 30px; }
.sol-abrafarma-showcase__brand-logo { display:block; max-width:310px; width:100%; height:auto; }
.sol-abrafarma-showcase__headline {
  max-width:470px; margin:0; color:#6f3bc0; font-size:clamp(1.75rem,2.6vw,2.15rem);
  font-weight:800; line-height:1.25; letter-spacing:-.03em;
}
.sol-abrafarma-showcase__divider { width:100%; max-width:480px; height:1px; margin:18px 0 16px; background:linear-gradient(90deg,rgba(170,124,224,.35),rgba(170,124,224,.06)); }
.sol-abrafarma-showcase__desc { max-width:500px; margin:0; color:rgba(36,20,44,.78); font-size:1.07rem; line-height:1.86; }
.sol-abrafarma-showcase__right { display:flex; flex-direction:column; justify-content:space-between; min-width:0; }
.sol-abrafarma-showcase__visual { display:grid; grid-template-columns:1fr 56px 1fr; align-items:center; gap:14px; }
.sol-abrafarma-showcase__visual-col { text-align:center; }
.sol-abrafarma-showcase__visual-title { color:#24142c; font-size:.92rem; font-weight:700; line-height:1.12; text-transform:uppercase; }
.sol-abrafarma-showcase__visual-title strong { color:#6f3bc0; font-size:1.08rem; font-weight:900; }
.sol-abrafarma-showcase__visual-image { display:block; width:100%; height:auto; object-fit:contain; margin:10px auto 0; }
.sol-abrafarma-showcase__visual-image--monitor { max-width:180px; }
.sol-abrafarma-showcase__visual-image--concierge { max-width:170px; }
.sol-abrafarma-showcase__arrow-wrap { display:flex; align-items:center; justify-content:center; }
.sol-abrafarma-showcase__arrow { width:48px; height:auto; }
.sol-abrafarma-showcase__metrics { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); margin-top:18px; }
.sol-abrafarma-metric { display:flex; flex-direction:column; align-items:center; text-align:center; padding:8px 16px 0; min-height:158px; }
.sol-abrafarma-metric + .sol-abrafarma-metric { border-left:1px solid rgba(170,124,224,.18); }
.sol-abrafarma-metric__icon-bg { display:grid; place-items:center; width:56px; height:56px; border-radius:999px; background:linear-gradient(180deg,rgba(177,130,233,.14),rgba(177,130,233,.07)); border:1px solid rgba(177,130,233,.18); }
.sol-abrafarma-metric__icon-bg svg { width:30px; height:30px; stroke:#8d4bc8; color:#8d4bc8; }
.sol-abrafarma-metric__text { margin-top:14px; text-transform:uppercase; line-height:1.14; }
.sol-abrafarma-metric__text strong { display:block; margin-bottom:7px; color:#6f3bc0; font-size:1rem; font-weight:900; }
.sol-abrafarma-metric__text span { display:block; color:#24142c; font-size:.88rem; font-weight:800; }
.sol-abrafarma-showcase__footer { align-self:center; display:flex; align-items:center; justify-content:center; gap:14px; width:min(100%,470px); margin-top:18px; padding:12px 22px; border-radius:999px; background:linear-gradient(135deg,#7d3fc0,#6126b1); color:#fff; box-shadow:0 14px 30px rgba(93,38,168,.18); }
.sol-abrafarma-showcase__footer-icon { display:grid; place-items:center; width:36px; height:36px; flex:0 0 36px; }
.sol-abrafarma-showcase__footer-icon svg { width:30px; height:30px; stroke:#fff; }
.sol-abrafarma-showcase__footer span { font-size:.95rem; font-weight:800; line-height:1.12; }
@media (max-width:1180px){
  .sol-abrafarma-showcase{grid-template-columns:minmax(0,.94fr) minmax(370px,1.06fr);gap:26px;padding:28px 26px 24px;}
  .sol-abrafarma-showcase__visual-image--monitor{max-width:165px}.sol-abrafarma-showcase__visual-image--concierge{max-width:155px}
}
@media (max-width:900px){
  .sol-abrafarma-showcase{grid-template-columns:1fr;gap:24px}.sol-abrafarma-showcase__brand{margin-bottom:18px}
  .sol-abrafarma-showcase__visual{grid-template-columns:1fr 48px 1fr}
}
@media (max-width:620px){
  .sol-abrafarma-showcase{padding:22px 18px 20px}.sol-abrafarma-showcase__brand-logo{max-width:260px}.sol-abrafarma-showcase__headline{font-size:1.72rem}.sol-abrafarma-showcase__desc{font-size:1rem;line-height:1.72}
  .sol-abrafarma-showcase__visual{grid-template-columns:1fr;gap:10px}.sol-abrafarma-showcase__arrow-wrap{order:2}.sol-abrafarma-showcase__visual-col:last-child{order:3}.sol-abrafarma-showcase__arrow{width:42px;transform:rotate(90deg)}
  .sol-abrafarma-showcase__metrics{grid-template-columns:1fr}.sol-abrafarma-metric{min-height:auto;padding:16px 0}.sol-abrafarma-metric + .sol-abrafarma-metric{border-left:0;border-top:1px solid rgba(170,124,224,.18)}
  .sol-abrafarma-showcase__footer{border-radius:24px;padding:12px 16px}.sol-abrafarma-showcase__footer span{font-size:.84rem}
}
/* FIM - CASE FEATURE – ABRAFARMA JUL/2026 */


/* =========================================================
   MONOBLOCO – CASE REDESENHADO JUL/2026
   ========================================================= */
.sol-case-card--monobloco { padding: 0; }
.sol-monobloco-showcase {
  display:grid;
  grid-template-columns:minmax(360px,.86fr) minmax(0,1.14fr);
  gap:28px;
  align-items:stretch;
  padding:30px 36px 26px;
}
.sol-monobloco-showcase__left { display:flex; flex-direction:column; min-width:0; }
.sol-monobloco-showcase__brand { margin:18px 0 22px; }
.sol-monobloco-showcase__brand-logo { display:block; width:100%; max-width:320px; height:auto; }
.sol-monobloco-showcase__headline {
  margin:0;
  color:#6f35c5;
  font-size:clamp(1.72rem,2.9vw,2.18rem);
  line-height:1.14;
  letter-spacing:-.03em;
  font-weight:800;
}
.sol-monobloco-showcase__divider {
  width:100%; max-width:320px; height:1px; margin:18px 0 16px;
  background:linear-gradient(90deg, rgba(170,124,224,.36), rgba(170,124,224,.10));
  position:relative;
}
.sol-monobloco-showcase__divider::after {
  content:""; position:absolute; right:-3px; top:50%; width:7px; height:7px; border-radius:999px;
  background:#d3b6ee; transform:translateY(-50%);
}
.sol-monobloco-showcase__desc {
  max-width:420px; margin:0; color:rgba(36,20,44,.86);
  font-size:1.05rem; line-height:1.82;
}
.sol-monobloco-showcase__right { display:flex; flex-direction:column; min-width:0; }
.sol-monobloco-showcase__top {
  display:grid; grid-template-columns:minmax(0,1.08fr) minmax(155px,.62fr); gap:14px; align-items:center;
}
.sol-monobloco-showcase__stats-wrap {
  display:flex; align-items:center; justify-content:center; min-height:150px;
}
.sol-monobloco-showcase__stats-image { display:block; width:100%; max-width:100%; height:auto; }
.sol-monobloco-showcase__map-wrap {
  display:flex; align-items:center; justify-content:center; padding-right:8px;
}
.sol-monobloco-showcase__map-image { display:block; width:100%; max-width:185px; height:auto; }
.sol-monobloco-showcase__middle {
  display:grid; grid-template-columns:minmax(0,1fr) 185px; gap:12px; align-items:end; margin-top:12px;
}
.sol-monobloco-showcase__metrics {
  display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:0; align-items:start;
}
.sol-monobloco-metric {
  min-height:142px; padding:4px 10px 0; text-align:center; overflow:hidden;
}
.sol-monobloco-metric + .sol-monobloco-metric { border-left:1px solid rgba(170,124,224,.18); }
.sol-monobloco-metric__icon-bg {
  width:56px; height:56px; margin:0 auto 12px; border-radius:999px; display:grid; place-items:center;
  background:linear-gradient(180deg, rgba(174,136,229,.13), rgba(174,136,229,.08));
  border:1px solid rgba(174,136,229,.16);
}
.sol-monobloco-metric__icon-bg svg { width:28px; height:28px; stroke:#7a42c5; color:#7a42c5; }
.sol-monobloco-metric__text strong {
  display:block; color:#6f35c5; font-size:.84rem; line-height:1.18; font-weight:900; overflow-wrap:anywhere; word-break:normal; hyphens:auto;
}
.sol-monobloco-metric__text span {
  display:block; margin-top:8px; color:rgba(36,20,44,.82); font-size:.72rem; line-height:1.42;
}
.sol-monobloco-showcase__region-card {
  display:flex; align-items:center; gap:10px; min-height:68px; padding:12px 12px;
  border:1px solid rgba(170,124,224,.24); border-radius:16px; background:rgba(255,255,255,.65);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
}
.sol-monobloco-showcase__region-icon {
  display:grid; place-items:center; width:34px; height:34px; flex:0 0 34px;
}
.sol-monobloco-showcase__region-icon svg { width:24px; height:24px; stroke:#7a42c5; }
.sol-monobloco-showcase__region-text strong {
  display:block; color:#6f35c5; font-size:.84rem; line-height:1.1; font-weight:900;
}
.sol-monobloco-showcase__region-text span {
  display:block; margin-top:6px; color:#24142c; font-size:.74rem; line-height:1.42; font-weight:500;
}
.sol-monobloco-showcase__footer {
  align-self:center; display:flex; align-items:center; justify-content:center; gap:14px;
  width:min(100%,520px); margin-top:18px; padding:12px 22px; border-radius:999px;
  background:linear-gradient(135deg,#7d3fc0,#6126b1); color:#fff; box-shadow:0 14px 30px rgba(93,38,168,.18);
}
.sol-monobloco-showcase__footer-icon { display:grid; place-items:center; width:34px; height:34px; flex:0 0 34px; }
.sol-monobloco-showcase__footer-icon svg { width:30px; height:30px; stroke:#fff; }
.sol-monobloco-showcase__footer span { font-size:.92rem; font-weight:800; line-height:1.16; }

@media (max-width: 1180px) {
  .sol-monobloco-showcase { grid-template-columns:minmax(340px,.84fr) minmax(0,1.16fr); gap:22px; padding:28px 24px 24px; }
  .sol-monobloco-showcase__stats-image { max-width:100%; }
  .sol-monobloco-showcase__map-image { max-width:170px; }
  .sol-monobloco-showcase__middle { grid-template-columns:minmax(0,1fr) 180px; }
  .sol-monobloco-metric { padding:4px 8px 0; }
}
@media (max-width: 980px) {
  .sol-monobloco-showcase { grid-template-columns:1fr; gap:24px; }
  .sol-monobloco-showcase__desc { max-width:none; }
  .sol-monobloco-showcase__top { grid-template-columns:minmax(0,1fr) 170px; }
  .sol-monobloco-showcase__middle { grid-template-columns:1fr; }
  .sol-monobloco-showcase__region-card { max-width:320px; justify-self:end; }
}
@media (max-width: 760px) {
  .sol-monobloco-showcase { padding:22px 18px 20px; }
  .sol-monobloco-showcase__brand-logo { max-width:250px; }
  .sol-monobloco-showcase__headline { font-size:1.72rem; }
  .sol-monobloco-showcase__desc { font-size:1rem; line-height:1.72; }
  .sol-monobloco-showcase__top { grid-template-columns:1fr; gap:10px; }
  .sol-monobloco-showcase__map-wrap { padding-right:0; }
  .sol-monobloco-showcase__map-image { max-width:170px; }
  .sol-monobloco-showcase__metrics { grid-template-columns:1fr; }
  .sol-monobloco-metric { min-height:auto; padding:16px 0; }
  .sol-monobloco-metric + .sol-monobloco-metric { border-left:0; border-top:1px solid rgba(170,124,224,.18); }
  .sol-monobloco-showcase__region-card { justify-self:stretch; max-width:none; }
  .sol-monobloco-showcase__footer { border-radius:24px; padding:13px 16px; }
  .sol-monobloco-showcase__footer span { font-size:.84rem; }
}


/* ===== FINAL POLISH | DESKTOP + MOBILE | JUL/2026 ===== */
.sol-abrafarma-showcase__visual-image,
.sol-doceiro-showcase__map-image,
.sol-tactium-showcase__visual-image,
.sol-monobloco-showcase__map-image,
.sol-monobloco-showcase__stats-image {
  background: transparent !important;
}

@media (max-width: 900px) {
  .sol-cases-grid { gap: 18px; }
  .sol-traj-grid--updated,
  .sol-problem-grid,
  .sol-frentes-grid,
  .sol-faq-grid { gap: 18px; }

  .sol-doceiro-showcase__maps,
  .sol-tactium-showcase__visual,
  .sol-abrafarma-showcase__visual,
  .sol-monobloco-showcase__top {
    align-items: center;
  }
}

@media (max-width: 767px) {
  .sol-section { padding: 42px 0; }
  .sol-shell { width: min(calc(100% - 22px), 1180px); }

  .sol-hero { padding: 24px 0 36px; }
  .sol-hero__inner { gap: 18px; }
  .sol-hero h1 { font-size: clamp(2.5rem, 10.5vw, 3.25rem) !important; }
  .sol-hero__desc { font-size: .96rem !important; line-height: 1.7 !important; }
  .sol-hero__stats-line { gap: 10px; }
  .sol-hero__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .sol-hero__logo-card {
    min-width: 0 !important;
    min-height: 54px;
    padding: 10px 8px;
  }

  .sol-title,
  .sol-clientes-header .sol-title { font-size: clamp(1.85rem, 7.6vw, 2.4rem); line-height: 1.12; }

  .sol-traj-grid--updated,
  .sol-problem-grid,
  .sol-frentes-grid,
  .sol-faq-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .sol-traj-grid--updated { gap: 22px; }
  .sol-traj-photo,
  .sol-traj-content { width: 100%; }
  .sol-photo-badge {
    right: 10px;
    bottom: 10px;
    transform: none;
  }
  .sol-timeline__item { gap: 12px; }
  .sol-timeline__title { font-size: 1rem; }
  .sol-timeline__text { font-size: .94rem; line-height: 1.64; }

  .sol-problem__statement,
  .sol-work__intro,
  .sol-segments__title,
  .sol-faq__title,
  .sol-cta-box__title { font-size: clamp(1.7rem, 7.4vw, 2.2rem); line-height: 1.18; }

  .sol-cases-grid { gap: 16px; }
  .sol-case-card,
  .sol-case-card--v3,
  .sol-case-card--feature,
  .sol-case-card--doceiro,
  .sol-case-card--chris,
  .sol-case-card--tactium,
  .sol-case-card--abrafarma,
  .sol-case-card--monobloco {
    border-radius: 24px;
  }

  .sol-doceiro-showcase,
  .sol-chris-showcase,
  .sol-tactium-showcase,
  .sol-abrafarma-showcase,
  .sol-monobloco-showcase {
    padding: 22px 16px 18px !important;
    gap: 18px !important;
  }

  .sol-doceiro-showcase__brand-logo,
  .sol-chris-showcase__brand-logo,
  .sol-tactium-showcase__brand-logo,
  .sol-abrafarma-showcase__brand-logo,
  .sol-monobloco-showcase__brand-logo {
    max-width: min(100%, 240px) !important;
  }

  .sol-doceiro-showcase__headline,
  .sol-chris-showcase__headline,
  .sol-tactium-showcase__headline,
  .sol-abrafarma-showcase__headline,
  .sol-monobloco-showcase__headline {
    font-size: 1.58rem !important;
    line-height: 1.2 !important;
  }

  .sol-doceiro-showcase__desc,
  .sol-chris-showcase__desc,
  .sol-tactium-showcase__desc,
  .sol-abrafarma-showcase__desc,
  .sol-monobloco-showcase__desc {
    font-size: .95rem !important;
    line-height: 1.68 !important;
  }

  .sol-doceiro-showcase__maps,
  .sol-tactium-showcase__visual,
  .sol-abrafarma-showcase__visual,
  .sol-monobloco-showcase__top,
  .sol-monobloco-showcase__middle {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .sol-doceiro-showcase__arrow-wrap,
  .sol-tactium-showcase__arrow-wrap,
  .sol-abrafarma-showcase__arrow-wrap {
    order: 2;
    justify-content: center;
  }
  .sol-doceiro-showcase__map-col--right,
  .sol-tactium-showcase__visual-col:last-child,
  .sol-abrafarma-showcase__visual-col:last-child { order: 3; }

  .sol-doceiro-showcase__arrow,
  .sol-tactium-showcase__arrow,
  .sol-abrafarma-showcase__arrow { width: 40px; transform: rotate(90deg); }

  .sol-doceiro-showcase__metrics,
  .sol-tactium-showcase__metrics,
  .sol-abrafarma-showcase__metrics,
  .sol-monobloco-showcase__metrics,
  .sol-chris-showcase__pillars {
    grid-template-columns: 1fr !important;
  }

  .sol-doceiro-metric,
  .sol-tactium-metric,
  .sol-abrafarma-metric,
  .sol-monobloco-metric,
  .sol-chris-pillar {
    min-height: auto !important;
    padding: 14px 0 !important;
  }

  .sol-doceiro-metric + .sol-doceiro-metric,
  .sol-tactium-metric + .sol-tactium-metric,
  .sol-abrafarma-metric + .sol-abrafarma-metric,
  .sol-monobloco-metric + .sol-monobloco-metric,
  .sol-chris-pillar + .sol-chris-pillar {
    border-left: 0 !important;
    border-top: 1px solid rgba(170,124,224,.18) !important;
  }

  .sol-doceiro-showcase__map-image--sul { max-width: 120px !important; }
  .sol-doceiro-showcase__map-image--brasil { max-width: 146px !important; }
  .sol-tactium-showcase__visual-image--bubbles { max-width: 130px !important; }
  .sol-tactium-showcase__visual-image--target { max-width: 138px !important; }
  .sol-abrafarma-showcase__visual-image--monitor { max-width: 148px !important; }
  .sol-abrafarma-showcase__visual-image--concierge { max-width: 142px !important; }
  .sol-monobloco-showcase__stats-wrap,
  .sol-monobloco-showcase__map-wrap { justify-content: center; }
  .sol-monobloco-showcase__map-image { max-width: 150px !important; }

  .sol-chris-showcase__hero-metrics {
    min-height: unset !important;
    grid-template-columns: 1fr 1px 1fr !important;
    padding: 0 !important;
  }

  .sol-tactium-showcase__footer,
  .sol-abrafarma-showcase__footer,
  .sol-monobloco-showcase__footer,
  .sol-chris-showcase__footer {
    width: 100% !important;
    border-radius: 22px !important;
    padding: 13px 15px !important;
  }
  .sol-tactium-showcase__footer span,
  .sol-abrafarma-showcase__footer span,
  .sol-monobloco-showcase__footer span,
  .sol-chris-showcase__footer span {
    font-size: .82rem !important;
    line-height: 1.18 !important;
  }

  .sol-monobloco-showcase__region-card { max-width: none !important; }
  .sol-monobloco-showcase__region-text span { font-size: .77rem; line-height: 1.42; }

  .sol-faq-grid { gap: 12px !important; }
  .sol-cta-box { padding: 30px 16px !important; border-radius: 26px; }
  .sol-footer__inner { gap: 16px; }
}

@media (max-width: 420px) {
  .sol-hero__logos { grid-template-columns: 1fr !important; }
  .sol-hero__logo-card { min-height: 52px; }
  .sol-photo-badge { font-size: .75rem; }
  .sol-monobloco-showcase__footer span,
  .sol-tactium-showcase__footer span,
  .sol-abrafarma-showcase__footer span,
  .sol-chris-showcase__footer span { font-size: .78rem !important; }
}


/* ===== MOBILE COMPACT OPTIMIZATION v34 ===== */
@media (max-width: 767px) {
  /* Hero stats: 2 colunas compactas, sem empilhar tudo */
  .sol-hero__stats-line {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    overflow: visible !important;
  }
  .sol-hero__stat-pill,
  .sol-hero__stat-pill--wide {
    width: 100% !important;
    min-width: 0 !important;
    padding: 14px 12px !important;
    border-radius: 22px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 6px !important;
  }
  .sol-hero__stat-pill--wide {
    grid-column: 1 / -1 !important;
  }
  .sol-hero__stat-pill strong {
    font-size: 1.95rem !important;
    line-height: 1 !important;
  }
  .sol-hero__stat-pill span {
    display: block !important;
    font-size: .92rem !important;
    line-height: 1.3 !important;
  }
  .sol-hero__stat-pill span br {
    display: none !important;
  }

  /* Logos do hero em grid real */
  .sol-hero__logos {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    overflow: visible !important;
  }
  .sol-hero__logo-card {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 58px !important;
    padding: 10px 12px !important;
  }
  .sol-hero__logo-card img {
    max-width: 132px !important;
    max-height: 30px !important;
  }
  .sol-hero__logo-card--monobloco {
    grid-column: 1 / -1 !important;
    width: min(100%, 220px) !important;
    justify-self: center !important;
  }

  /* Bloco de logos / clientes atendidos */
  .sol-logos-strip {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: none !important;
    padding: 18px !important;
  }
  .sol-logo-item {
    min-width: 0 !important;
    width: 100% !important;
    min-height: 72px !important;
    padding: 10px 12px !important;
  }
  .sol-logo-item img {
    max-width: 136px !important;
    max-height: 42px !important;
  }
  .sol-logo-item:nth-child(5) {
    grid-column: auto !important;
    width: 100% !important;
    justify-self: stretch !important;
  }
  .sol-logo-item--wide,
  .sol-logo-item:nth-child(6) {
    grid-column: 1 / -1 !important;
    width: min(100%, 220px) !important;
    justify-self: center !important;
  }

  /* Títulos com quebras mais naturais no mobile */
  .sol-chris-showcase__headline br,
  .sol-tactium-showcase__headline br,
  .sol-abrafarma-showcase__headline br,
  .sol-monobloco-showcase__headline br {
    display: none !important;
  }

  /* Chris: corrigir grid quebrado e deixar compacto */
  .sol-chris-showcase__hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    height: 164px !important;
    min-height: 164px !important;
  }
  .sol-chris-big-metric {
    height: 164px !important;
    min-height: 164px !important;
  }
  .sol-chris-big-metric__eyebrow {
    top: 18px !important;
    font-size: .84rem !important;
  }
  .sol-chris-big-metric__value {
    top: 30px !important;
    font-size: 4.7rem !important;
  }
  .sol-chris-big-metric__label {
    bottom: 15px !important;
    font-size: .84rem !important;
    line-height: 1.08 !important;
    width: 88% !important;
  }
  .sol-chris-calendar {
    top: 24px !important;
    width: 68px !important;
    height: 68px !important;
  }
  .sol-chris-calendar svg {
    width: 68px !important;
    height: 68px !important;
  }
  .sol-chris-calendar span {
    margin-top: 14px !important;
    font-size: 1.95rem !important;
  }
  .sol-chris-big-metric--days .sol-chris-big-metric__label {
    width: 96px !important;
  }

  /* Topos visuais dos cases: usar 3 colunas compactas em vez de empilhar */
  .sol-doceiro-showcase__maps,
  .sol-tactium-showcase__visual,
  .sol-abrafarma-showcase__visual {
    grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: center !important;
  }
  .sol-doceiro-showcase__arrow-wrap,
  .sol-tactium-showcase__arrow-wrap,
  .sol-abrafarma-showcase__arrow-wrap,
  .sol-doceiro-showcase__map-col--right,
  .sol-tactium-showcase__visual-col:last-child,
  .sol-abrafarma-showcase__visual-col:last-child {
    order: 0 !important;
  }
  .sol-doceiro-showcase__arrow,
  .sol-tactium-showcase__arrow,
  .sol-abrafarma-showcase__arrow {
    width: 30px !important;
    transform: none !important;
  }
  .sol-doceiro-showcase__map-title,
  .sol-tactium-showcase__visual-title,
  .sol-abrafarma-showcase__visual-title {
    font-size: .74rem !important;
    line-height: 1.12 !important;
  }
  .sol-doceiro-showcase__map-subtitle {
    font-size: .9rem !important;
    line-height: 1.08 !important;
  }
  .sol-doceiro-showcase__map-subtitle--big {
    font-size: 1rem !important;
    line-height: 1.03 !important;
  }
  .sol-doceiro-showcase__map-image--sul {
    max-width: 88px !important;
  }
  .sol-doceiro-showcase__map-image--brasil {
    max-width: 108px !important;
  }
  .sol-tactium-showcase__visual-image--bubbles {
    max-width: 104px !important;
  }
  .sol-tactium-showcase__visual-image--target {
    max-width: 112px !important;
  }
  .sol-abrafarma-showcase__visual-image--monitor {
    max-width: 120px !important;
  }
  .sol-abrafarma-showcase__visual-image--concierge {
    max-width: 116px !important;
  }

  /* Métricas dos cases: não empilhar em 1 coluna */
  .sol-doceiro-showcase__metrics,
  .sol-tactium-showcase__metrics,
  .sol-abrafarma-showcase__metrics,
  .sol-monobloco-showcase__metrics,
  .sol-chris-showcase__pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }
  .sol-doceiro-metric,
  .sol-tactium-metric,
  .sol-abrafarma-metric,
  .sol-monobloco-metric,
  .sol-chris-pillar {
    min-height: 140px !important;
    padding: 10px 8px 6px !important;
  }
  .sol-doceiro-metric + .sol-doceiro-metric,
  .sol-tactium-metric + .sol-tactium-metric,
  .sol-abrafarma-metric + .sol-abrafarma-metric,
  .sol-monobloco-metric + .sol-monobloco-metric,
  .sol-chris-pillar + .sol-chris-pillar {
    border-top: 0 !important;
    border-left: 1px solid rgba(170,124,224,.18) !important;
  }

  .sol-doceiro-metric__icon-bg,
  .sol-tactium-metric__icon-bg,
  .sol-abrafarma-metric__icon-bg,
  .sol-monobloco-metric__icon-bg,
  .sol-chris-pillar__icon-bg {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 10px !important;
  }
  .sol-doceiro-metric__icon-bg svg,
  .sol-tactium-metric__icon-bg svg,
  .sol-abrafarma-metric__icon-bg svg,
  .sol-monobloco-metric__icon-bg svg,
  .sol-chris-pillar__icon-bg svg {
    width: 22px !important;
    height: 22px !important;
  }
  .sol-doceiro-metric__text strong,
  .sol-tactium-metric__text strong,
  .sol-abrafarma-metric__text strong,
  .sol-monobloco-metric__text strong,
  .sol-chris-pillar__text strong {
    font-size: .76rem !important;
    line-height: 1.15 !important;
  }
  .sol-doceiro-metric__text span,
  .sol-tactium-metric__text span,
  .sol-abrafarma-metric__text span,
  .sol-monobloco-metric__text span,
  .sol-chris-pillar__text span {
    margin-top: 6px !important;
    font-size: .67rem !important;
    line-height: 1.34 !important;
  }

  /* Monobloco mais compacto */
  .sol-monobloco-showcase__top {
    grid-template-columns: minmax(0, 1.16fr) 110px !important;
    gap: 10px !important;
  }
  .sol-monobloco-showcase__middle {
    grid-template-columns: minmax(0, 1fr) 148px !important;
    gap: 10px !important;
  }
  .sol-monobloco-showcase__map-image {
    max-width: 122px !important;
  }
  .sol-monobloco-showcase__region-card {
    min-height: 100% !important;
    padding: 12px 10px !important;
    border-radius: 16px !important;
  }
  .sol-monobloco-showcase__region-icon {
    width: 34px !important;
    height: 34px !important;
  }
  .sol-monobloco-showcase__region-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .sol-monobloco-showcase__region-text strong {
    font-size: .76rem !important;
    line-height: 1.12 !important;
  }
  .sol-monobloco-showcase__region-text span {
    font-size: .68rem !important;
    line-height: 1.36 !important;
  }

  /* Rodapés dos cases */
  .sol-tactium-showcase__footer span,
  .sol-abrafarma-showcase__footer span,
  .sol-monobloco-showcase__footer span,
  .sol-chris-showcase__footer span {
    font-size: .8rem !important;
    line-height: 1.16 !important;
  }
}

/* Mobile médio: dá para usar 2 colunas em alguns blocos gerais */
@media (min-width: 480px) and (max-width: 767px) {
  .sol-problem-grid,
  .sol-frentes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Telas bem estreitas: manter compacto sem apertar demais */
@media (max-width: 420px) {
  .sol-hero__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .sol-hero__logo-card--monobloco {
    grid-column: 1 / -1 !important;
  }

  .sol-doceiro-showcase__metrics,
  .sol-tactium-showcase__metrics,
  .sol-abrafarma-showcase__metrics,
  .sol-monobloco-showcase__metrics,
  .sol-chris-showcase__pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .sol-doceiro-metric:nth-child(3),
  .sol-tactium-metric:nth-child(3),
  .sol-abrafarma-metric:nth-child(3),
  .sol-monobloco-metric:nth-child(3),
  .sol-chris-pillar:nth-child(3) {
    grid-column: 1 / -1 !important;
  }
  .sol-doceiro-metric + .sol-doceiro-metric,
  .sol-tactium-metric + .sol-tactium-metric,
  .sol-abrafarma-metric + .sol-abrafarma-metric,
  .sol-monobloco-metric + .sol-monobloco-metric,
  .sol-chris-pillar + .sol-chris-pillar {
    border-left: 0 !important;
  }
  .sol-doceiro-metric:nth-child(2),
  .sol-tactium-metric:nth-child(2),
  .sol-abrafarma-metric:nth-child(2),
  .sol-monobloco-metric:nth-child(2),
  .sol-chris-pillar:nth-child(2) {
    border-left: 1px solid rgba(170,124,224,.18) !important;
  }
  .sol-doceiro-metric:nth-child(3),
  .sol-tactium-metric:nth-child(3),
  .sol-abrafarma-metric:nth-child(3),
  .sol-monobloco-metric:nth-child(3),
  .sol-chris-pillar:nth-child(3) {
    border-top: 1px solid rgba(170,124,224,.18) !important;
  }

  .sol-monobloco-showcase__top,
  .sol-monobloco-showcase__middle {
    grid-template-columns: 1fr !important;
  }
  .sol-monobloco-showcase__stats-wrap,
  .sol-monobloco-showcase__map-wrap {
    justify-content: center !important;
  }
}
/* ===== END MOBILE COMPACT OPTIMIZATION v34 ===== */


/* ===== MOBILE LOGOS GRID FIX v35 ===== */
@media (max-width: 767px) {
  .sol-hero__logos,
  .sol-logos-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .sol-hero__logo-card,
  .sol-hero__logo-card--monobloco,
  .sol-logo-item,
  .sol-logo-item--wide {
    grid-column: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    justify-self: stretch !important;
  }

  .sol-hero__logo-card--monobloco img,
  .sol-logo-item--wide img {
    max-width: 132px !important;
  }
}
/* ===== END MOBILE LOGOS GRID FIX v35 ===== */

/* =========================================================
   PADRONIZAÇÃO FINAL – CORES DOS BOTÕES DOS CASES
   ========================================================= */
:root {
  --sol-case-btn-start: #9c4dcb;
  --sol-case-btn-end: #7328ad;
  --sol-case-btn-shadow: rgba(115, 40, 173, .20);
}

/* Botões/CTAs dos blocos de marcas */
.sol-case-showcase__pill,
.sol-chris-showcase__footer,
.sol-tactium-showcase__footer,
.sol-abrafarma-showcase__footer,
.sol-monobloco-showcase__footer,
.sol-case-card--v3 .sol-case-footer,
.sol-case-footer {
  background: linear-gradient(135deg, var(--sol-case-btn-start), var(--sol-case-btn-end)) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px var(--sol-case-btn-shadow) !important;
}

/* Ícones internos mantidos consistentes */
.sol-chris-showcase__footer-icon,
.sol-tactium-showcase__footer-icon,
.sol-abrafarma-showcase__footer-icon,
.sol-monobloco-showcase__footer-icon {
  background: rgba(255,255,255,.12);
}

/* Pílulas/tags superiores dos cases com a mesma linguagem visual */
.sol-case-card .sol-case-tag,
.sol-case-showcase .sol-case-tag,
.sol-doceiro-showcase .sol-case-tag,
.sol-chris-showcase .sol-case-tag,
.sol-tactium-showcase .sol-case-tag,
.sol-abrafarma-showcase .sol-case-tag,
.sol-monobloco-showcase .sol-case-tag {
  color: #8c48be;
  border-color: rgba(140,72,190,.16);
  background: linear-gradient(180deg, rgba(244,236,249,.95), rgba(237,228,246,.88));
}
/* =========================================================
   FIM - PADRONIZAÇÃO FINAL – CORES DOS BOTÕES DOS CASES
   ========================================================= */

/* ===== MOBILE LOGOS 2x3 FINAL FIX v37 ===== */
@media (max-width: 767px) {
  .sol-hero__logos,
  .sol-logos-strip {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    align-items: stretch !important;
  }

  .sol-hero__logos > *,
  .sol-logos-strip > * {
    grid-column: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    justify-self: stretch !important;
  }

  /* Remove qualquer regra anterior que fazia a 5ª/6ª logo abrirem linha sozinhas */
  .sol-hero__logos > *:nth-child(5),
  .sol-hero__logos > *:nth-child(6),
  .sol-logos-strip > *:nth-child(5),
  .sol-logos-strip > *:nth-child(6),
  .sol-hero__logo-card--wide,
  .sol-logo-item--wide {
    grid-column: auto !important;
    width: 100% !important;
    justify-self: stretch !important;
  }

  .sol-hero__logo-card,
  .sol-logo-item {
    min-height: 72px !important;
    padding: 10px 12px !important;
  }

  .sol-hero__logo-card img,
  .sol-logo-item img {
    width: auto !important;
    max-width: 122px !important;
    max-height: 34px !important;
    object-fit: contain !important;
  }

  .sol-hero__logo-card--wide img,
  .sol-logo-item--wide img {
    max-width: 132px !important;
    max-height: 34px !important;
  }
}
/* ===== END MOBILE LOGOS 2x3 FINAL FIX v37 ===== */


/* ===== HERO NOVO TÍTULO E SUBTÍTULO v38 ===== */
.sol-hero h1.sol-hero__title--new {
  max-width: 720px !important;
  font-size: clamp(3.15rem, 4.8vw, 4.72rem) !important;
  line-height: .94 !important;
  letter-spacing: -.052em !important;
}
.sol-hero h1.sol-hero__title--new span {
  display: block;
}
.sol-hero__desc {
  max-width: 650px;
}
@media (max-width: 1180px) {
  .sol-hero h1.sol-hero__title--new {
    font-size: clamp(2.85rem, 4.75vw, 4.15rem) !important;
  }
}
@media (max-width: 767px) {
  .sol-hero h1.sol-hero__title--new {
    font-size: clamp(2.25rem, 9.8vw, 3.05rem) !important;
    line-height: .98 !important;
    letter-spacing: -.045em !important;
  }
}
/* ===== END HERO NOVO TÍTULO E SUBTÍTULO v38 ===== */


/* =========================================================
   AJUSTE FINAL — TÍTULOS DE SESSÃO PADRONIZADOS E CENTRALIZADOS
   ========================================================= */
.sol-section-label,
.sol-section-label--centered,
.sol-hero__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(14px, 1.35vw, 16px) !important;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(164,122,233,.24);
  color: #864fd8;
  box-shadow: 0 10px 26px rgba(130,85,186,.07);
}

.sol-section-label::before,
.sol-section-label--centered::before,
.sol-hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #a76fea;
  box-shadow: 0 0 0 5px rgba(167,111,234,.12);
}

.sol-section-label::after,
.sol-section-label--centered::after,
.sol-hero__badge::after {
  content: none !important;
  display: none !important;
}

.sol-section-head {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.sol-hero__badge {
  gap: 12px;
  margin: 0 auto 30px;
}

@media (max-width: 767px) {
  .sol-section-label,
  .sol-section-label--centered,
  .sol-hero__badge {
    font-size: 13px !important;
    padding: 13px 20px;
    letter-spacing: .16em;
  }

  .sol-hero__badge {
    margin: 0 auto 22px;
  }
}


/* =========================================================
   AJUSTE FINAL 2 — BADGE DO HERO CENTRALIZADO NO BLOCO TODO
   ========================================================= */
.sol-hero__badge-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 2px;
}

.sol-hero__badge {
  font-size: clamp(15px, 1.45vw, 18px) !important;
  padding: 15px 28px;
}

@media (max-width: 900px) {
  .sol-hero__badge-row {
    order: 0;
    margin-bottom: 6px;
  }

  .sol-hero__badge {
    font-size: 14px !important;
    padding: 14px 22px;
  }
}


/* =========================================================
   AJUSTE FINAL 3 — ESPAÇAMENTOS PADRONIZADOS ENTRE TÍTULOS E CONTEÚDO
   ========================================================= */
.sol-hero__inner {
  column-gap: clamp(24px, 3.4vw, 48px);
  row-gap: 10px;
}

.sol-hero__badge-row {
  margin-bottom: 0;
}

.sol-hero__badge {
  margin: 0 auto 12px;
}

.sol-hero__content {
  padding-top: 0;
}

.sol-section-head {
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .sol-section-head {
    margin-bottom: 34px;
  }
}

@media (max-width: 767px) {
  .sol-hero__inner {
    row-gap: 6px;
  }

  .sol-hero__badge {
    margin: 0 auto 10px;
  }

  .sol-section-head {
    margin-bottom: 28px;
  }
}


/* =========================================================
   AJUSTE FINAL 4 — BOTÕES DO HERO MAIORES
   ========================================================= */
.sol-hero .sol-btn {
  min-height: 56px;
  padding: 16px 30px;
  font-size: 18px;
  font-weight: 700;
}

.sol-hero .sol-btn--primary {
  min-width: 300px;
}

.sol-hero .sol-btn--secondary {
  min-width: 240px;
}

@media (max-width: 1199px) {
  .sol-hero .sol-btn {
    min-height: 52px;
    padding: 14px 24px;
    font-size: 16px;
  }

  .sol-hero .sol-btn--primary {
    min-width: 260px;
  }

  .sol-hero .sol-btn--secondary {
    min-width: 220px;
  }
}

@media (max-width: 767px) {
  .sol-hero .sol-btn,
  .sol-hero__ctas .sol-btn,
  .sol-hero .sol-btn--primary,
  .sol-hero .sol-btn--secondary {
    min-height: 50px !important;
    height: auto;
    padding: 14px 22px !important;
    font-size: 15px !important;
    width: 100%;
    min-width: 0 !important;
  }
}


/* =========================================================
   AJUSTE FINAL 5 — CHRIS: REMOVER +DE E CENTRALIZAR 7 DÍGITOS
   ========================================================= */
.sol-chris-big-metric__eyebrow--hidden {
  visibility: hidden !important;
}

.sol-chris-big-metric--digits-centered {
  grid-template-rows: 1fr auto auto 1fr !important;
  row-gap: 2px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.sol-chris-big-metric--digits-centered .sol-chris-big-metric__eyebrow {
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.sol-chris-big-metric--digits-centered .sol-chris-big-metric__value {
  grid-row: 2;
  height: auto !important;
  align-self: end;
  transform: none !important;
}

.sol-chris-big-metric--digits-centered .sol-chris-big-metric__label {
  grid-row: 3;
  min-height: auto !important;
  align-self: start;
}

@media (max-width: 620px) {
  .sol-chris-big-metric--digits-centered {
    row-gap: 0;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}


/* =========================================================
   AJUSTE FINAL 6 — CHRIS: CENTRALIZAR 7 E SUBIR CONTEÚDO
   ========================================================= */
.sol-chris-big-metric--digits-centered .sol-chris-big-metric__value {
  left: 50% !important;
  right: auto !important;
  width: 100% !important;
  text-align: center !important;
  transform: translateX(-50%) !important;
  top: 30px !important;
}

.sol-chris-big-metric--digits-centered .sol-chris-big-metric__label {
  left: 50% !important;
  right: auto !important;
  width: 100% !important;
  text-align: center !important;
  transform: translateX(-50%) !important;
  bottom: 44px !important;
}

@media (max-width: 620px) {
  .sol-chris-big-metric--digits-centered .sol-chris-big-metric__value {
    top: 38px !important;
  }

  .sol-chris-big-metric--digits-centered .sol-chris-big-metric__label {
    bottom: 36px !important;
  }
}


/* =========================================================
   AJUSTE FINAL 7 — CHRIS: CENTRALIZAÇÃO REAL DO BLOCO 7 DÍGITOS
   ========================================================= */
.sol-chris-big-metric--digits-centered {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 2px !important;
  padding: 0 10px !important;
}

.sol-chris-big-metric--digits-centered .sol-chris-big-metric__eyebrow {
  display: none !important;
  position: static !important;
  width: auto !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
  transform: none !important;
}

.sol-chris-big-metric--digits-centered .sol-chris-big-metric__value {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: auto !important;
  height: auto !important;
  margin: -8px 0 2px 0 !important;
  padding: 0 !important;
  transform: none !important;
  text-align: center !important;
}

.sol-chris-big-metric--digits-centered .sol-chris-big-metric__label {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: auto !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  text-align: center !important;
}

@media (max-width: 620px) {
  .sol-chris-big-metric--digits-centered {
    gap: 0 !important;
    padding: 0 8px !important;
  }

  .sol-chris-big-metric--digits-centered .sol-chris-big-metric__value {
    margin: -6px 0 0 0 !important;
  }
}


/* =========================================================
   AJUSTE FINAL 8 — CHRIS: 7 DÍGITOS IGUAL À COLUNA DA DIREITA
   ========================================================= */
.sol-chris-big-metric.sol-chris-big-metric--digits-centered {
  position: relative !important;
  display: block !important;
  text-align: center !important;
  padding: 0 !important;
}

.sol-chris-big-metric.sol-chris-big-metric--digits-centered .sol-chris-big-metric__eyebrow,
.sol-chris-big-metric.sol-chris-big-metric--digits-centered .sol-chris-big-metric__eyebrow--hidden {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.sol-chris-big-metric.sol-chris-big-metric--digits-centered .sol-chris-big-metric__value {
  position: absolute !important;
  top: 34px !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: translateX(-50%) !important;
  text-align: center !important;
}

.sol-chris-big-metric.sol-chris-big-metric--digits-centered .sol-chris-big-metric__label {
  position: absolute !important;
  top: auto !important;
  left: 50% !important;
  right: auto !important;
  bottom: 36px !important;
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 10px !important;
  transform: translateX(-50%) !important;
  text-align: center !important;
}

@media (max-width: 620px) {
  .sol-chris-big-metric.sol-chris-big-metric--digits-centered .sol-chris-big-metric__value {
    top: 30px !important;
  }

  .sol-chris-big-metric.sol-chris-big-metric--digits-centered .sol-chris-big-metric__label {
    bottom: 32px !important;
  }
}


/* =========================================================
   REDES SOCIAIS NO RODAPÉ
   ========================================================= */
.sol-footer__inner {
  grid-template-columns: minmax(220px, 1fr) minmax(180px, .8fr) minmax(180px, .75fr) minmax(280px, 1.1fr);
}
.sol-footer__social-lead {
  margin: -4px 0 14px;
  font-size: 14px;
  line-height: 1.55;
}
.sol-footer__social-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.sol-footer__social-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}
.sol-footer__social-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 999px;
  background: rgba(123, 47, 168, .10);
  border: 1px solid rgba(123, 47, 168, .18);
  color: var(--sol-lilac);
}
.sol-footer__social-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.sol-footer__social-list span:last-child {
  overflow-wrap: anywhere;
}
@media (max-width: 1100px) {
  .sol-footer__inner {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}
@media (max-width: 820px) {
  .sol-footer__inner {
    grid-template-columns: 1fr;
  }
}
/* tema escuro */
.sol-footer__social-lead {
  color: rgba(36,20,44,.56);
}
/* tema claro */
body.light-theme .sol-footer__social-lead,
.light-theme .sol-footer__social-lead,
.sol-theme-light .sol-footer__social-lead {
  color: rgba(36,20,44,.68);
}


/* correção contraste redes sociais */
.sol-footer__social-lead { color: rgba(36,20,44,.68) !important; }


/* =========================================================
   AJUSTE FINAL 9 — CHRIS MOBILE: 40 DENTRO DO CALENDÁRIO
   ========================================================= */
@media (max-width: 620px) {
  .sol-chris-big-metric--days {
    position: relative !important;
  }

  .sol-chris-big-metric--days .sol-chris-calendar {
    top: 24px !important;
    left: 50% !important;
    width: 72px !important;
    height: 72px !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
  }

  .sol-chris-big-metric--days .sol-chris-calendar svg {
    width: 72px !important;
    height: 72px !important;
    margin: 0 !important;
  }

  .sol-chris-big-metric--days .sol-chris-calendar span {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translate(-50%, -34%) !important;
    font-size: 1.45rem !important;
    line-height: 1 !important;
  }

  .sol-chris-big-metric--days .sol-chris-big-metric__label {
    left: 50% !important;
    bottom: 18px !important;
    width: 104px !important;
    padding: 0 !important;
    transform: translateX(-50%) !important;
  }
}
