html,body{
    background-size: cover;
    background-attachment: fixed;
    background-position:center;
    background-repeat: no-repeat;
    background-image:
        radial-gradient(circle at top, rgba(254,210,164,.16), transparent 34%),
        linear-gradient(150deg, #054523 0%, var(--primary) 42%, #214b6b 100%);
}
.content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 0;
}
.content-box{
    width: 100%;
    flex: 1;
}
.box{
    width:calc(100% - 40px);
    max-width:620px;
    padding: clamp(1.15rem, 2vw, 2rem);
    position: relative;
    margin:20px 0 72px 0;
    box-shadow: 0 28px 60px rgba(0,0,0,.22);
    background-color: rgba(255,255,255,.96);
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 28px;
    color: var(--dark-four);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.box-header{
    width: 100%;
    margin: 10px 0 18px 0;
}
.box-header img{
    width: 100%;
    max-width: min(250px, 56vw);
}
.box h1{
    width: fit-content;
    margin:1.5rem auto 1rem auto;
    padding: 12px 24px;
    background-color: var(--quinary);
    color: var(--secondary);
    border-radius: 999px;
    text-align: center;
    font-size: clamp(1rem, 1vw + .9rem, 1.5rem);
    letter-spacing: .08em;
}
.form-intro{
    max-width: 500px;
    margin: 0 auto 2rem auto;
    text-align: center;
    color: var(--dark-five);
}
form{
    width: 100%;
}
form b{
    display: block;
    width: calc(100% - 15px);
    padding: 12px 0 12px 15px;
    border-radius: 10px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--quinary) 0%,  var(--light-one) 100%);
    color: var(--secondary);
    letter-spacing: .05em;
}
.inputs{
    width: 100%;
    background-color: var(--light-one);
    margin-bottom: 20px;
}
.input-fathers, .input-psicotropicos{
    display: none;
}
.inputs p{
    margin-bottom: 10px;
    padding: 0 0 0 14px;
    border-left: 3px solid var(--quinary);
    font-family: 'Poppins Medium', sans-serif;
    color: var(--tertiary);
}
.check-multi,
.check-double,
.inputs.txt-small{
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.06);
    background: linear-gradient(180deg, rgba(248,248,250,.94) 0%, rgba(255,255,255,1) 100%);
}
.check-multi .option{
    display: block;
    background: var(--light-two);
    padding: 8px 12px;
    border-radius: 10px;
    margin-bottom: 6px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    user-select: none;
    border:1px solid transparent;
}
.check-multi input[type="radio"] {
    display: none;
}
.check-multi input[type="radio"]:checked + label {
    background: var(--quinary);
    border-color: rgba(0,102,51,.14);
}
.check-double label{
    display: inline-block;
    background: var(--light-two);
    padding: 8px 14px;
    border-radius: 10px;
    margin-bottom: 6px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s, border-color 0.3s;
    border:1px solid transparent;
}
.check-double label:last-child{
    margin-left: 6px;
}
.check-double input[type="radio"] {
    display: none;
}
.check-double input[type="radio"]:checked + label {
    background: var(--quinary);
    border-color: rgba(0,102,51,.14);
}
.inputs textarea{
    min-height: 96px;
}
.inputs:last-child{
    margin-bottom: 0;
}
form input{
    color: var(--tertiary);
}
form input:focus,
.inputs textarea:focus{
    border-color: rgba(0,102,51,.45);
    box-shadow: 0 0 0 4px rgba(0,102,51,.08);
}
.input-verify{
    width:100%;
    color:var(--secondary);
}
.input-verify span{
    padding-top:10px;
}
.section-cities nav{
    width: 100%;
    top: calc(100% - 6px);
    left: 0;
    padding: 10px 10px 8px 10px;
    z-index: 990;
    position:absolute;
    border-radius: 0 0 16px 16px;
    border:1px solid rgba(0,0,0,.08);
    border-top:none;
    box-shadow: 0 14px 26px rgba(0,0,0,.08);
    background-color: var(--light-one);
    display: none;
}
.section-cities nav ul{
    width: 100%;
    max-height: 180px;
    overflow-y: auto;
}
.section-cities nav ul li{
    min-height: 36px;
    display:flex;
    align-items:center;
    padding: 8px 6px;
    list-style: none;
    cursor: pointer;
    color:var(--dark-five);
    border-radius: 8px;
}
.section-cities nav ul li:hover{
    background-color: var(--light-two);
}
input:autofill,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus{
    -webkit-text-fill-color: var(--tertiary) !important;
    transition: background-color 500000s ease-in-out 0s !important;
}
.radios-opcoes input{
    margin-bottom: 10px;
}
input[type=submit]{
    width: 100%;
    height: 52px;
    border:none;
    background-image: linear-gradient(135deg, #00562B 0%, var(--primary) 100%);
    background-color: var(--primary) !important;
    color: var(--light-one);
    border-radius: 14px;
    cursor: pointer;
    text-shadow: 2px 2px 3px rgba(0,0,0,.2);
    font-weight: 600;
    letter-spacing: .04em;
    box-shadow: 0 14px 24px rgba(0,102,51,.18);
}
.return-message{
    color:var(--secondary);
    text-align: center;
    width:100%;
    font-weight: 600;
    min-height: 28px;
    padding:24px 0 10px 0;
    overflow: hidden;
}
.loader-mini{
    width: 32px;
    height: 32px;
    border: 4px solid var(--primary);
    border-bottom-color: transparent;
    border-radius: 50%;
    margin-bottom: 10px;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
.phrase-terms{
    width: 100%;
    text-align: center;
    margin:0 auto 40px auto;
    font-weight: 400;
    max-width: 460px;
    line-height: 1.7;
}
.phrase-terms a{
    color:var(--primary);
}
.box-footer{
    width: 100%;
    height: fit-content;
    position: absolute;
    bottom: -48px;
    left: 50%;
    text-shadow: 2px 2px 2px rgba(0,0,0,.2);
    transform: translateX(-50%);
    text-align: center;
    color: var(--light-one);
    letter-spacing: 1px;
}
.box-footer a{
    color: var(--light-one);
    padding: 0 4px;
}
.terms-text{
    width: calc(100% - 1.3rem);
}
.terms-text b{
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}
.terms-text p{
    margin-bottom: 10px;
}
.terms-btn{
    border-top:1px solid var(--light-three);
    width: calc(100% - 1.3rem);
    height: 40px;
    padding-top: 20px;
    margin-bottom: 20px;
}
.terms-btn button{
    width: fit-content;
    padding: 10px 20px;
    border:none;
    background: linear-gradient(135deg, #00562B 0%, var(--primary) 100%);
    color: var(--light-one);
    border-radius: 10px;
    cursor: pointer;
    text-shadow: 2px 2px 3px rgba(0,0,0,.2);
}
.radios-opcoes label{
    display:flex;
    align-items:center;
    gap:.55rem;
    width:100%;
    padding:.55rem .75rem;
    border-radius:12px;
    background-color:var(--light-two);
    margin-bottom:.5rem;
}
.radios-opcoes input{
    width:auto !important;
    height:auto !important;
    margin:0;
}
#campo-outros{
    padding-top:.35rem;
}
@media only screen and (max-width: 960px) {
    html,body{
        background-attachment: scroll;
    }
    .container{
        width: 100%;
    }
    .content{
        padding: 0;
    }
    .box{
        width:calc(100% - 40px);
        max-width:100%;
        padding: 18px 18px 24px 18px;
        margin:0;
        box-shadow:none;
        border-radius: 0px;
        border:none;
        backdrop-filter:none;
        -webkit-backdrop-filter:none;
        min-height:100%;
    }
    .box h1{
        width: 100%;
    }
    .check-double label{
        width: calc(50% - 8px);
        text-align: center;
    }
    .box-footer{
        position: static;
        left: auto;
        bottom: auto;
        transform: none;
        margin-top: 1rem;
        text-shadow: none;
    }
}
