/* ===================================
   PLATINUM MARÇO - DESIGN OVERRIDE
   Adapta o estilo da Entrevista Estratégica
   ao projeto Platinum para o lançamento de março.
   NÃO modificar os arquivos Webflow originais.
   =================================== */

/* ===================================
   1. SUBSTITUIÇÃO DE VARIÁVEIS DE COR
   Troca paleta dourado/laranja por prata/roxo
   =================================== */

:root {
  /* Substituição da paleta dourada pelo sistema prata/roxo */
  --dourado-platinum: #c0c0c0;   /* era #a99168 */
  --laranja1: #7014c9;            /* era #f8a428 — botões e acentos viram roxo */
  --platinum: #e8e8e8;            /* era #fdc284 */
  --preto-platinum: #0a0a0a;      /* era #171616 — fundo mais profundo */
  --preto-sec: #151515;           /* era #242424f5 */
  --laranja3: #c0c0c0;            /* era #fddeb0 — textos de acento viram prata */
  --amarelo_plt: #7014c9;         /* era #ecce54 — badge vira roxo */
  --azul-sec: rgba(112, 20, 201, 0.7); /* era #7460ef — overlay do CTA */

  /* Prata — sistema complementar */
  --prata-claro: #e8e8e8;
  --prata-medio: #c0c0c0;
  --prata-escuro: #909090;

  /* Roxo */
  --roxo-destaque: #7014c9;
  --roxo-hover: #5a0ea5;

  /* Transição padrão */
  --transicao-rapida: 0.3s ease;
}

/* ===================================
   2. FUNDO E BODY
   =================================== */

/* ===================================
   BORDA ANIMADA — "ESTRATÉGIA CONCURSOS"
   Técnica do tutorial: overflow:hidden no container +
   raio de luz girando por baixo +
   máscara escura no interior (2px menor = borda visível)
   =================================== */

@keyframes rodar {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Propriedade customizada para animar o ângulo do conic-gradient */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin-border {
  to { --border-angle: 360deg; }
}

/* Container: overflow clipa o raio; fundo branco = cor da borda */
.estrategia {
  overflow: hidden !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.3) !important;
  position: relative;
  padding: 0 !important;
}

/* Raio de luz roxo girando — o "cometa" */
.estrategia::before {
  position: absolute;
  content: "";
  top: -200%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #7014c9;
  z-index: 2;
  width: 150%;
  height: 500%;
  filter: blur(16px);
  border-radius: 8px;
  animation: rodar 4s linear infinite;
  transform-origin: center bottom;
}

/* Fundo escuro: mascara o raio no interior, deixa 1px de borda exposta */
.estrategia::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0a0a0a;
  z-index: 3;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 20px;
  transition: 0.5s;
}

