/* Reset CSS */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0}


/* Root Project */
:root {
    --azul: #095BD4;
    --azul-claro: #E8EAF2;
    --laranja: #FF8B00;
    --plus: 'Plus Jakarta Sans', sans-serif;
    --inter: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--azul-claro);
    box-sizing: border-box;
    font-family: var(--plus);
    font-size: 14px;
    line-height: 1;
    overflow-x: hidden;
    position: relative;
}

body.loading:before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(../img/loading.gif) center center no-repeat #ffffffa5;
    background-size: 120px;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

img {
    max-width: 100%;
}

.container {
    width: 1240px;
    margin: auto;
    display: block;
}

.cta {
    background: var(--laranja);
    color: #fff;
    font-size: 20px;
    font-family: var(--plus);
    padding: 20px 80px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    width: fit-content;
    text-decoration: none;
    transition: all .5s;
    font-weight: bold;
    box-sizing: border-box;
    border: 0;
    appearance: none;
    cursor: pointer;
    border: 2px transparent solid;
}

.cta.small {
    font-size: 14px;
    padding: 10px 60px;
    line-height: 32px;
}

.cta.w-100 {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.cta.bordered {
    background: #fff;
    border: 2px solid var(--laranja);
    color: var(--laranja);
}

.cta:hover,
.cta.bordered:hover {
    background: var(--azul);
    border: 2px transparent solid;
    color: #fff;
}

h1 {
    font-size: 68px;
    font-weight: bold;
    font-family: var(--inter);
    margin-bottom: 38px;
    line-height: normal;
}

h2 {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 8px;
    font-weight: 700;
}

h3 {
    font-size: 20px;
    font-family: var(--inter);
    margin-bottom: 38px;
    line-height: 26px;
}

h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}



/* Form */
.boxed {
    background: #fff;
    border-radius: 16px;
    padding:48px 40px;
    position: relative;
    display: table;
    width: 100%;
    box-sizing: border-box;
    max-width: 800px;
    margin: auto;
}

.boxed .box {
    margin-bottom: 60px;
    max-width: 800px;
}

.boxed h2 {
    color: var(--azul);
}

.boxed h3 {
    font-size: 16px;
}

.line.two {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    box-sizing: border-box;
    width: calc(100% - 20px);
}

.line.two-v2 {
    display: grid;
    grid-template-columns: 32% 67%;
    gap: 20px;
    box-sizing: border-box;
    width: calc(100% - 1.5%);
}

.line.three {
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%;
    gap: 20px;
    box-sizing: border-box;
    width: calc(100% - 40px);
}

.boxed .buttons,
section.modal .buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

form .aviso {
    background: #FFFDC6;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    line-height: normal;
    margin-bottom: 32px;
}

/* Modal */
section.modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #0000009c;
    z-index: 999;
    top:0;
    left: 0;
    overflow-y: auto;
}

section.modal .box {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    min-width: 400px;
    max-width: 450px;
    box-sizing: border-box;
}

section.modal .box.large {
    max-width: 800px;
}

section.modal .box .close {
    position: absolute;
    right: -20px;
    top: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--laranja);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    cursor: pointer;
    transition: all .5s;
}

section.modal .box .close:hover {
    background: var(--azul);
}

section.modal .box .close:before,
section.modal .box .close:after {
    content: '';
    width: 2px;
    height: 20px;
    background: #fff;
    display: block;
}
section.modal .box .close:after {
    position: absolute;
    top: 9px;
    transform: rotate(270deg) translate(-50%, -50%);
    left: 29px;
}

section.modal .box h2 {
    margin-bottom: 26px;
    color: var(--azul);
}



/* Forms */
form .campo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
}

form .campo label {
    font-size: 14px;
    font-family: var(--inter);
    line-height: 18px;
}

form .campo input,
form .campo select {
    border: 1px #BDBDBD solid;
    padding: 12px;
    font-family: var(--inter);
    font-size: 16px;
    border-radius: 8px;
    line-height: 22px;
    max-width: 100%;
}

form .campo input.invalid,
form .campo select.invalid {
    border-color: red;
    box-shadow: 0 0 5px #ff000057;
}

form .campo select {
    appearance: none;
    background: url(../img/arrow.svg) 97% 12px no-repeat #fff;
}

form .campo .checkbox {
    display: flex;
    align-items: center;
    min-height: 100%;
    padding-top: 12px;
}

form .campo .checkbox label {
    display: flex;
    align-items: end;
    gap: 10px;
}

form .campo .checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    padding: 0;
}

form .campo textarea {
    border-radius: 8px;
    border: 0.5px solid #BDBDBD;
    background: #FFF;
    height: 97px;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding: 15px;
    box-sizing: border-box;
    font-family: var(--plus);
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
    background: var(--azul) !important;
}


/* Nice Select */
.nice-select.open .nice-select-dropdown {
    max-width: 100% !important;
}

.nice-select {
    height: 48px !important;
    border: 1px #BDBDBD solid !important;
    line-height: 48px !important;
}