.floating-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: #FF5100;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 250px;
    justify-content: center;
}

.floating-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background-color: #e64800;
    color: white;
}

.floating-button i {
    margin-right: 8px;
}

/* Garantir que o footer tenha altura mínima e espaçamento adequado */
.footer {
    min-height: 120px;
    margin-top: 50px;
    padding: 30px 0;
    position: relative;
}

@media (max-width: 768px) {
    .floating-button {
        padding: 12px 20px;
        font-size: 0.9rem;
        left: 20px;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .floating-button {
        padding: 10px 16px;
        font-size: 0.8rem;
        left: 15px;
        width: 180px;
    }
}