/* Estado final após parar a animação */
.estrategia.border-stopped::before {
  animation: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.estrategia.border-stopped {
  background: rgba(255, 255, 255, 0.25) !important;
}

/* Texto acima do fundo escuro */
.estrategia .text-block-21 {
  position: relative;
  z-index: 9;
  padding: 0.2rem 0.75rem;
}



/* ===================================
   SUBTÍTULO HERO — BRANCO COM NEON
   Remove a textura dourada e aplica
   texto branco com glow sutil
   =================================== */

/* ===================================
   CHECKS HERO — RECOLORIR DOURADO → ROXO PROFUNDO
   Converte qualquer cor para #7014c9:
   brightness(0)→preto, invert→branco, sepia+hue+saturate→roxo
   =================================== */

.section_home_1_feature .image-11 {
  filter: brightness(0) invert(1) sepia(1) hue-rotate(250deg) saturate(3) brightness(0.85);
  transition: filter 0.3s ease;
}

/* Wrapper de cada item check — estado inicial branco */
.section_home_1_feature .flex-block-5 {
  width: 100%;
}

.section_home_1_feature .flex-block-23 {
  width: 100%;
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.7s ease,
    box-shadow 0.7s ease,
    border-color 0.7s ease;
}

/* Estado neon — roxo forte ativado em cascata via JS */
.section_home_1_feature .flex-block-23.neon-active {
  background: rgba(112, 20, 201, 0.22);
  border-color: rgba(140, 50, 220, 0.6);
  box-shadow:
    0 0 14px rgba(112, 20, 201, 0.5),
    0 0 32px rgba(112, 20, 201, 0.25),
    inset 0 0 12px rgba(112, 20, 201, 0.15);
}



.text-color-white.subt {
  -webkit-text-fill-color: #ffffff !important;
  background-image: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  color: #ffffff !important;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.55),
    0 0 40px rgba(200, 200, 255, 0.25);
}



.body {
  background-color: #0a0a0a;
}

/* ===================================
   SEÇÃO 2 — TÍTULO "ASSINATURA PLATINUM"
   Remove textura dourada, aplica branco com neon
   =================================== */

.text-span-30, .text-span-31 {
  -webkit-text-fill-color: #ffffff !important;
  background-image: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  color: #ffffff !important;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.55),
    0 0 40px rgba(200, 200, 255, 0.25);
}

/* ===================================
   SEÇÃO 2 — ÍCONE DOS CARDS
   Oculta o SVG e exibe o check do hero (okPlatinumOuro.png)
   com o mesmo filtro roxo usado na hero
   =================================== */

.section_home_3_benefits .icon-div .icon-embed-medium {
  display: none !important;
}

.section_home_3_benefits .icon-div {
  width: 42px;
  height: 42px;
}

.section_home_3_benefits .icon-div::before {
  content: '';
  display: block;
  width: 42px;
  height: 42px;
  background: url('../images/okPlatinumOuro.png') center / contain no-repeat;
  filter: brightness(0) invert(1) sepia(1) hue-rotate(250deg) saturate(3) brightness(0.85);
}

/* ===================================
   SEÇÃO 2 — CARDS COM BORDA ANIMADA NO HOVER
   Mesmo efeito do .estrategia, ativado só no hover
   =================================== */

/* Estado normal: sem borda e sem pseudo-elementos ativos */
.section_home_3_benefits .home_1_feature_item.hd {
  border: none !important;
}

.section_home_3_benefits .home_1_feature_item.hd::before,
.section_home_3_benefits .home_1_feature_item.hd::after {
  content: none;
}

/* Hover: ativa o efeito */
.section_home_3_benefits .home_1_feature_item.hd:hover {
  overflow: hidden !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.25) !important;
  isolation: isolate;
}

/* Raio de luz roxo girando */
.section_home_3_benefits .home_1_feature_item.hd:hover::before {
  content: "";
  position: absolute;
  top: -200%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #7014c9;
  z-index: 2;
  width: 150%;
  height: 500%;
  filter: blur(16px);
  border-radius: 8px;
  animation: rodar 4s linear infinite;
  transform-origin: center bottom;
}

/* Fundo escuro: mascara o raio no interior */
.section_home_3_benefits .home_1_feature_item.hd:hover::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1a1a1a;
  z-index: 3;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 10px;
}

/* Conteúdo dos cards acima da máscara escura */
.section_home_3_benefits .home_1_feature_item.hd:hover > * {
  position: relative;
  z-index: 9;
}

/* Ícone roxo vivo no hover */
.section_home_3_benefits .home_1_feature_item.hd:hover .icon-div::before {
  filter: brightness(0) invert(1) sepia(1) hue-rotate(250deg) saturate(10) brightness(1.3)
          drop-shadow(0 0 8px rgba(112, 20, 201, 0.9)) !important;
}

/* ===================================
   SEÇÃO 2 — TEXTOS DOURADOS NOS CARDS → ROXO COM NEON
   bold-text-21/22/23/25 usam ouroescovado.webp com background-clip
   =================================== */

.bold-text-21,
.bold-text-22,
.bold-text-23,
.bold-text-25 {
  -webkit-text-fill-color: #c084fc !important;
  background-image: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  color: #c084fc !important;
  text-shadow:
    0 0 12px rgba(112, 20, 201, 0.85),
    0 0 28px rgba(112, 20, 201, 0.45);
}

/* ===================================
   3. BOTÃO DE COMPRA (DOURADO → ROXO)
   Override do gradiente hardcoded no webflow CSS
   =================================== */

.button.is-secondary.is-alternate.black.dourado {
  background-image: linear-gradient(135deg, var(--roxo-destaque), var(--roxo-hover)) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(112, 20, 201, 0.45);
  transition: all var(--transicao-rapida);
  position: relative;
  overflow: hidden;
}

.button.is-secondary.is-alternate.black.dourado::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.button.is-secondary.is-alternate.black.dourado:hover::before {
  left: 100%;
}

.button.is-secondary.is-alternate.black.dourado:hover {
  box-shadow: 0 6px 30px rgba(112, 20, 201, 0.65);
  transform: translateY(-2px) scale(1.02);
}

