/* Importa o Font Awesome direto no seu CSS */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Estilo do botão flutuante */
.float {
    padding-top: 8px;
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: transform 0.2s;
}

.float:hover {
    transform: scale(1.1);
}

.float i {
    margin-top: 15px;
}

.logo {
    width: 50px;
    height: 50px;
}