.button-group {
	background-color: white;
    border-radius: 30px;
    padding: 10px;
  display: flex;
  justify-content: space-between; /* distribuye en todo el ancho */
  width: 100%; /* ocupa todo el ancho del contenedor padre */
  max-width: 1000px; /* opcional: controla el ancho máximo */
  margin: 0 auto; /* centra horizontalmente el grupo */
}

.button-group .btn {
  margin-right: 20px;
  flex: 1; /* todos los elementos ocupan el mismo ancho */
  margin: 0 10px;
  text-align: center;
}

.button-group .btn:last-of-type {
  margin-right: 0; 
}

.btn {
  padding: 15px 30px;
  border-radius: 30px;
  border: 1px solid #0052A8;
  background-color: transparent;
  color: #0052A8;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}


.btn.active{
  background-color: #0052A8;
  color: white;
  border: none;
}

@media (max-width:768px){
	.btn{
		padding: 15px 20px;
		font-size: 14px;
	}
}

@media (max-width:426px){
	.button-group{
		flex-wrap: wrap;
		justify-content: center;
	}
	.button-group .btn {
		margin: 5px 10px;
	}
	.btn{
		font-size: 14px;	
	}
}