body { 
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f4f6f8;
    color: #303030;
  }
  
  .analysis-container {
    display: flex;
    height: 100vh;
  }
  
  .left-panel {
    width: 340px;
    background-color: #1F2326 !important;
    padding: 24px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    border-right: 1px solid #e1e4e8;
  }
  
  .map-panel {
    flex: 1;
    position: relative;
  }
  
  #map {
    width: 100%;
    height: 100%;
  }
  
  /* Estilo dos Cards */
  .card {
    background-color: rgba(224, 224, 224, 0.1) !important;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  
  .card h2 {
    font-size: 0.95rem;
    color: #E0E0E0 !important;
    margin: 0;
    font-weight: 600;
  }
  
  .card p {
    margin: 10px 0 0 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #E0E0E0 !important;
    line-height: 1.3;
  }
  
  /* Estilo para textos menores e rótulos dentro dos cards */
  .card .small-text {
    font-size: 0.85rem;
    color: #707070;
    margin-top: 4px;
  }
  
  /* Botões e links dentro dos cards */
  .card a,
  .card button {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    color: #2BC4C3;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .card a:hover,
  .card button:hover {
    color: #1aa3a0;
  }
  
  /* Listas (Principais Locais, Principais Produtos) */
  .list-box {
    margin-bottom: 18px;
  }
  
  .list-box h3 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
  }
  
  .list-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  /* Específico para a lista de Principais Produtos */
  .produtos-lista {
    margin-top: 10px;
  }
  
  .list-box li {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #404040;
  }
  
  /* Estilo específico para os títulos dos produtos */
  .produto-titulo {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px; /* Ajuste conforme necessário */
  }
  
  /* Comportamento do Cliente */
  .customer-behavior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-top: 20px;
  }
  
  .behavior-stage {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  

  .stage-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  }
  
  .stage-count {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 8px;
    color: #E0E0E0 !important;
  }
  
  .stage-label {
    font-size: 0.85rem;
    color: #E0E0E0;
    margin-top: 6px;
  }
  
  /* Scrollbar personalizado */
  ::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: #f4f6f8;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #d0d7de;
    border-radius: 20px;
  }
  

  .locais-lista {
    list-style: none;
    padding-left: 0;
}


.locais-lista2 {

    font-size: 15px;
}


/* Remove os marcadores das listas de locais */
.locais-lista {
    list-style: none;
    padding-left: 0;
  }
  /* Estilo para os ícones com ação: tamanho maior */
  .stage-icon.action {
    width: 40px !important;
    height: 40px !important;
  }
  /* Nova abordagem para a linha de conexão:
     Utilizamos um pseudo-elemento no container para alinhar a linha com o centro das 3 bolinhas */
  .customer-behavior {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .customer-behavior::before {
    content: "";
    position: absolute;
    top: 16%;
    left: calc( (100% / 6) );
    right: calc( (100% / 6) );
    height: 2px;
    background: #f0f2f4;
    z-index: 1;
  }
  .behavior-stage {
    position: relative;
    z-index: 2;
  }


  li {
    color: #E0E0E0 !important;
  }