section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    user-select: none;
}

.hidden-section {
    display: none;
}

.active-section {
    display: flex;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
}

/* AQUI É A BARRINHA DE PROGRESOOOO, ALGM MEXE? */
progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1001;
    
}

/* .progress-bar {
    height: 100%;
    width: 20%;
    background-color: #7cbfff;
    transition: width 0.3s ease;
} */

.form-container {
    background-color: rgba(228, 235, 245, 0.7);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: calc(100vh - 100px);
    position: relative;
    z-index: 1;
}

.box-1{
    width: 80%;
    border: solid 1px #000;
}

.robot-icon {
    position: absolute;
    top: -130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}

.robot-icon img {
    min-width: 125px;
    height: auto;
}

.robot-icon2 {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}

.robot-icon2 img {
    max-width: 180px;
    height: auto;
}

h2, h3, p {
    color: #252525;
    margin: 20px 0;
    font-weight: 500;
    font-size: 1.4rem;
}

label {
    justify-content: start;
    display: flex;
    margin: 15px 10px 10px 15px;
    color: #333;
    font-weight: bold;
}

input {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 18px;
    box-sizing: border-box;
    
}

.botoes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.botao {
    width: 100%;
}

.botao button {
    width: 95%;
    padding: 10px;
    font-size: 1rem;
    border: 2px solid #007bff;
    border-radius: 5px;
    background-color: transparent;
    color: #007bff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.botao button:hover,
.botao button.active {
    background-color: #012144;
    color: white;
}

#nextButton {
    padding: 10px 30px;
    font-size: 1rem;
    border: 2px solid #000;
    border-radius: 5px;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    margin-bottom: 20px;
}

#nextButton:hover {
    background-color: #000;
    color: #fff;
}

@media (max-width: 600px) {
    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    .botoes-container {
        grid-template-columns: 1fr;
    }
}

.border {
    border: solid 3.5px #012144;
    width: 100%;
    border-radius: 20px;
    
}