/* ===== CSS ANALISADOR COMPLETO - 11 ASPECTOS ===== */
/* Estilos para a análise expandida com todos os aspectos */

/* ===== MODAL BASE ===== */
.analisador-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.analisador-modal.show {
  opacity: 1;
  visibility: visible;
}

.analisador-modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
  border: 1px solid rgba(94, 23, 235, 0.3);
  border-radius: 25px;
  padding: 80px 30px 40px 30px; /* CORREÇÃO: Padding-top maior para botão fechar */
  max-width: 900px;
  width: 95%;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
  box-shadow: 0 25px 80px rgba(94, 23, 235, 0.4);
  -webkit-overflow-scrolling: touch; /* CORREÇÃO: Smooth scroll mobile */
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-30px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* ===== BLOQUEIO DE SCROLL DO BODY ===== */
body:has(.analisador-modal.show) {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

/* Fallback se :has() não funcionar */
body.analisador-modal-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}

/* ===== CABEÇALHO E FORMULÁRIO ===== */
.analisador-header {
  text-align: center;
  margin-bottom: 30px;
}

.analisador-header h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  background: linear-gradient(135deg, #5e17eb, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.analisador-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.5;
}

.analisador-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.analisador-input {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 18px 24px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.analisador-input:focus {
  outline: none;
  border-color: #5e17eb;
  box-shadow: 0 0 25px rgba(94, 23, 235, 0.4);
  transform: translateY(-1px);
}

.analisador-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.analisador-btn {
  background: linear-gradient(135deg, #5e17eb, #ff0080);
  border: none;
  border-radius: 15px;
  padding: 18px 35px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.analisador-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(94, 23, 235, 0.5);
}

/* ===== LOADING ===== */
.analisador-loading {
  text-align: center;
  padding: 50px 20px;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-top: 5px solid #5e17eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 25px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#loadingText {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
}

/* ===== BOTÃO FECHAR ===== */
.analisador-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
}

.analisador-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* ===== CABEÇALHO DO RESULTADO COMPLETO ===== */
.resultado-header-completo {
  background: linear-gradient(
    135deg,
    rgba(94, 23, 235, 0.2),
    rgba(255, 0, 128, 0.1)
  );
  border: 2px solid rgba(94, 23, 235, 0.3);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.resultado-perfil {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.resultado-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #5e17eb;
  object-fit: cover;
}

.resultado-info h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.score-geral-grande {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.score-numero {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.score-status {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== MÉTRICAS PRINCIPAIS ===== */
.metricas-principais {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.metrica-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.metrica-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(94, 23, 235, 0.2);
}

.metrica-numero {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #5e17eb;
  margin-bottom: 8px;
}

.metrica-nome {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.metrica-categoria {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ===== PROBLEMA PRINCIPAL DESTACADO ===== */
.problema-principal-destaque {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 128, 0.15),
    rgba(255, 68, 68, 0.1)
  );
  border: 2px solid rgba(255, 0, 128, 0.4);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  text-align: center;
}

.problema-principal-destaque h3 {
  color: #ff0080;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}

.problema-texto {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.problema-urgencia {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.urgencia-crítica {
  background: rgba(255, 68, 68, 0.2);
  color: #ff4444;
  border: 2px solid #ff4444;
}

.urgencia-alta {
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
  border: 2px solid #ffaa00;
}

.urgencia-média {
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  border: 2px solid #00d4ff;
}

/* ===== ANÁLISES DOS 11 ASPECTOS ===== */
.analises-11-aspectos {
  margin-bottom: 40px;
}

.analises-11-aspectos h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.aspecto-analise {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.aspecto-analise:hover {
  border-color: rgba(94, 23, 235, 0.3);
  box-shadow: 0 5px 20px rgba(94, 23, 235, 0.1);
}

.aspecto-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aspecto-header h3 {
  color: white;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

.aspecto-score {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  min-width: 60px;
}

.aspecto-detalhes {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ===== GRADES E DETALHES ===== */
.detalhe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.detalhe-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detalhe-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.detalhe-valor {
  font-weight: 500;
  color: white;
}

/* ===== RECOMENDAÇÕES ===== */
.recomendacao-urgente {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 15px;
  color: #ff6b6b;
  font-weight: 600;
}

.recomendacoes-lista h4 {
  color: #00d4ff;
  font-size: 16px;
  margin-bottom: 12px;
}

.recomendacoes-lista ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recomendacoes-lista li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
}

.recomendacoes-lista li::before {
  content: "🎯";
  position: absolute;
  left: 0;
  top: 8px;
}

/* ===== ENGAJAMENTO DESTACADO ===== */
.destaque-engajamento {
  border: 2px solid rgba(0, 255, 136, 0.3);
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.05),
    rgba(0, 212, 255, 0.05)
  );
}

.engajamento-destaque {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
}

.engajamento-taxa {
  text-align: center;
}

.taxa-numero {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #00ff88;
  line-height: 1;
}

.taxa-classificacao {
  display: block;
  font-size: 14px;
  color: #00d4ff;
  margin-top: 5px;
  font-weight: 600;
}

.engajamento-benchmark {
  text-align: right;
}

.benchmark-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 5px;
}

.benchmark-valor {
  display: block;
  font-size: 18px;
  color: #ffa500;
  font-weight: 700;
}

.alerta-critico {
  background: rgba(255, 68, 68, 0.2);
  border: 2px solid #ff4444;
  border-radius: 10px;
  padding: 15px;
  margin-top: 15px;
  color: #ff6b6b;
  font-weight: 700;
  text-align: center;
  font-size: 16px;
}

/* ===== BENCHMARKING ===== */
.benchmark-categoria {
  background: rgba(94, 23, 235, 0.1);
  border: 1px solid rgba(94, 23, 235, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.categoria-nome {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #5e17eb;
  margin-bottom: 5px;
}

.categoria-potencial {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.metricas-vs-benchmark {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.metrica-comparacao {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.comparacao-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.comparacao-resultado {
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 14px;
}

.comparacao-resultado.acima {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
}

.comparacao-resultado.abaixo {
  background: rgba(255, 170, 0, 0.2);
  color: #ffaa00;
}

/* ===== ALCANCE E CRESCIMENTO ===== */
.alcance-estimado {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.alcance-estimado h4 {
  color: #00d4ff;
  font-size: 16px;
  margin-bottom: 12px;
}

.alcance-numero {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.alcance-observacao {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.fontes-trafego h4 {
  color: #00ff88;
  font-size: 16px;
  margin-bottom: 12px;
}

.fontes-trafego ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fontes-trafego li {
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== CTAS DETECTADOS ===== */
.ctas-detectados h4 {
  color: #ff0080;
  font-size: 16px;
  margin-bottom: 12px;
}

.sem-ctas {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  border-radius: 8px;
  padding: 12px;
  color: #ff6b6b;
  font-weight: 600;
}

/* ===== MONETIZAÇÃO ===== */
.indicadores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.indicador-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 14px;
}

.indicador-nome {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.indicador-status {
  font-weight: 700;
  font-size: 16px;
}

.estrategia-detectada {
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
}

.oportunidades-monetizacao {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 15px;
}

.oportunidades-monetizacao h4 {
  color: #00ff88;
  margin-bottom: 12px;
}

.oportunidades-monetizacao ul {
  padding-left: 25px;
}

/* ===== SUGESTÕES DESTACADAS ===== */
.sugestoes-destaque {
  border: 2px solid rgba(0, 212, 255, 0.4);
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.05),
    rgba(94, 23, 235, 0.05)
  );
}

.prioridades-principais {
  background: rgba(255, 170, 0, 0.1);
  border: 1px solid rgba(255, 170, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
}

.prioridades-principais h4 {
  color: #ffaa00;
  font-size: 18px;
  margin-bottom: 15px;
}

.prioridades-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.prioridade-tag {
  background: linear-gradient(135deg, #ff8c00, #ff4500);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sugestoes-por-prazo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.prazo-urgente {
  background: rgba(255, 68, 68, 0.1);
  border: 2px solid rgba(255, 68, 68, 0.3);
  border-radius: 12px;
  padding: 20px;
}

.prazo-curto {
  background: rgba(255, 170, 0, 0.1);
  border: 2px solid rgba(255, 170, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
}

.prazo-medio {
  background: rgba(0, 212, 255, 0.1);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  padding: 20px;
}

.prazo-urgente h4 {
  color: #ff4444;
  font-size: 16px;
  margin-bottom: 15px;
}

.prazo-curto h4 {
  color: #ffaa00;
  font-size: 16px;
  margin-bottom: 15px;
}

.prazo-medio h4 {
  color: #00d4ff;
  font-size: 16px;
  margin-bottom: 15px;
}

.prazo-urgente ul,
.prazo-curto ul,
.prazo-medio ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prazo-urgente li,
.prazo-curto li,
.prazo-medio li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.prazo-urgente li::before {
  content: "🚨";
  position: absolute;
  left: 0;
  top: 8px;
}

.prazo-curto li::before {
  content: "⏰";
  position: absolute;
  left: 0;
  top: 8px;
}

.prazo-medio li::before {
  content: "🎯";
  position: absolute;
  left: 0;
  top: 8px;
}

/* ===== IDEIAS DE CONTEÚDO ESPECÍFICAS ===== */
.ideias-conteudo-especificas {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.05),
    rgba(94, 23, 235, 0.05)
  );
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}

.ideias-conteudo-especificas h2 {
  color: #00d4ff;
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
}

.ideias-subtitulo {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 16px;
}

.ideias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.ideias-posts,
.ideias-reels,
.ideias-Story {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
}

.ideias-posts h3 {
  color: #ff0080;
  font-size: 18px;
  margin-bottom: 15px;
}

.ideias-reels h3 {
  color: #00ff88;
  font-size: 18px;
  margin-bottom: 15px;
}

.ideias-Story h3 {
  color: #ffa500;
  font-size: 18px;
  margin-bottom: 15px;
}

.ideias-posts ul,
.ideias-reels ul,
.ideias-Story ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ideias-posts li,
.ideias-reels li,
.ideias-Story li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ideias-posts li:last-child,
.ideias-reels li:last-child,
.ideias-Story li:last-child {
  border-bottom: none;
}

.assuntos-trending {
  text-align: center;
}

.assuntos-trending h3 {
  color: #ffa500;
  font-size: 20px;
  margin-bottom: 20px;
}

.assuntos-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.assunto-tag {
  background: linear-gradient(135deg, #5e17eb, #ff0080);
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.assunto-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(94, 23, 235, 0.3);
}

/* ===== DATA COMEMORATIVA ===== */
.data-comemorativa {
  background: linear-gradient(
    135deg,
    rgba(255, 165, 0, 0.1),
    rgba(255, 69, 0, 0.1)
  );
  border: 2px solid rgba(255, 165, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}

.data-comemorativa h2 {
  color: #ffa500;
  font-size: 24px;
  text-align: center;
  margin-bottom: 25px;
}

.data-info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
  align-items: center;
  margin-bottom: 20px;
}

.data-destaque {
  text-align: center;
  background: rgba(255, 140, 0, 0.2);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 15px;
  padding: 25px;
}

.data-nome {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 10px;
}

.data-countdown {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 69, 0, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  margin-top: 10px;
  font-weight: 600;
}

.data-ideias h3 {
  color: #ffa500;
  font-size: 18px;
  margin-bottom: 15px;
}

.data-ideias-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.data-ideia-tag {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.3),
    rgba(255, 69, 0, 0.2)
  );
  border: 1px solid rgba(255, 165, 0, 0.4);
  color: white;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  text-align: center;
  font-weight: 500;
}

.data-dica {
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.data-dica p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.5;
}

/* ===== CSS PLANO DE 7 DIAS ===== */
.plano-7-dias {
  background: linear-gradient(
    135deg,
    rgba(94, 23, 235, 0.05),
    rgba(255, 0, 128, 0.05)
  );
  border: 2px solid rgba(94, 23, 235, 0.3);
  border-radius: 25px;
  padding: 40px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.plano-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.plano-header h2 {
  font-size: 32px;
  color: white;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #5e17eb, #ff0080, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plano-subtitulo {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 20px;
}

.urgencia-banner {
  background: linear-gradient(
    135deg,
    rgba(255, 68, 68, 0.2),
    rgba(255, 170, 0, 0.2)
  );
  border: 2px solid #ff4444;
  border-radius: 15px;
  padding: 15px 25px;
  color: #ffaa00;
  font-size: 16px;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.plano-timeline {
  position: relative;
  z-index: 1;
}

.plano-timeline::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #5e17eb, #ff0080, #00d4ff);
  opacity: 0.3;
}

.passo-dia {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  position: relative;
  opacity: 0;
  animation: slideInLeft 0.6s ease forwards;
}

.passo-dia:nth-child(1) {
  animation-delay: 0.1s;
}
.passo-dia:nth-child(2) {
  animation-delay: 0.2s;
}
.passo-dia:nth-child(3) {
  animation-delay: 0.3s;
}
.passo-dia:nth-child(4) {
  animation-delay: 0.4s;
}
.passo-dia:nth-child(5) {
  animation-delay: 0.5s;
}
.passo-dia:nth-child(6) {
  animation-delay: 0.6s;
}
.passo-dia:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.dia-numero {
  min-width: 100px;
  text-align: center;
  margin-right: 25px;
  position: relative;
}

.dia-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.dia-icone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(94, 23, 235, 0.2),
    rgba(255, 0, 128, 0.2)
  );
  border: 3px solid rgba(94, 23, 235, 0.4);
  border-radius: 50%;
  font-size: 28px;
  margin: 0 auto;
}

.passo-dia.urgente .dia-icone {
  background: linear-gradient(
    135deg,
    rgba(255, 68, 68, 0.3),
    rgba(255, 170, 0, 0.3)
  );
  border-color: #ff4444;
  animation: urgentPulse 1.5s ease-in-out infinite;
}

@keyframes urgentPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 68, 68, 0.8);
    transform: scale(1.05);
  }
}

.passo-conteudo {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.passo-dia.urgente .passo-conteudo {
  background: linear-gradient(
    135deg,
    rgba(255, 68, 68, 0.05),
    rgba(255, 170, 0, 0.05)
  );
  border: 2px solid rgba(255, 68, 68, 0.3);
}

.passo-conteudo:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(94, 23, 235, 0.2);
}

.passo-titulo {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.passo-dia.urgente .passo-titulo {
  color: #ff4444;
}

.passo-descricao {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.passo-acao {
  margin-top: 15px;
}

.lista-acoes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lista-acoes li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
}

.lista-acoes li:last-child {
  border-bottom: none;
}

.acao-urgente {
  text-align: center;
}

.urgencia-texto {
  color: #ffaa00;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.justificativa {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.btn-comprar-servico {
  background: linear-gradient(135deg, #ff4444, #ff0080);
  border: none;
  color: white;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
  animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.btn-comprar-servico:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 68, 68, 0.5);
  background: linear-gradient(135deg, #ff0080, #ff4444);
}

.garantia {
  color: #00ff88;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 600;
}

.badge-urgente {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff4444, #ffaa00);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: shake 2s ease-in-out infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.plano-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(94, 23, 235, 0.2);
}

.resultado-esperado {
  background: linear-gradient(
    135deg,
    rgba(0, 255, 136, 0.1),
    rgba(0, 212, 255, 0.1)
  );
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.resultado-esperado h3 {
  color: #00ff88;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.resultado-esperado ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.resultado-esperado li {
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(
    135deg,
    rgba(94, 23, 235, 0.15),
    rgba(255, 0, 128, 0.1)
  );
  border: 2px solid rgba(94, 23, 235, 0.4);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
}

.cta-final h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-final > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.cta-recomendacao {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
}

.cta-recomendacao h3 {
  color: #00d4ff;
  font-size: 20px;
  margin-bottom: 20px;
}

.servico-recomendado {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.servico-tipo {
  background: linear-gradient(135deg, #5e17eb, #ff0080);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 700;
}

.servico-justificativa {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  max-width: 400px;
}

.cta-botoes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-ver-pacotes {
  background: linear-gradient(135deg, #5e17eb, #ff0080);
  border: none;
  border-radius: 15px;
  padding: 18px 35px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-implementar {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 16px 35px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-ver-pacotes:hover,
.btn-implementar:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(94, 23, 235, 0.4);
}

/* ===== SCROLLBAR PERSONALIZADA ===== */
/* Remove a regra antiga e usa esta */
.analisador-modal-content::-webkit-scrollbar {
  width: 10px;
  -webkit-appearance: none;
}

.analisador-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

.analisador-modal-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #5e17eb, #ff0080);
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

/* Para Firefox */
.analisador-modal-content {
  scrollbar-width: thin;
  scrollbar-color: #5e17eb rgba(255, 255, 255, 0.05);
}

/* Força aplicação em mobile */
@supports (-webkit-touch-callout: none) {
  .analisador-modal-content::-webkit-scrollbar-thumb {
    background: #5e17eb !important;
  }
}

/* ===== BIOGRAFIA NO CARD DE PERFIL ===== */
.resultado-nome-real {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  margin-bottom: 15px !important;
  margin-top: 5px !important;
}

.resultado-biografia {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
  margin: 15px 0 20px 0;
  max-width: 100%;
}

.resultado-biografia p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.resultado-biografia-vazia {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 12px;
  padding: 12px;
  margin: 15px 0 20px 0;
  text-align: center;
}

.resultado-biografia-vazia p {
  color: #ffc107 !important;
  font-size: 13px !important;
  margin: 0 !important;
  opacity: 0.8;
}

/* Para biografias muito longas */
.resultado-biografia p {
  max-height: 120px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(94, 23, 235, 0.5) transparent;
}

.resultado-biografia p::-webkit-scrollbar {
  width: 4px;
}

.resultado-biografia p::-webkit-scrollbar-thumb {
  background: rgba(94, 23, 235, 0.5);
  border-radius: 2px;
}

/* ===== ANIMAÇÕES EXTRAS ===== */
.aspecto-analise {
  animation: slideInUp 0.6s ease;
  animation-fill-mode: both;
}

.aspecto-analise:nth-child(1) {
  animation-delay: 0.1s;
}
.aspecto-analise:nth-child(2) {
  animation-delay: 0.2s;
}
.aspecto-analise:nth-child(3) {
  animation-delay: 0.3s;
}
.aspecto-analise:nth-child(4) {
  animation-delay: 0.4s;
}
.aspecto-analise:nth-child(5) {
  animation-delay: 0.5s;
}

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

.metrica-item {
  animation: fadeInScale 0.5s ease;
  animation-fill-mode: both;
}

.metrica-item:nth-child(1) {
  animation-delay: 0.1s;
}
.metrica-item:nth-child(2) {
  animation-delay: 0.2s;
}
.metrica-item:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInScale {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== RESPONSIVIDADE ===== */

/* ===== DESKTOP RESPONSIVO ===== */
@media (min-width: 769px) {
  .analisador-modal-content {
    max-width: 700px;
    width: 85%;
  }

  /* Card de perfil centralizado */
  .resultado-perfil {
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
  }

  .resultado-avatar {
    width: 120px !important;
    height: 120px !important;
    border: 3px solid #5e17eb;
    margin: 0 auto;
  }

  .resultado-info h2 {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  .resultado-nome-real {
    font-size: 16px !important;
  }

  .score-numero {
    font-size: 42px !important;
  }

  .score-status {
    font-size: 15px !important;
  }

  .resultado-biografia {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .resultado-biografia p {
    font-size: 15px !important;
    text-align: center;
  }
}

@media (min-width: 1201px) and (max-width: 1600px) {
  .analisador-modal-content {
    max-width: 750px;
    width: 60%;
  }
}

@media (min-width: 1601px) {
  .analisador-modal-content {
    max-width: 800px;
    width: 50%;
  }
}

/* ===== TABLET RESPONSIVO ===== */
@media (max-width: 768px) {
  .analisador-modal {
    overflow: hidden !important;
    padding: 5px !important;
    align-items: center !important;
  }

  .analisador-modal-content {
    padding: 80px 20px 40px 20px !important; /* CORREÇÃO: Padding adequado */
    max-width: 95% !important;
    width: calc(100% - 20px) !important;
    margin: 10px auto !important;
    max-height: 100vh !important; /* CORREÇÃO: Altura total da viewport */
    overflow-y: auto !important; /* CORREÇÃO: Só o content tem scroll */
    box-sizing: border-box !important;
    border-radius: 20px !important;
  }

  .analisador-header {
    margin-top: 5px;
    margin-bottom: 25px;
  }

  .analisador-header h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .analisador-header p {
    font-size: 14px;
  }

  /* Perfil responsivo */
  .resultado-perfil {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center !important;
  }

  .resultado-avatar {
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto;
  }

  .resultado-info h2 {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .resultado-nome-real {
    font-size: 14px !important;
    margin-bottom: 10px !important;
  }

  .score-numero {
    font-size: 28px !important;
  }

  .score-status {
    font-size: 12px !important;
  }

  .score-label {
    font-size: 12px !important;
    opacity: 0.8;
  }

  /* Biografia responsiva */
  .resultado-biografia {
    margin: 10px 0 15px 0;
    padding: 12px;
  }

  .resultado-biografia p {
    font-size: 13px !important;
    text-align: left;
  }

  /* Grids responsivos */
  .metricas-principais {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .metrica-numero {
    font-size: 28px;
  }

  .detalhe-grid {
    grid-template-columns: 1fr;
  }

  .indicadores-grid {
    grid-template-columns: 1fr;
  }

  /* Ideias de conteúdo */
  .ideias-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Data comemorativa */
  .data-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .data-ideias-grid {
    grid-template-columns: 1fr;
  }

  /* Problema principal */
  .problema-texto {
    font-size: 16px;
  }

  /* Aspectos */
  .aspecto-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .aspecto-header h3 {
    font-size: 18px;
  }

  .aspecto-score {
    align-self: flex-end;
  }

  /* Engajamento */
  .engajamento-destaque {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .engajamento-benchmark {
    text-align: center;
  }

  /* Prioridades */
  .prioridades-lista {
    flex-direction: column;
    align-items: center;
  }

  .assuntos-tags {
    flex-direction: column;
    align-items: center;
  }

  /* CTA Final */
  .cta-final h2 {
    font-size: 24px;
  }

  .cta-final > p {
    font-size: 16px;
  }

  .cta-botoes {
    flex-direction: column;
    align-items: center;
  }

  .btn-ver-pacotes,
  .btn-implementar {
    width: 100%;
    max-width: 350px;
    font-size: 16px;
    padding: 16px 25px;
  }

  .servico-recomendado {
    flex-direction: column;
    gap: 15px;
  }

  /* Plano 7 dias responsivo */
  .plano-7-dias {
    padding: 25px 15px;
    margin: 25px 0;
  }

  .plano-header h2 {
    font-size: 24px;
  }

  .plano-timeline::before {
    left: 45px;
  }

  .dia-numero {
    min-width: 70px;
    margin-right: 15px;
  }

  .dia-icone {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .passo-conteudo {
    padding: 20px;
  }

  .passo-titulo {
    font-size: 18px;
  }

  .btn-comprar-servico {
    padding: 16px 30px;
    font-size: 16px;
    width: 100%;
    max-width: 300px;
  }

  .resultado-esperado ul {
    grid-template-columns: 1fr;
  }

  .badge-urgente {
    position: static;
    display: inline-block;
    margin-top: 10px;
  }
}

/* ===== MOBILE PEQUENO ===== */
@media (max-width: 480px) {
  .analisador-modal {
    overflow: hidden !important;
    padding: 2px !important;
    align-items: center !important;
  }

  .analisador-modal-content {
    padding: 70px 15px 30px 15px !important;
    border-radius: 15px !important;
    margin: 5px auto !important;
    width: calc(100% - 10px) !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
  }

  /* Botão fechar mobile */
  .analisador-close {
    top: 15px !important;
    right: 15px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .analisador-header {
    margin-top: 5px;
    margin-bottom: 20px;
  }

  .analisador-header h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .analisador-header p {
    font-size: 13px;
  }

  /* Input e botão */
  .analisador-input {
    padding: 14px 18px;
    font-size: 14px;
  }

  .analisador-btn {
    padding: 14px 25px;
    font-size: 16px;
  }

  /* Score e métricas */
  .score-numero {
    font-size: 24px !important;
  }

  .metrica-numero {
    font-size: 24px;
  }

  .metrica-item {
    padding: 20px;
  }

  /* Biografia mobile */
  .resultado-biografia {
    padding: 10px;
    margin: 8px 0 12px 0;
  }

  .resultado-biografia p {
    font-size: 12px !important;
  }

  /* Textos menores */
  .problema-texto {
    font-size: 14px;
  }

  .aspecto-header h3 {
    font-size: 16px;
  }

  /* Plano 7 dias mobile */
  .plano-header h2 {
    font-size: 20px;
  }

  .passo-titulo {
    font-size: 16px;
  }

  .passo-conteudo {
    padding: 15px;
  }

  /* CTAs mobile */
  .cta-final {
    padding: 25px 15px;
  }

  .cta-final h2 {
    font-size: 20px;
  }

  .btn-ver-pacotes,
  .btn-implementar {
    font-size: 14px;
    padding: 14px 20px;
  }
}

/* ===== MOBILE MUITO PEQUENO ===== */
@media (max-width: 360px) {
  .analisador-modal-content {
    padding: 65px 12px 25px 12px !important;
    width: calc(100% - 8px) !important;
    margin: 4px auto !important;
  }

  .analisador-close {
    top: 12px !important;
    right: 12px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 20px !important;
  }

  .analisador-header h2 {
    font-size: 22px;
  }

  .score-numero {
    font-size: 20px !important;
  }

  .metrica-numero {
    font-size: 20px;
  }

  /* ===== ESPAÇAMENTO DE LISTAS EM MOBILE MUITO PEQUENO ===== */
  .recomendacoes-lista li,
  .oportunidades-monetizacao li,
  .fontes-trafego li,
  .prazo-urgente li,
  .prazo-curto li,
  .prazo-medio li {
    padding-left: 25px !important; /* Mínimo para mobile muito pequeno */
    font-size: 12px !important; /* Texto menor */
    line-height: 1.4 !important; /* Altura de linha compacta */
  }

  .recomendacoes-lista li::before,
  .oportunidades-monetizacao li::before,
  .fontes-trafego li::before,
  .prazo-urgente li::before,
  .prazo-curto li::before,
  .prazo-medio li::before {
    left: 3px !important; /* Posição mínima dos ícones */
    font-size: 12px !important; /* Ícones menores */
  }

  /* Cards com padding reduzido em telas muito pequenas */
  .oportunidades-monetizacao {
    padding: 15px !important;
  }
}

/* ===== CORREÇÕES ESPECÍFICAS PARA SCROLL MOBILE ===== */
@media (max-width: 768px) {
  /* Garante que o scroll nunca trave */
  .analisador-modal-content {
    -webkit-transform: translate3d(
      0,
      0,
      0
    ) !important; /* Força aceleração por hardware */
    transform: translate3d(0, 0, 0) !important;
    will-change: scroll-position !important; /* Otimiza para scroll */
  }

  /* Adiciona espaço extra no final do conteúdo */
  .cta-final {
    margin-bottom: 30px !important; /* Espaço extra no último elemento */
  }

  /* Previne bounce scroll */
  .analisador-modal {
    -webkit-overflow-scrolling: auto !important;
  }

  /* Fix para iOS */
  .analisador-modal-content {
    -webkit-overflow-scrolling: touch !important;
    overflow: -moz-scrollbars-vertical !important;
    -ms-overflow-style: -ms-autohiding-scrollbar !important;
  }
}

.analisador-modal-content::-webkit-scrollbar {
  width: 10px;
  -webkit-appearance: none;
}
