/* FONTS */
@font-face {
    font-family: "Roboto";
    src: url('../fonts/roboto-regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Roboto";
    src: url('../fonts/roboto-bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* VARIAVEIS */
:root {
    --verde: #99ff33;
    --preto: #252525;
    --branco: #fff;
}

/* NORMALIZE */
button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}@use "../abstract" as *;/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;text-size-adjust:100%}body{margin:0}details,main{display:block}h1{font-size:2em;margin:0 0 .67em}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{appearance:none}::-webkit-file-upload-button{appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}

/* GLOBAL */
body {
    font-family: "Roboto",sans-serif;
    font-size: .9rem;
    color: #676767;
    line-height: 1.5;
    overflow-x: hidden;
}


* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}
main {
    padding-top: 5rem;
    padding-bottom: 5rem;
    flex: 1 0 auto;
}

.wrap {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.container-xl {
    max-width: 1240px;
}

/* HEADER */
header {
    background-color: var(--preto);
    color: var(--branco);
    text-align: center;
    padding: 1.5rem 0;
}

.logo {
    max-width: 20rem;
    margin: 20px auto;
}

/* FORMULARIO */
.formulario label {
    color: #676767;
    margin-bottom: .4rem;
    display: block;
    font-weight: 700;
}

.formulario__campo {
    margin-bottom: 1.5rem;
    position: relative;
}

.campo {
    background-color: #f2f2f2;
    color: var(--preto);
    border: 0;
    border-bottom: 2px solid var(--preto);
    padding: .75rem .75rem .5rem;
    outline: none;
    transition: all .2s ease;
}

.campo[type="number"] {
    width: 100%;
    padding-left: 1.75rem;
}

.campo[type="text"],
.campo[type="email"],
select.campo {
    width: 100%;
}

.campo:focus {
    border-bottom: 2px solid var(--verde);
}

.campo-prefix {
    position: absolute;
    left: .5rem;
    bottom: 7px;
    font-weight: 400;
}

.submit {
    background-color: var(--preto);
    color: var(--branco);
    border: 0;
    border-radius: 5px;
    font-size: 1.1rem;
    padding: .75rem 3rem;
    transition: all .2s ease;
    cursor: pointer;
}

.submit:hover {
    background-color: var(--verde);
    color: var(--preto);
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
}

/* CHECKBOX */
.checklabel {
    position: relative;
    padding-left: 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.3;
}

.checkbox {
    visibility: hidden;
    position: absolute;
}

.checkmark {
    border: 1px solid #aaa;
    display: block;
    width: 1rem;
    height: 1rem;
    position: absolute;
    left: 0;
    border-radius: 3px;
    transition: all .1s ease;
}
.checkmark::after {
    transition: all .3s cubic-bezier(0.075, 0.82, 0.165, 1);
    opacity: 0;
    content: url('../images/checkmark.svg');
    transform: scale(0);
    display: block;
}

.checkbox:checked ~ .checkmark {
    background-color: var(--verde);
}
.checkbox:checked ~ .checkmark::after {
    opacity: 1;
    transform: scale(1);
}

/* QUADRO */
.quadro {
    background-color: #efefef;
    border-bottom: 1px solid var(--verde);
    padding: 0.5rem 2rem;
    border-radius: 2px;
}

/* FOOTER */
footer {
    background-color: var(--preto);
    text-align: center;
    color: #777;
    padding: 50px 0!important;
}

footer ul {
    margin: 0;
    padding: 0;
}

.sociais {
    text-align: center;
}

.sociais__link {
    list-style: none;
    display: inline-block;
    padding: 0 .25rem;
    transition: all .2s ease;
}

.sociais__link:hover {
    transform: translateY(-3px);
}

.sociais__link img {
    width: 1.7rem;
    height: 1.7rem;
    vertical-align: bottom;
}

.sociais__link a {
    display: block;
}


@media screen and (max-width:767px){
    .texto, .formulario {margin-bottom: 3rem;}
    .quadro {padding: 0.5rem 1rem;}
}

.text-danger {
    color: #F00;
}
.mb {
    margin-bottom: 20px;
}
