:root {
  --primaria: #200147;
  --secundaria: #ac510c;
  --gradiente: linear-gradient(135deg, #a76534, #ac510c);;
  /* --gradiente: linear-gradient(135deg, #4f0da7, #200147); */
  
}
.text-warning,
.text-primary
{
  color:var(--secundaria) !important  ;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9fb;
}
.hero {
  background: var(--gradiente);
  color: white;
  padding: 6rem 0;
}
.btn-gradiente,
.btn-primary{
  background: linear-gradient(to right, #F6AF00, #c78f01);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-gradiente:hover{
  background: #c78f01;
}
.btn-primary:hover{
  background: #c78f01;
}
.bg-secondary-dark {
  background-color: #1e1f26;
}
.tendencias-nova {
  font-family: 'Inter', sans-serif;
}
.tendencias-nova p {
  line-height: 1.6;
}
.ilustracao-tendencia {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 130px;
  opacity: 0.6;
}



input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--secundaria) !important; /* troque aqui */
  margin-top: -7px;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

/* Cor da trilha cheia (apenas no Chrome) */
input[type="range"]::-webkit-slider-runnable-track {
  background: #e5e9ed;
  height: 6px;
  border-radius: 5px;
}


input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--secundaria) !important;
  border-radius: 5px;
  outline: none;
  accent-color: transparent; /* remove azul do padrão */
}

input[type="range"]::-moz-range-track {
  background: #e5e9ed;
  height: 6px;
  border-radius: 5px;
}

input[type="range"]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: var(--secundaria) !important; /* troque aqui */
  cursor: pointer;
  border: none;
}