/* Botão CTA com textura (cta1) — também vira roxo */
.button.is-secondary.is-alternate.black.cta1 {
  background-image: linear-gradient(135deg, var(--roxo-destaque), var(--roxo-hover)) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(112, 20, 201, 0.5);
  border-color: rgba(192, 192, 192, 0.4);
}

/* Botão genérico is-secondary */
.button.is-secondary {
  background-color: var(--roxo-destaque);
  box-shadow: 0 4px 20px rgba(112, 20, 201, 0.4);
}

/* ===================================
   4. BADGE DE DESCONTO (OFF)
   Override do gradiente dourado → roxo
   =================================== */

.text-block-15.off {
  background-color: var(--roxo-destaque) !important;
  background-image: linear-gradient(90deg, #7014c9 26%, #5a0ea5 81%) !important;
  color: #fff !important;
}

/* ===================================
   5. CARDS — HOVER LIFT + BORDA SUTIL
   Aplica o padrão card da Entrevista Estratégica
   =================================== */

/* Cards de features (checklist hero) */
.home_1_feature_item.hd {
  border-color: rgba(192, 192, 192, 0.15);
  border-radius: 10px;
  transition: all var(--transicao-rapida);
  background-color: rgba(26, 26, 26, 0.6);
}

.home_1_feature_item.hd:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 192, 192, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Cards de features verticais — PLATAFORMA TUTORY */
.home_1_feature_item.hd.cardvertical {
  border-color: rgba(192, 192, 192, 0.12);
}

.bold-text-26,
.bold-text-27 {
  -webkit-text-fill-color: #c084fc !important;
  background-image: none !important;
  background-clip: unset !important;
  -webkit-background-clip: unset !important;
  color: #c084fc !important;
  text-shadow:
    0 0 12px rgba(112, 20, 201, 0.85),
    0 0 28px rgba(112, 20, 201, 0.45);
}

/* ===================================
   SEÇÃO DEPOIMENTOS — ESTRELAS ROXAS COM ANIMAÇÃO
   Dispara ao entrar na viewport via IntersectionObserver
   =================================== */

/* Estado inicial: branco suave diretamente no fill do path */
.home_6_testimonial_rating-icon svg path {
  fill: rgba(255, 255, 255, 0.25);
  transition: fill 0.45s ease;
}

/* Estado ativo: fill roxo sólido */
.section_home_6_testimonial.stars-active .home_6_testimonial_rating-icon svg path {
  fill: #7014c9;
}

/* Glow no container da estrela */
.section_home_6_testimonial.stars-active .home_6_testimonial_rating-icon {
  filter: drop-shadow(0 0 5px rgba(112, 20, 201, 0.75));
  transition: filter 0.45s ease;
}

/* Cascata esquerda → direita: delay aplicado no path */
.section_home_6_testimonial.stars-active .home_6_testimonial_rating-icon:nth-child(1) svg path { transition-delay: 0.0s; }
.section_home_6_testimonial.stars-active .home_6_testimonial_rating-icon:nth-child(2) svg path { transition-delay: 0.1s; }
.section_home_6_testimonial.stars-active .home_6_testimonial_rating-icon:nth-child(3) svg path { transition-delay: 0.2s; }
.section_home_6_testimonial.stars-active .home_6_testimonial_rating-icon:nth-child(4) svg path { transition-delay: 0.3s; }
.section_home_6_testimonial.stars-active .home_6_testimonial_rating-icon:nth-child(5) svg path { transition-delay: 0.4s; }

/* Cards de depoimentos */
.home_6_testimonial_content {
  border-color: rgba(192, 192, 192, 0.12) !important;
  border-radius: 10px;
  background-color: #1a1a1a;
  transition: all var(--transicao-rapida);
}

.home_6_testimonial_content:hover {
  border-color: rgba(192, 192, 192, 0.3) !important;
  transform: translateY(-3px);
}

/* Card do CTA principal (com background de preços) */
.home_5_cta_card:not(.preco) {
  background-image: none !important;
  background-color: #1a1a1a !important;
  border: 1px solid rgba(112, 20, 201, 0.3);
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(112, 20, 201, 0.12);
}

/* Card CTA da seção de preços (div[3]) — fundo claro */
.ctaplat.gridmax > .home_5_cta_card:not(.preco) {
  background-color: #f5f5f5 !important;
  border-color: rgba(112, 20, 201, 0.25);
}

/* Zera o overlay escuro para não cobrir o fundo claro */
.ctaplat.gridmax > .home_5_cta_card:not(.preco) .video-overlay-layer {
  background: transparent !important;
}

/* Card CTA da section[6] (sem .ctaplat) — mesmo fundo claro */
.home_5_cta_component:not(.ctaplat) > .home_5_cta_card:not(.preco) {
  background-color: #f5f5f5 !important;
  border-color: rgba(112, 20, 201, 0.25);
}

.home_5_cta_component:not(.ctaplat) > .home_5_cta_card:not(.preco) .video-overlay-layer {
  background: transparent !important;
}

/* ===================================
   SEÇÃO 3 — CARDS DE PREÇO: BORDA BRANCA CONTÍNUA
   grid1 → borda animada (raio girando)
   grid2 → borda estática branca
   =================================== */

/* grid1 — borda animada via conic-gradient (sem overflow:hidden, badge não é clipado) */
.home_5_cta_card.preco.grid1 {
  --border-angle: 0deg;
  border: 2px solid transparent !important;
  border-radius: 12px;
  background:
    linear-gradient(#111111, #111111) padding-box,
    conic-gradient(
      from var(--border-angle),
      transparent 0deg,
      #5a0ea5 200deg,
      #7014c9 270deg,
      transparent 360deg
    ) border-box;
  animation: spin-border 4s linear infinite;
}

/* grid2 — borda branca estática, sem animação */
.home_5_cta_card.preco.grid2 {
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 12px;
}

/* ===================================
   6. ÍCONES — LARANJA → ROXO/PRATA
   =================================== */

.icon-embed-medium.orange-color {
  color: var(--prata-medio) !important;
}

.icon-embed-medium.orange-color:hover,
.home_1_feature_item.hd:hover .icon-embed-medium.orange-color {
  color: var(--roxo-destaque) !important;
}

/* ===================================
   7. TÍTULOS — ACENTO COM UNDERLINE GRADIENTE
   Padrão .section-title::after da Entrevista Estratégica
   =================================== */

.heading1.header.capslock {
  color: var(--prata-claro) !important;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.2rem;
}

.heading1.header.capslock::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--roxo-destaque), var(--prata-medio));
  margin: 0.8rem auto 0;
}

