* {
    scroll-behavior: smooth;
    margin: 0;
    font-family: 'Circular Std', sans-serif;
    font-style: normal;
}

#contato {
    margin-top: 50px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contato h3 {
    margin: 50px;

}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.label-float input,
select,
textarea {
    color: var(--text-primary);
    background-color: var(--ligth-gray);
    border: none;
    outline: none;
    width: 100%;
    height: 58px;
    padding: 2% 0px 0px;
    font-size: 16px;
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    text-indent: 20px;
}

.label-float {
    position: relative;
    color: var(--text-primary);
}


.label-float textarea {
    margin-top: 10px;
    width: 100%;
    height: 158px;
}

#contato button {
    padding: 21px 50px;
    width: 100%;
    height: 66px;
    background: var(--text-primary);
    border: none;
    color: var(--white);
}

.checkbox {
    display: inline-block;
    vertical-align: sub;
}

.checkbox input {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.checkbox input:checked {
    background-color: var(--text-primary);
}

.checkbox label {
    font-weight: 450;
    font-size: 1rem;
    line-height: 150%;
    color: var(--text-gray);
}

.checkbox p {
    color: var(--text-gray);
}

.checkbox p b {
    color: var(--text-primary);
}

.checkbox p a{
    text-decoration: none;
}

.checkbox p a:hover{
    opacity: 0.6;
}

.label-float input:focus {
    border: 2px solid var(--gray);
}


.label-float input::placeholder {
    color: transparent;
}

.label-float label {
    pointer-events: none;
    position: absolute;
    top: calc(50% - 8px);
    left: 15px;
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    padding: 5px;
    box-sizing: border-box;
}

.label-float input:required:invalid+label {
    color: var(--required);
}

.label-float input:focus:required:invalid {
    border: 2px solid var(--required);
}

.label-float input:required:invalid+label:before {
    content: '*';
}

.label-float input:required:invalid+label:before {
    content: '*';
}

.label-float input:focus+label,
.label-float input:not(:placeholder-shown)+label {
    font-size: 13px;
    top: 10%;
    color: var(--gray);
}

.container {
    width: 60%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 0fr 0fr;
    gap: 13px 15px;
    grid-auto-flow: row;
    grid-template-areas:
        "nameFull nameFull"
        "a1 a2"
        "a3 a4"
        "a5 a6"
        "a7 a8"
        "a9 a10"
        "a11 a11"
        "a12 a12"
        "a13 a13";
}

.nameFull {
    grid-area: nameFull;
}

.a1 {
    grid-area: a1;
}

.a2 {
    grid-area: a2;
}

.a3 {
    grid-area: a3;
}

.a4 {
    grid-area: a4;
}

.a5 {
    grid-area: a5;
}

.a6 {
    grid-area: a6;
}

.a7 {
    grid-area: a7;
}

.a8 {
    grid-area: a8;
}

.a9 {
    grid-area: a9;
}

.a10 {
    grid-area: a10;
}

.a11 {
    grid-area: a11;
}

.a12 {
    grid-area: a12;
}

.a13 {
    grid-area: a13;
}



@media (max-width: 768px) {

    #contato {
        padding: 10px;
    }

    .container {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

}