@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #f1f1f1;
}

nav {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-item: center;
    justify-content: space-between;
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 750px;
    margin-top: 50px;
}

@media only screen and (max-width: 1080px) {
    header {
        margin-top: 30px;
    }
}

header h2 {
    color: #00de0b;
    font-size: 30px;
}

@media only screen and (max-width: 1080px) {
    header h2 {
        font-size: 22px;
    }
}

label {
    color: #3e3e3e;
    font-size: 15px;
    margin-top: 5px;
}

@media only screen and (max-width: 1080px) {
    label {
        font-size: 13px;
        margin-top: 10px;
    }
}

main {
    background-color: #fff;
    padding: 37px 30px 50px 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    box-shadow: 5px 13px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

@media only screen and (max-width: 1080px) {
    main {
        padding: 30px 20px;
    }
}

main .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

main .content .spnQtd {
    text-align: end;
    color: #3e3e3e;
    font-size: 18px;
}

@media only screen and (max-width: 1080px) {
    main .content .spnQtd {
        display: none;
    }
}

main .content .question {
    color: #3e3e3e;
    font-size: 18px;
    margin-bottom: 10px;
    border-left: 4px solid #00de0b;
    padding-left: 15px;
}

@media only screen and (max-width: 1080px) {
    main .content .question {
        margin-top: 10px;
        font-size: 16px;
    }
}

main .content .answers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#button1, .proposta {
    width: 100%;
    text-align: start;
    padding: 12px;
    border: 2px solid #ebe9e8;
    border-radius: 6px;
    cursor: pointer;
    background-color: #f7f6f5;
    color: #3e3e3e;
    transition: 0.4s;
    text-decoration: none;
    margin-top: 5px;
    font-size: 14px;
}

@media only screen and (max-width: 1080px) {
    #button1, .proposta {
        font-size: 13px;
    }
}

#button1:hover,
.proposta:hover{
    border: 2px solid #00E169;
}

#button2 {
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    height: 120px;
    justify-content: center;
    border: 2px solid #ebe9e8;
    border-radius: 6px;
    cursor: pointer;
    background-color: #f7f6f5;
    color: #3e3e3e;
    transition: 0.4s;
    text-decoration: none;
    margin-top: 5px;
    font-size: 14px;
}

@media only screen and (max-width: 1080px) {
    #button2 {
        font-size: 13px;
        width: 130px;
        height: 90px;
    }
}

#button2:hover{
    border: 2px solid #00E169;
}

.icon {
    width: 40px;
    height 100%;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1080px) {
    .icon {
        width: 24px;
        height 100%;
        margin-bottom: 5px;
    }
}

.progress {
    height: 10px;
    background-color: #cecece;
    border-radius: 30px;
    position: relative;
    margin-bottom: 20px;
}

@media only screen and (max-width: 1080px) {
    .progress {
        margin-bottom: 10px;
    }
}

.progress .progress-bar {
    position: absolute;
    height: 100%;
    background-color: #00E169;
    border-radius: 30px;
    width: 0%;
    transition: 0.8s;
}

main .finish {
    display: none;
    flex-direction: column;
    gap: 10px;
    color: #3e3e3e;
    font-size: 22px;
    align-items: center;
}

@media only screen and (max-width: 1080px) {
    main .finish {
        font-size: 16px;
    }
}

.box {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 12px;
}

@media only screen and (max-width: 1080px) {
    .box {
        flex-direction: column;
    }
}

.finish button, a {
    text-align: center !important;
    width: 222px !important;
}

@media only screen and (max-width: 1080px) {
    .finish button, a {
        margin: 5px 0 10px 0 !important;
        width: 100% !important;
    }
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background-color: #3e3e3e;
}

footer .content-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 750px;
}

footer .content-footer text {
    font-size: 14px;
    color: #f1f1f1;
}

@media only screen and (max-width: 1080px) {
    footer .content-footer text {
        font-size: 12px;
    }
}

footer .content-footer div {
    display: block;
    margin-top: 7px;
}

footer .content-footer div .link {
    font-size: 14px;
    color: #b0aeae;
    margin-top: 10px;
    text-decoration: none;
    transition: 0.2s;
}

@media only screen and (max-width: 1080px) {
    footer .content-footer div .link {
        font-size: 12px;
    }
}

footer .content-footer a:hover {
    text-decoration: underline;
    color: #f1f1f1;
}