/* ============================================
   SOLUÇÃO INDIVIDUAL — Estilos
   Prefixo: sp- (solução-página)
   ============================================ */

/* ============================================
   HERO DA PÁGINA DE SOLUÇÃO
   ============================================ */

.sp-hero {
  position: relative;
  padding: 130px 0 100px;
  background: linear-gradient(180deg, #FAFAFC 0%, #FFFFFF 100%);
  overflow: hidden;
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.sp-hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -150px;
  opacity: 0.25;
  animation: floatLento 22s ease-in-out infinite;
}

.sp-hero-shape-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -100px;
  opacity: 0.22;
  animation: floatLento 28s ease-in-out infinite reverse;
}

.sp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.sp-hero-content {
  position: relative;
  z-index: 1;
}

.sp-hero-content .badge {
  margin-bottom: 24px;
}

.sp-hero-content .titulo-mega {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
}

.sp-hero-desc {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--cinza-600);
  margin-bottom: 36px;
  max-width: 560px;
}

.sp-hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.sp-hero-bullets {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--cinza-200);
}

.sp-hero-bullet {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--cinza-700);
  font-weight: 500;
}

.sp-hero-bullet svg {
  color: var(--verde);
  flex-shrink: 0;
}

/* Visual do Hero: Demo do agente IA */
.sp-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-hero-demo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  background: var(--branco);
  border-radius: var(--raio-2xl);
  box-shadow: var(--sombra-xl), 0 24px 64px rgba(58, 134, 255, 0.15);
  overflow: hidden;
  border: 1px solid var(--cinza-100);
}

.sp-hero-demo-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--cinza-200);
}

.sp-hero-demo-avatar {
  width: 44px;
  height: 44px;
  background: var(--grad-marca);
  color: var(--branco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.sp-hero-demo-avatar::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: var(--verde);
  border: 2.5px solid var(--branco);
  border-radius: 50%;
}

.sp-hero-demo-nome {
  font-family: var(--fonte-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--cinza-900);
  margin-bottom: 2px;
}

.sp-hero-demo-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--cinza-500);
}

.sp-hero-demo-dot {
  width: 6px;
  height: 6px;
  background: var(--verde);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--verde);
  animation: pulse 2s ease-in-out infinite;
}

.sp-hero-demo-chat {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FAFAFC;
}

.sp-msg {
  padding: 12px 16px;
  border-radius: var(--raio-lg);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 85%;
  animation: fadeInUp 0.6s ease-out both;
}

.sp-msg-bot {
  background: var(--branco);
  color: var(--cinza-800);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: var(--sombra-xs);
  border: 1px solid var(--cinza-100);
}

.sp-msg-bot:nth-child(1) { animation-delay: 0.3s; }
.sp-msg-user:nth-child(2) { animation-delay: 0.8s; }
.sp-msg-bot:nth-child(3) { animation-delay: 1.3s; }
.sp-msg-user:nth-child(4) { animation-delay: 1.9s; }

.sp-msg-user {
  background: var(--grad-marca);
  color: var(--branco);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  box-shadow: var(--sombra-color);
}

.sp-msg-typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  border-radius: var(--raio-lg);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: var(--sombra-xs);
  animation: fadeInUp 0.6s 2.4s ease-out both;
}

.sp-msg-typing span {
  width: 7px;
  height: 7px;
  background: var(--cinza-400);
  border-radius: 50%;
  animation: typingDot 1.4s ease-in-out infinite;
}

.sp-msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.sp-msg-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.sp-hero-demo-status-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 22px;
  background: var(--branco);
  border-top: 1px solid var(--cinza-200);
}

.sp-hero-demo-stat {
  text-align: center;
}

