.explicacao {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.stats-container {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  border-left: 4px solid #007bff;
  border-radius: 8px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  padding: 10px 15px;
  transition: background 0.3s;
}

.stat-card:hover {
  background: #e9ecef;
}

.stat-title {
  font-weight: bold;
  color: #333;
}

.stat-value {
  color: #007bff;
  font-weight: bold;
}



.explicacao-balao {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
  color: #333;
  width: 250px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}


.stat-card:hover .explicacao-balao {
  display: block;
  opacity: 1;
  top: 30px; /* Ajuste a distância do balão em relação ao ícone de interrogação */
  left: 10px;
}


.ff-panel {
  max-width: 420px;
  margin: 30px auto;
  background: #121212;
  border-radius: 14px;
  padding: 18px;
  color: #fff;
  box-shadow: 0 0 30px rgba(0,0,0,.6);
}

.ff-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
}

.ff-header h2 {
  font-size:15px;
  letter-spacing:1px;
  color:#f5c400;
  text-transform:uppercase;
}

.ff-slider {
  margin-bottom:14px;
}

.ff-slider label {
  display:block;
  font-size:13px;
  margin-bottom:5px;
}

.slider-row {
  display:flex;
  align-items:center;
  gap:6px;
}

.slider-row input[type=range] {
  flex:1;
  accent-color:#f5c400;
}

.slider-row button {
  width:28px;
  height:28px;
  background:#1f1f1f;
  border:1px solid #444;
  color:#fff;
  font-size:16px;
  cursor:pointer;
  border-radius:4px;
}

.slider-row span {
  width:36px;
  text-align:right;
  font-size:13px;
}