/* BODY */

body {
    font-family: Arial, sans-serif;
    background-image: url('imagens/PapelDeParede.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* LOGO */
.instagram {
    width: 25%;
    max-width: 60px;
    height: auto;
    display: block;
    margin: 10px auto;
}

/* ETAPAS */
.step {
    display: none;
}

.step.active {
    display: block;
}

/* BOTÕES */
button {
    background-color: #FFA843;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
}

button:hover {
    background-color: #0097B2;
}

/* INPUTS, SELECTS E TEXTAREAS */
label {
    display: block;
    margin: 10px 0 5px;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    height: 100px;
    resize: none;
}

/* RESPONSIVO */
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    p {
        font-size: 0.9rem;
    }
    .container {
        padding: 15px;
    }
}
