
/* =========================================================
   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
   ========================================================= */
