.btn-wsp,
.btn-inicio {
    width: 60px;
    height: 60px;
    background-color: #25d366; /* Verde WhatsApp */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    font-size: 24px;
}

.btn-inicio {
    background-color: #007bff; /* Azul para inicio */
}

.btn-wsp:hover,
.btn-inicio:hover {
    transform: scale(1.1);
}
@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp
    .btn-inicio{
        width:63px;
        height:63px;
        line-height: 66px;
	}
}