@media only screen and (min-width: 280px) and (max-width: 414px) {	
	.whats {
		width: 50px !important;
		height: 50px !important;
		bottom: 13vh!important;
		float: right !important;
		right: 15px;
		font-size: 34px !important;
	}
				
}

.whats {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 80px;
    background-color: #0cc937;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 36px;
    z-index: 1000;
}

/* Estilo base dos botões */
.filter-button {
    padding: 10px 20px;
    margin: 5px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Estilo do botão com classe "active" */
.filter-button.active {
    background-color: #ddc29a;
    color: #000;
}

/* Ajuste no :focus */
.filter-button:focus {
    outline: none;
}