.orcamento-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.orcamento-form h2 {
    text-align: center;
    margin-bottom: 15px;
}

.orcamento-form label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.orcamento-form input,
.orcamento-form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#etapa2,
#etapa3 {
    display: none;
}

.show {
    display: block !important;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
