:root {
   --azulClaro: #93B4C8;
   --azulPadrao: #6AB8FF;
   --azulEscuro: #030D2C;
}

section{
    overflow: hidden;

}
:focus-visible {
    outline: none;
}

::selection {
    background: var(--azulEscuro);
    color: white;
}

@font-face {
    font-family: 'Antic';
    src: url('../fonts/AnticSlab-Regular.ttf');
}
@font-face {
    font-family: 'Sphere';
    src: url('../fonts/SphereMemory-Yqegq.ttf');
}
@font-face {
    font-family: 'Stix';
    src: url('../fonts/STIXTwoMath-Regular.ttf');
}

@media screen and (min-width:2561px){
    .container{
        max-width: 1872px;
    }
    header.container{
        max-width: 1972px;
    }

}

@media screen and (min-width:1320px){
    footer .container,
    header.container{
        max-width: 1240px;
    }
}
/* HEADER */

header{
    max-width: calc(var(--max-width-original) + 40px);
    padding: 57px 135px!important;
    top: 100px;
    position: fixed;
    z-index: 2;
    left: 50%;
    border-radius: 400px;
    transform: translateX(-50%);
    background: #030d2c4a;
}
header::before {
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 1;
    backdrop-filter: blur(10px);
    --webkit-backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 400px;
}
header .flex{
    position: relative;
}
header .header-logo{
   
    display: block;
    height: 123px;
}
header ul{
    list-style: none;
}
header a{
    color: #e0edf9c7;
    font-size: 29px;
    letter-spacing: 0.2em;
    font-family: 'Stix';
    text-transform: uppercase;
    transition: all 1s ease-in-out;
}
header a:hover{
    color: white;
}
header a.ative{
    color: var(--azulPadrao);
}
.banner{
    height: 95dvh;
    position: sticky;
    background: transparent linear-gradient(119deg, #2A4066 0%, #0C1D3A 51%, #000726 100%) 0% 0% no-repeat padding-box;
    display: flex;
    align-items: center;
    padding-top: 10dvh;
}

.banner::before{
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: transparent url('../imgs/bg_home1.jpg') 0% 0% no-repeat;
    opacity: 0.3;
    filter: blur(6px);
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}
.banner .coluna-texto{
    width: 1050px;
}
.banner .coluna-img-flutuante{
    position: absolute;
    width: 1064px;
    height: 1820px;
    bottom: 0;
    right: 700px;
}
.banner h1{
    font-family: 'Sphere';
    color: var(--azulClaro);
    margin-bottom: 100px;
    font-weight: normal;
    font-size: 120px;
    letter-spacing: 0.02em;
    line-height: 130px;
    color: #c8e4f8;
    opacity: 0.62;
}
.banner p{
    font-family: 'Antic';
    font-size: 45px;
    letter-spacing: 0.04em;
    line-height: 90px;
    color: var(--azulClaro);
    opacity: 0.8;
    
}

.servicos{
    height: 95dvh;
    background: transparent linear-gradient(119deg, #2A4066 0%, #0C1D3A 51%, #000726 100%) 0% 0% no-repeat padding-box;
    display: flex;
    align-items: center;
    position: sticky;
    padding-top: 10dvh;
}
.servicos::before{
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: transparent url('../imgs/bg_servicos.webp') 0% 0% no-repeat;
    opacity: 0.2;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}
.servicos .card h3{
    font-size: 53px;
    letter-spacing: 0.04em;
    /* line-height: 130px; */
    font-family: 'Sphere';
    font-weight: 100;
    color: var(--azulClaro);
}
.servicos .card p{
    font-family: "Antic";
    font-size: 40px;
    letter-spacing: 0.03em;
    line-height: 49px;
    color: #7d8ea2;
}
.servicos .coluna-texto{
    position: sticky;
    padding: 34px 135px;
    border-radius: 400px;
}
.servicos .coluna-texto::before{
    background: transparent;
    opacity: 0.69;
    backdrop-filter: blur(20px);
    --webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.06);
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 400px;
    z-index: -1;
}
.servicos .coluna-icone img{
    width: 106px;
    height: 106px;
    object-fit: contain;
}
.servicos .coluna-icone{
    width: fit-content;
}
.servicos .coluna-flexivel{
    width: -webkit-fill-available;
}
.servicos .card{
    display: flex;
    flex-wrap: nowrap;
    gap: 72px;
}
.servicos-cards{
    flex-direction: column;
    gap: 100px;
}

/* CONTATO */

.contato{
    height: 80dvh;
    background: transparent linear-gradient(119deg, #2A4066 0%, #0C1D3A 51%, #000726 100%) 0% 0% no-repeat padding-box;
    display: flex;
    align-items: center;
    position: sticky;
    overflow: hidden;
    padding-top: 10dvh;
}
.contato::before{
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: transparent url('../imgs/bg_contato.webp') 0% 0% no-repeat;
    opacity: 0.2;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
}
.contato h2{
    font-size: 120px;
    letter-spacing: 0.02em;
    line-height: 130px;
    text-align: center;
    font-family: 'Sphere';
    color: var(--azulClaro);
    margin-bottom: 40px;
    font-weight: 100;
}

.contato .input{
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--azulClaro);
    padding: 37px 76px;
    font-size: 40px;
    letter-spacing: 0.03em;
    line-height: 49px;
    font-family: 'Antic';
    color: #d4e7f884;
    font-weight: 100;
    display: block;
    margin: 0 auto;
    width: 70%;
}
.contato .input::placeholder{
    color: #d4e7f884;
    font-weight: 100;
}
.contato  input[type="submit"]{
    padding: 60px 80px;
    border-radius: 100px;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    width: 100%;
    background: transparent;
    border: 0;
    font-size: 40px;
    letter-spacing: 0.15em;
    line-height: 49px;
    font-family: 'Antic';
    color: #d4e7f8c5;
    text-transform: uppercase;
    transition: all 1s ease-in-out;
}
.contato input[type="submit"]:hover{
    transform: scale(1.05);
    color: white;
}
.contato .botao-submit{
    width: 70%;
    position: sticky;
    display: block;
    margin: 130px auto 0;
    border-radius: 400px;
}
.contato .botao-submit::before{
    background: transparent;
    opacity: 0.69;
    backdrop-filter: blur(20px);
    --webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.06);
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 400px;
    z-index: -1;
}