.sp-hero-demo-stat strong {
  display: block;
  font-family: var(--fonte-display);
  font-weight: 800;
  font-size: 1.125rem;
  background: var(--grad-marca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}

.sp-hero-demo-stat span {
  font-size: 0.6875rem;
  color: var(--cinza-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sp-hero-deco {
  position: absolute;
  z-index: 1;
  animation: rotacao 30s linear infinite;
}

.sp-hero-deco-1 {
  top: -10px;
  right: 0;
}

.sp-hero-deco-2 {
  bottom: -30px;
  left: -10px;
  animation-direction: reverse;
  animation-duration: 35s;
}

/* ============================================
   2. IDENTIFICAÇÃO (Você se identifica?)
   ============================================ */

.sp-identifica {
  position: relative;
}

.sp-identifica-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.sp-identifica-info h2 {
  margin-bottom: 24px;
}

.sp-identifica-info p {
  font-size: 1.0625rem;
  color: var(--cinza-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sp-identifica-rodape {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--azul-claro);
  border-radius: var(--raio-md);
  border-left: 4px solid var(--azul-eletrico);
  font-size: 0.9375rem !important;
}

.sp-identifica-rodape strong {
  color: var(--azul-eletrico);
}

.sp-identifica-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-check {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--raio-md);
  cursor: pointer;
  transition: all var(--t-suave);
  user-select: none;
}

.sp-check:hover {
  border-color: var(--azul-eletrico);
  transform: translateX(4px);
  box-shadow: var(--sombra-sm);
}

.sp-check-input {
  display: none;
}

.sp-check-box {
  width: 26px;
  height: 26px;
  border: 2px solid var(--cinza-300);
  border-radius: var(--raio-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all var(--t-suave);
}

.sp-check-input:checked + .sp-check-box {
  background: var(--grad-marca);
  border-color: transparent;
  color: var(--branco);
  transform: scale(1.05);
}

.sp-check-texto {
  font-family: var(--fonte-display);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--cinza-800);
  flex: 1;
}

.sp-check:has(.sp-check-input:checked) {
  background: var(--azul-claro);
  border-color: var(--azul-eletrico);
}

/* ============================================
   3. CUSTO DE NÃO RESOLVER
   ============================================ */

.sp-custo-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-custo-header .subtitulo {
  margin-top: 16px;
  text-align: center;
}

.sp-custo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.sp-custo-card {
  padding: 32px;
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--raio-xl);
  text-align: center;
  transition: all var(--t-suave);
}

.sp-custo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-lg);
}

.sp-custo-icone {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--raio-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-custo-icone svg {
  width: 28px;
  height: 28px;
}

.sp-custo-icone-vermelho {
  background: rgba(231, 76, 60, 0.12);
  color: var(--vermelho);
}

.sp-custo-icone-laranja {
  background: rgba(230, 126, 34, 0.12);
  color: var(--laranja);
}

.sp-custo-icone-azul {
  background: var(--azul-claro);
  color: var(--azul-eletrico);
}

.sp-custo-stat {
  font-family: var(--fonte-display);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--cinza-600);
  margin-bottom: 8px;
}

.sp-custo-stat strong {
  font-weight: 800;
  font-size: 2rem;
  background: var(--grad-marca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}

.sp-custo-card h3 {
  font-family: var(--fonte-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--cinza-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sp-custo-card p {
  font-size: 0.9375rem;
  color: var(--cinza-600);
  line-height: 1.6;
}

.sp-custo-destaque {
  padding: 28px 32px;
  background: linear-gradient(135deg, #0A0A0F 0%, #1A1A24 100%);
  color: var(--branco);
  border-radius: var(--raio-xl);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.sp-custo-destaque::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(231, 76, 60, 0.2) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.sp-custo-destaque-icone {
  width: 60px;
  height: 60px;
  background: rgba(231, 76, 60, 0.18);
  color: var(--vermelho);
  border-radius: var(--raio-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.sp-custo-destaque > div:last-child {
  flex: 1;
  position: relative;
  z-index: 1;
}

.sp-custo-destaque h4 {
  font-family: var(--fonte-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.sp-custo-destaque p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.sp-custo-destaque strong {
  color: var(--branco);
  font-weight: 700;
}

/* ============================================
   4. COMO A ÓTIMA RESOLVE (Timeline)
   ============================================ */

.sp-resolve-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-resolve-header .subtitulo {
  margin-top: 16px;
  text-align: center;
}

.sp-resolve-timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.sp-resolve-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--azul-eletrico), var(--roxo-escuro));
  transform: translateX(-50%);
  opacity: 0.2;
}

.sp-resolve-passo {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 48px;
  align-items: center;
}

.sp-resolve-passo:last-child {
  margin-bottom: 0;
}

.sp-resolve-passo-numero {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.sp-resolve-passo-numero span {
  width: 56px;
  height: 56px;
  background: var(--branco);
  border: 3px solid var(--azul-eletrico);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fonte-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--azul-eletrico);
  box-shadow: var(--sombra-md);
}

.sp-resolve-passo-content {
  grid-column: 1;
  padding: 24px 28px;
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--raio-lg);
  text-align: right;
  transition: all var(--t-suave);
}

.sp-resolve-passo-invertido .sp-resolve-passo-content {
  grid-column: 3;
  text-align: left;
}

.sp-resolve-passo-content:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-md);
  border-color: var(--azul-eletrico);
}

.sp-resolve-passo-content h3 {
  font-family: var(--fonte-display);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--cinza-900);
}

.sp-resolve-passo-content p {
  font-size: 0.9375rem;
  color: var(--cinza-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   5. SUB-SOLUÇÕES
   ============================================ */

.sp-sub-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sp-sub-card {
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--raio-xl);
  padding: 36px;
  position: relative;
  transition: all var(--t-suave);
  transform-style: preserve-3d;
}

.sp-sub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-marca);
  border-radius: var(--raio-xl) var(--raio-xl) 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-suave);
}