/* Título da seção de aprovados */
.heading1.aprovados {
  position: relative;
  padding-bottom: 1.2rem;
  flex-direction: column;
  align-items: center;
}

.heading1.aprovados::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--roxo-destaque), var(--prata-medio));
  margin: 0.8rem auto 0;
}

/* ===================================
   8. TIMELINE DA JORNADA — ACENTO ROXO
   =================================== */

.home_8_features-list_progress-bar {
  background-color: rgba(112, 20, 201, 0.3) !important;
}

/* ===================================
   9. FAQ — ESTILO DA ENTREVISTA ESTRATÉGICA
   =================================== */

.faq_accordion {
  border-color: rgba(192, 192, 192, 0.1) !important;
  border-radius: 8px;
  background-color: #1a1a1a;
  transition: all var(--transicao-rapida);
}

.faq_accordion:hover {
  border-color: rgba(192, 192, 192, 0.3) !important;
}


/* ===================================
   POPUP DE VÍDEO — IDENTIDADE ROXA
   =================================== */

/* Overlay de fundo — escuro com leve toque roxo */
.bg-popup {
  background-color: rgba(5, 0, 15, 0.88) !important;
}

/* Container do popup */
.element-popup {
  background-color: #0d0d12 !important;
  border: 1px solid rgba(112, 20, 201, 0.4);
  box-shadow:
    0 0 60px rgba(112, 20, 201, 0.2),
    -4px 2px 8px 2px rgba(0, 0, 0, 0.87) !important;
}

/* Título "APROVADOS PLATINUM" */
.text-block-7.pacotes {
  color: #ffffff !important;
  letter-spacing: 0.06em;
}

/* Botão CTA do popup — remove aço escovado, aplica gradiente roxo */
.button-2.sec-button.popup.menor.assinatura.grande {
  color: #fff !important;
  background-image: linear-gradient(135deg, var(--roxo-destaque), var(--roxo-hover)) !important;
  background-position: unset !important;
  background-size: unset !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 20px rgba(112, 20, 201, 0.5) !important;
  transition: all 0.3s ease;
}

.button-2.sec-button.popup.menor.assinatura.grande:hover {
  box-shadow: 0 6px 30px rgba(112, 20, 201, 0.7) !important;
  transform: translateY(-2px) scale(1.02);
}

