/* .star-icon {
	color: #ccc;
	cursor: pointer;
}
input[type="radio"]:checked + .star-icon {
	color: gold;
} */

/* CSS */

input[type="checkbox"] {
  transform: scale(1.6); /* aumenta o tamanho — ajuste o valor */
  cursor: pointer;
  accent-color: #007bff; /* (opcional) muda a cor da caixinha */
}

.star-group .star-icon {
  font-size: clamp(2.6rem, 2.5vw, 3rem) !important; 
  color: #ccc;
  cursor: pointer;
  transition: color 0.15s;
}

.star-group .star-icon.selected {
  color: gold;
}

/* Escala responsiva */
.scale-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 2px;
  width: 100%;
  overflow: hidden;
}

.scale-item {
  flex: 1;
}

.scale-item .button {
  width: 100%;
  aspect-ratio: 1 / 1.7; /* formato retangular em pé */
  font-size: clamp(0.65rem, 1.8vw, 0.9rem);
  padding: 0;
  margin: 0;
  border-radius: 4px;
  transition: all 0.15s ease;
  cursor: pointer;
}

/* Estado selecionado */
.scale-item .button.is-selected {
  background-color: #3273dc; /* azul padrão Bulma */
  color: white;
  border-color: #3273dc;
  box-shadow: 0 0 6px rgba(50, 115, 220, 0.6);
  transform: scale(1.05);
}

/* Legenda inferior */
.scale-legend {
  display: flex;
  justify-content: space-between;
  color: #555;
  font-size: clamp(0.85rem, 1.8vw, 1.2rem);
  margin-top: 6px;
}

.legend-item {
	font-size: 1.4 !important;
}

@media (max-width: 800px) {
	.legend-item {
		font-size: 1.7rem !important;
	}
}

@media (max-width: 600px) {
	.legend-item {
		font-size: 0.95rem !important;
	}
}

.legend-item.left {
  text-align: left;
  margin-left: 5px;
}
.legend-item.center {
  text-align: center;
  flex: 1;
}
.legend-item.right {
  text-align: right;
  margin-right: 5px;
}

/* Ajuste para telas pequenas */
@media (max-width: 480px) {
  .scale-item .button {
    font-size: 0.8rem;
    aspect-ratio: 1 / 2; /* ainda mais fino no celular */
  }
}


.titulo-inicio {
	 font-size: clamp(2.25rem, 2.5vw, 2.25rem) !important;
}

@media (max-width: 600px) {
  .titulo-inicio {
  	 font-size: 1.9rem !important;
  }
}

.form-cadastro {
	width: 600px;
}


@media (max-width: 600px) {
	.form-cadastro {
		width: inherit;
	}
}

.autorizo {
	font-size: 1.3rem !important;
}	

@media (max-width: 800px) {
	.autorizo {
		font-size: clamp(2rem, 2.5vw, 2rem) !important;
	}	
}

.mensagem-cadastro {
	font-size: 1.6rem !important;
}

@media (max-width: 800px) {
	.mensagem-cadastro {
		font-size: 2rem !important;
	}
}

@media (max-width: 600px) {
	.mensagem-cadastro {
		font-size: 1.8rem !important;
	}
}

@media (max-width: 600px) {
  .autorizo {
	 font-size: 1.4rem !important;
 } 
}


.texto-explicativo {
	font-size: 1.4rem !important;
} 

@media (max-width: 800px) {
	.texto-explicativo {
		font-size: clamp(1.3rem, 2.5vw, 1.6rem) !important;
	} 
} 


@media (max-width: 600px) {
.texto-explicativo {
	 font-size: 1rem !important;
 } 
}

.texto-pergunta {
	 font-size: 2rem !important;
} 

@media (max-width: 800px) {
.texto-pergunta {
	 font-size: clamp(2.4rem, 2.4vw, 2.8rem) !important;
	} 
} 

@media (max-width: 600px) {
  .texto-pergunta {
	 font-size: 1.8rem !important;
  } 
}


.estilo-comentario {
	font-size: clamp(1.3rem, 2vw, 1.4rem) !important;
}

@media (max-width: 600px) {
	.estilo-comentario {
		height: 30px !important;
		font-size: 1rem !important;
	}
}	