.sp-sub-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-lg);
  border-color: transparent;
}

.sp-sub-card:hover::before {
  transform: scaleX(1);
}

.sp-sub-card-numero {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--fonte-mono);
  font-size: 0.75rem;
  color: var(--cinza-400);
  letter-spacing: 0.1em;
}

.sp-sub-card-icone {
  width: 56px;
  height: 56px;
  background: var(--azul-claro);
  color: var(--azul-eletrico);
  border-radius: var(--raio-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--t-suave);
}

.sp-sub-card-icone svg {
  width: 28px;
  height: 28px;
}

.sp-sub-card:hover .sp-sub-card-icone {
  background: var(--grad-marca);
  color: var(--branco);
  transform: scale(1.05) rotate(-3deg);
}

.sp-sub-card h3 {
  font-family: var(--fonte-display);
  font-weight: 700;
  color: var(--cinza-900);
  margin-bottom: 12px;
}

.sp-sub-card p {
  font-size: 0.9375rem;
  color: var(--cinza-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sp-sub-card-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--cinza-200);
}

.sp-sub-card-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 0.875rem;
  color: var(--cinza-700);
  line-height: 1.5;
}

.sp-sub-card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--grad-marca);
  border-radius: 50%;
  opacity: 0.15;
}

.sp-sub-card-bullets li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--azul-eletrico);
  border-radius: 50%;
}

/* ============================================
   6. BENEFÍCIOS (Seção Escura)
   ============================================ */

.sp-beneficios {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.sp-beneficios-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sp-bnf-shape-1 {
  width: 700px;
  height: 700px;
  top: -30%;
  left: -15%;
  opacity: 0.5;
}

.sp-bnf-shape-2 {
  width: 600px;
  height: 600px;
  bottom: -30%;
  right: -10%;
  opacity: 0.45;
}

.sp-beneficios-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sp-beneficios-titulo {
  color: var(--branco);
}

.sp-beneficios-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sp-beneficio {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--raio-xl);
  text-align: center;
  transition: all var(--t-suave);
}

.sp-beneficio:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(58, 134, 255, 0.4);
  transform: translateY(-4px);
}

.sp-beneficio-numero {
  font-family: var(--fonte-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 4vw, 3.5rem);
  line-height: 1;
  background: linear-gradient(135deg, #93b8ff 0%, #c89dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.sp-beneficio h3 {
  font-family: var(--fonte-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--branco);
  margin-bottom: 10px;
  line-height: 1.3;
}

.sp-beneficio p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

/* ============================================
   7. CASO DE USO
   ============================================ */

.sp-caso-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-caso-card {
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--raio-2xl);
  padding: 48px;
  box-shadow: var(--sombra-md);
  position: relative;
  overflow: hidden;
}

.sp-caso-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-marca-h);
}

.sp-caso-card-tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--cinza-100);
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--cinza-600);
  border-radius: var(--raio-sm);
  margin-bottom: 32px;
}

.sp-caso-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.sp-caso-bloco {
  text-align: center;
  padding: 24px;
  background: var(--cinza-50);
  border-radius: var(--raio-lg);
}

.sp-caso-bloco-imagem {
  margin: 0 0 16px;
  border-radius: var(--raio-md);
  overflow: hidden;
  border: 1px solid var(--cinza-200);
  background: var(--branco);
  aspect-ratio: 4 / 3;
}