/* Botão X de fechar */
.text-block-8 {
  color: #c084fc !important;
  background: rgba(112, 20, 201, 0.15);
  border: 1px solid rgba(112, 20, 201, 0.45);
  border-radius: 8px;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.text-block-8:hover {
  background: rgba(112, 20, 201, 0.35);
  box-shadow: 0 0 14px rgba(112, 20, 201, 0.55);
}

/* ===================================
   CARROSSEL APROVADOS — BOTÕES PREV/NEXT
   =================================== */

.previous-button,
.next-button {
  background: rgba(112, 20, 201, 0.12) !important;
  border: 1px solid rgba(112, 20, 201, 0.4) !important;
  border-radius: 12px !important;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 0 16px rgba(112, 20, 201, 0.15);
}

.previous-button:hover,
.next-button:hover {
  transform: scale(0.95) !important;
  background: rgba(112, 20, 201, 0.28) !important;
  box-shadow: 0 0 28px rgba(112, 20, 201, 0.5) !important;
  border-color: rgba(140, 50, 220, 0.7) !important;
}

/* Ícone arrow — cor roxa */
.fa-icon.numbers.arrow {
  color: #c084fc !important;
  -webkit-text-stroke-color: transparent !important;
}

/* ===================================
   11. BOTÃO FLUTUANTE DE CONSULTOR
   Copiado da Entrevista Estratégica
   =================================== */

.floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--roxo-destaque), var(--roxo-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(112, 20, 201, 0.5);
  z-index: 9999;
  transition: all var(--transicao-rapida);
  text-decoration: none;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(112, 20, 201, 0.7);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  color: #fff;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .floating-btn {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
  }
}

/* ===================================
   12. SEPARADORES DE SEÇÃO
   =================================== */

/* ===================================
   13. CTA FINAL — GRADIENTE ROXO VIBRANTE
   Multi-tom para tirar o aspecto flat, com textura visível
   =================================== */

.section_home_11_cta {
  background:
    radial-gradient(ellipse at 85% 20%, rgba(190, 100, 255, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(80, 10, 170, 0.45) 0%, transparent 45%),
    linear-gradient(135deg, #5c12a5 0%, #7014c9 45%, #8826e0 100%) !important;
  position: relative;
}

/* Textura: sparkles 4pts (Platinum) + ttten.svg em tile */
.section_home_11_cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M70 38L73 67L102 70L73 73L70 102L67 73L38 70L67 67Z' fill='white'/%3E%3Cpath d='M115 18L116 26L124 27L116 28L115 36L114 28L106 27L114 26Z' fill='white'/%3E%3Cpath d='M22 98L23 104L29 105L23 106L22 112L21 106L15 105L21 104Z' fill='white'/%3E%3Cpath d='M108 95L109 99L113 100L109 101L108 105L107 101L103 100L107 99Z' fill='white'/%3E%3Cpath d='M28 30L29 34L33 35L29 36L28 40L27 36L23 35L27 34Z' fill='white'/%3E%3C/svg%3E"),
    url('../images/ttten.svg');
  background-size: 140px, 500px;
  opacity: 0.07;
  pointer-events: none;
}

/* Heading "Oportunidade única" — branco sobre roxo */
.text-color-white.last-head {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Botão "COMPRAR PLATINUM" — branco com texto roxo para contraste */
.button.is-secondary.is-alternate.black.ultmcta {
  background-color: #ffffff !important;
  background-image: none !important;
  color: var(--roxo-destaque) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

.button.is-secondary.is-alternate.black.ultmcta:hover {
  background-color: #f0e6ff !important;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.35);
  transform: scale(1.03);
}

/* Botão "FALAR COM CONSULTOR" — troca gradiente dourado por roxo */
.button-4 {
  background-image: linear-gradient(135deg, var(--roxo-destaque), var(--roxo-hover)) !important;
  background-color: var(--roxo-destaque) !important;
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 20px rgba(112, 20, 201, 0.45);
  transition: all 0.3s ease;
}

/* ===================================
   PRECIFICAÇÃO DINÂMICA POR LOTE
   =================================== */

#label-lote {
  text-align: center !important;
  width: 100%;
}

.button-4:hover {
  border: none !important;
  box-shadow: 0 6px 30px rgba(112, 20, 201, 0.65) !important;
  transform: translateY(-2px) scale(1.02);
  font-size: inherit !important;
}