footer{
    background: transparent linear-gradient(119deg, #2A4066 0%, #0C1D3A 51%, #000726 100%) 0% 0% no-repeat padding-box;
    display: flex;
    height: 20dvh;
    align-items: center;
}
footer ul{
    list-style: none;
    padding: 0;
    margin-bottom: 52px;
}
footer ul a{
    color: #e0edf9c7;
    font-size: 29px;
    font-family: 'Stix';
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 1s ease-in-out;
}
footer ul a:hover{
    color: white;
}
footer p{
    color: #e0edf988;
    font-size: 33px;
    font-family: 'Stix';
    letter-spacing: 0.05em;
}
footer .coluna-direitos{
    margin-top: 52px;
}
footer .coluna-direitos p{
    color: #7E94AD;
}
footer .coluna-direitos a{
    color: #AEC1D6;
}
footer .botoes{
    justify-content: flex-end;
    gap: 30px;
    margin-right: 6px;
}
footer .logo-footer{
    width: 129px;
}
footer .botoes img{
    width: 37px;
    opacity: 0.9;
}
footer .botoes img:hover{
    filter: brightness(0) invert(1);
}
.grow{
    transition: all 1s ease-in-out;
}

.navegacao{
    background: transparent linear-gradient(119deg, #2A4066 0%, #0C1D3A 51%, #000726 100%) 0% 0% no-repeat padding-box;
    height: 6dvh;
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
    margin-top: -1dvh;
    position: relative;
    z-index: 1;
}
.navegacao a{
    width: 55px;
    height: auto;
}
.wpp{
    position: fixed;
    transform: translateX(-21px);
    border-radius: 100px;
    z-index: 1;
    bottom: 8dvh;

}
.wpp::before {
    content: ""; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0.69;
    z-index: 1;
    backdrop-filter: blur(20px);
    --webkit-backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 400px;
}
.wpp img{
    position: relative;
    z-index: 2;
    width: 90px;
}
footer .coluna-flexivel{
    width: fit-content
}

.bressam:hover{
    color: white;

}


.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
    border: none;
    color: #d4e7f8;
    font-family: 'Antic';
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.03em;
    line-height: normal;
    text-align: center;
}
.wpcf7-spinner,
.wpcf7-not-valid-tip{
    /* color: #d4e7f8; */
    display: none!important;
}