.sp-caso-bloco-imagem img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.sp-caso-grid > .sp-caso-bloco:first-child .sp-caso-bloco-imagem img {
  filter: grayscale(0.75) brightness(0.99);
}

.sp-caso-bloco-icone {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: var(--raio-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-caso-bloco-icone-antes {
  background: rgba(231, 76, 60, 0.12);
  color: var(--vermelho);
}

.sp-caso-bloco-icone-depois {
  background: rgba(39, 174, 96, 0.12);
  color: var(--verde);
}

.sp-caso-bloco h4 {
  font-family: var(--fonte-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cinza-900);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sp-caso-titulo-icone {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sp-caso-titulo-icone svg {
  width: 18px;
  height: 18px;
  display: block;
}

.sp-caso-titulo-icone-antes {
  color: var(--vermelho);
  background: rgba(231, 76, 60, 0.14);
}

.sp-caso-titulo-icone-depois {
  color: var(--verde);
  background: rgba(58, 134, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(58, 134, 255, 0.18) inset;
}

.sp-caso-bloco p {
  font-size: 0.9375rem;
  color: var(--cinza-600);
  line-height: 1.65;
  margin: 0;
  text-align: left;
}

.sp-caso-seta {
  color: var(--azul-eletrico);
  background: var(--azul-claro);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2.5s ease-in-out infinite;
}

.sp-caso-resultados {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--cinza-200);
}

.sp-caso-resultado {
  text-align: center;
}

.sp-caso-resultado strong {
  display: block;
  font-family: var(--fonte-display);
  font-weight: 800;
  font-size: 2rem;
  background: var(--grad-marca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.sp-caso-resultado span {
  font-size: 0.875rem;
  color: var(--cinza-600);
}

/* ============================================
   8. FAQ
   ============================================ */

.sp-faq-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-faq-lista {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-faq-item {
  background: var(--branco);
  border: 1px solid var(--cinza-200);
  border-radius: var(--raio-md);
  overflow: hidden;
  transition: all var(--t-suave);
}

.sp-faq-item:hover {
  border-color: var(--azul-eletrico);
}

.sp-faq-item[open] {
  background: var(--branco);
  border-color: var(--azul-eletrico);
  box-shadow: var(--sombra-sm);
}

.sp-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--fonte-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--cinza-900);
  transition: color var(--t-rapida);
}

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

.sp-faq-item summary:hover {
  color: var(--azul-eletrico);
}

.sp-faq-icone {
  flex-shrink: 0;
  color: var(--cinza-500);
  transition: all var(--t-suave);
}

.sp-faq-item[open] .sp-faq-icone {
  transform: rotate(180deg);
  color: var(--azul-eletrico);
}

.sp-faq-conteudo {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--cinza-600);
  line-height: 1.7;
}

/* ============================================
   CTA FINAL
   ============================================ */

/* CTA final compartilhado em global.css */

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 1024px) {
  .sp-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .sp-hero-visual {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .sp-identifica-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sp-custo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sp-custo-card:last-child {
    grid-column: span 2;
  }

  .sp-sub-grid {
    grid-template-columns: 1fr;
  }

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

  /* Timeline mobile-ish: tudo à esquerda */
  .sp-resolve-timeline::before {
    left: 28px;
  }

  .sp-resolve-passo,
  .sp-resolve-passo-invertido {
    grid-template-columns: 56px 1fr;
    gap: 24px;
  }

  .sp-resolve-passo-numero {
    grid-column: 1;
  }

  .sp-resolve-passo-content,
  .sp-resolve-passo-invertido .sp-resolve-passo-content {
    grid-column: 2;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .sp-hero {
    padding: 110px 0 60px;
  }

  .sp-hero-bullets {
    flex-direction: column;
    gap: 12px;
  }

  .sp-custo-grid {
    grid-template-columns: 1fr;
  }

  .sp-custo-card:last-child {
    grid-column: 1;
  }

  .sp-custo-destaque {
    flex-direction: column;
    text-align: center;
  }

  .sp-beneficios-grid {
    grid-template-columns: 1fr;
  }

  .sp-caso-card {
    padding: 28px 24px;
  }

  .sp-caso-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sp-caso-seta {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .sp-caso-resultados {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sp-faq-item summary {
    padding: 16px 18px;
    font-size: 0.9375rem;
  }

  .sp-faq-conteudo {
    padding: 0 18px 18px;
  }

}
