.budget-button {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 20px;
    bottom: 100px; /* Posicionado acima do botão de WhatsApp */
    background-color: #0088cc; /* Cor azul que combina com tema de engenharia */
    color: white;
    border-radius: 50px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid white;
}

.budget-button:hover {
    background-color: #006699;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.budget-button i {
    margin-right: 8px;
    font-size: 18px;
}

/* Para mobile */
@media (max-width: 768px) {
    .budget-button {
        padding: 10px 15px;
        font-size: 14px;
        left: 10px;
        bottom: 80px;
    }
}

.orcamento-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.orcamento-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('src/images/pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.orcamento-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.orcamento-text {
    flex: 1;
    min-width: 300px;
}

.orcamento-features {
    margin-top: 30px;
}

.orcamento-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.orcamento-features .feature-icon {
    width: 40px;
    height: 40px;
    background-color: #0088cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
}

.orcamento-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0088cc;
    box-shadow: 0 0 0 2px rgba(0, 136, 204, 0.1);
    outline: none;
}

.submit-btn {
    background-color: #0088cc;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    background-color: #006699;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .orcamento-content {
        flex-direction: column;
    }
    
    .orcamento-section {
        padding: 60px 0;
    }
}