/*--------------------------variaveis---------------------------------------*/

:root {
    --primary: #0C71CB;
    --secundary: #000a25;
    --text: #999999;
    --title:#fff;
}

/*---------------------Reset--------------------*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/*----------------------Tags principais---------------------------*/
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--secundary);
    color: var(--text);
    font-family: 'inter', sans-serif;
}


/*-----------------------------------------Cabecalho-------------------------------------*/

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    position: fixed;
    padding: 6px 90px;
    z-index: 2;

    /* animacao*/
    top: -20px;
    opacity: 0;

    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;

    padding: 20px 0;
}

header.scrolled {
    background: #000a2585;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
}

.overlay{
    position:absolute;
}


/*------------------------fim da animacao--------------------------------------------------*/

.hamburger{
    width:30px;
    height:22px;
    align-self: flex-start;
    display:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
    background:none;
    border:none;
    z-index:1001;
}

.hamburger span{
    display:block;
    margin-top: 4px;
    height:3px;
    width:100%;
    background:white;
    border-radius:3px;
    transition:0.3s;
}

/*animacao do hamburger*/

.hamburger.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
}
/* fim da animacao DO  hamburger*/



header nav ul {
    list-style: none;
    display: flex;
    gap: 8px;

    position: relative;
    left: -20%;
}

header nav ul li a {
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text);
    transition: 0.3s ease;
}

.conttato {
   border-radius: 20px;
   border: 1px solid var(--primary);

   }

header nav ul li a:hover {
    background-color: transparent;
    border-radius: 10px;
    box-shadow: 0px 0px 58px var(--primary);
    font-size: 14pt;
    padding: 10px 25px;

    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}


/*--------------------------------Conteudo Principal--------------------------------------------------*/

main {
    max-width: 100%;
    margin: auto;
}

/*-------------------------Primeira secao----------------------------------*/

.secao_1 {
     background: url("../imagens/img/efeite\ luz.png") center/cover no-repeat;
    padding: 100px;
    height: auto;

    position: relative;
    overflow: hidden;
}
/*efeito de luz para o hero
.secao_1 .secao_1-contain {
    position: absolute;
    width: 100%;
    height: 35rem;
    top: 0;
    left: 0;
    background: url('../imagens/img/efeite\ luz.png') center/cover no-repeat;
    z-index: -1;
    transform: translateY(0);
    transition: transform 0.1s linear;
}*/

.secao_1-container {
    display: grid;
    grid-template-columns: repeat(2);
    margin: 2% 0 12.3%;
}

/*--------------------animacao para o titulo------------*/
.secao_1-container .titulo {
    position: relative;
    top: 100px;
    opacity: 0;
}


.secao_1-container .titulo h1, h2 {
    text-transform: uppercase;
}

.secao_1-container .titulo div {
    margin-bottom: 20px;
}

.secao_1-container .titulo div h1, h2 {
    font-size: 45pt;
    font-weight: 900;
    color: var(--title);
}

.secao_1-container .titulo div p {
text-transform: uppercase;
font-size: 11pt;
font-weight: 200;
letter-spacing: 6pt;
}

p {
    font-size: 14pt;
}

.subtitulo {
    grid-row: 2;
    grid-column: 3;
    position: relative;
    left: 70px;
    /*animacao*/
    top: 80px;
    opacity: 0;
}

.subtitulo h2 {
    font-size: 14pt;
    font-weight: 200;
    letter-spacing: 3px;
    color: var(--text);
    width: fit-content;
}

.subtitulo p {
    width: fit-content;
}

.botao_container {
    margin-top: 25px;
}

.botao {
    background-color: var(--primary);
    color: var(--title);
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.botao:hover {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.botao img {
    position: relative;
    top: 15px;
    left: 10px;
    transition: all 0.3s ease;
}

.botao:hover img {
    left: 15px;
    transform: rotateX(180deg);
}

/*-----------------------secao 2 Sobre---------------------------------------------------------------*/

.secao_2 {
    display: flex;
    justify-content: space-around;
    gap: 52px;
    padding: 20px 50px;
    position: relative;
    top: 100px;
    opacity: 0;
}

.secao_2 .sobre_text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 90px;

    overflow-y: auto;
    max-height: 570px;
}

.secao_2 .sobre_text div a {
    transition: all 0.3s ease;
}

.secao_2 .sobre_text div a:hover {
    text-shadow: 0px 0px 58px var(--primary);
    font-size: 14pt;
    padding: 10px 25px;
    color: var(--primary);

}

.secao_2 .sobre_img img {
    width: 600px;
}

.sobre_text p {
    line-height: 23px;
}

/*-------------secao 3------------------------------------------------------------------------*/
.secao_3 {
    height: auto;
    text-align: center;
    padding: 20px 50px;
    margin-top: 40px;
}

.secao_3 div p {
    font-size: 35pt;
    margin: 5% 10% ;
}

/*-----------------------------secao 4---------------------------------*/

.secao_4 {
    background: url(../imagens/img/luz\ 2\ fundo.png) center/cover no-repeat;
    padding: 100px 50px;
    margin-top: 40px;
}

.secao_4 .servicos {
    margin-bottom: 6rem;
    margin-left: 85px;
}


.secao_4-cards {
    display: grid;
    grid-template-columns: repeat(2, .1fr);
    gap: 70px 30px;
    margin: auto;
}

.card-2 {
    grid-column: 2;
    position: relative;
    top: 150px;
}

.central {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.secao_4-cards .card {
    display: flex;
    gap: 10px;
    border: 1px solid var(--primary);
    padding: 15px 10px;
    align-items: center;
    border-radius: 20px;
    width: 500px;
    background-color: #000a259d;

    box-shadow: 5px 5px 25px 2px #00000080;
    backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;

    position: relative;
    overflow: hidden;
}

.secao_4-cards .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.secao_4-cards .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient( 120deg, transparent,rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.card:hover::before {
    left: 100%;
}

.secao_4-cards .card h3 {
    color: var(--primary);
}

.secao_4-cards .card p {
    line-height: 21px;
}

.secao_4-cards .card .card_icon {
    align-self: flex-start;
}

.secao_4-cards .card_txt h3 {
    font-size: 14pt;
    margin-bottom: 15px;
}

/*-------------------------------------secao 5------------------------------------------------*/

.secao_5 {
    background: url(../imagens/img/efeite\ 2.png) center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    justify-content: center;
    padding: 18%;
}

.secao_5 .centralizar {
    position: relative;
    top: 60px;
}

.secao_5 .centralizar .text p {
    font-size: 20pt;
}

/*------------------------secao 6----------------------------------------------------------*/

.secao_6 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.form_container {
    text-align: center;
    

}

.form_container .title h2 {
    font-size: 30pt;
}

.form_container .title p {
   padding: 0px 20px;
   font-size: 20pt;
}

.form {
    text-align: start;
    width: 400px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

 form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
}

form label {
    font-size: 12pt;
}

form input,textarea {
    background: transparent;
    border: 2px solid var(--primary);
    padding: 4%;
    border-radius: 25px;
    color: var(--title-color);
    cursor: pointer;
    outline: none;
}

button[type="submit"] {
    width: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 30px;
    background-color: var(--primary);
    border: none;
    color: var(--title);
}


/*-------------------secao 7-----------------------------------------------------*/


.secao_7 .image {
    background-image: url(../imagens/img/efeito\ horizontal.png);
    height: 500px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
    top: 250px;  
}

.blur_container {
    background-color: #000a2570;
    backdrop-filter: blur(10px);
    z-index: 1;
    border-radius: 70px 70px 0px 0px;

    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;

}

.txt .title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px; 
    margin-top: 60px;  
}

.paragrafo p {
    width: 700px;
    text-align: center;
    margin: 100px auto;
    
}

.txt .borda {
    margin: auto;
    height: 1px;
    width: 90%;
    background-color: var(--primary);
    filter: blur(1.5px);
}

.footer_container {
    display: flex;
    margin: 100px auto;
    align-items: center;
    padding: 0px 30px;
    gap: 50px;

}

.footer_container .txt {
    align-self: flex-start;
    width: 500px;
    margin-right: 50px;
}

.footer_container .txt h2 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer_cards {
    display: flex;
    gap: 50px;
}

.f-card .borda {
    height: 1px;
    background-color: var(--primary);
    width: 100%;
}

.rds {
    margin-top: 50px;
}

.f-card, .itens {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.redes {
    flex-direction: row;
    justify-content: space-between;
}

.assign {
    width: 100%;
    background-color: #000a2585;
    backdrop-filter: blur(12px);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.image_2 {
    background: url(../imagens/img/Group\ 29.png) center/cover no-repeat;
    height: 170px;

    position: absolute;
    bottom: 0;           
    transform: translateX(-50%);
    z-index: 0;
    opacity: 0.5;  
}


/*--------------------------break Points---------------------------------*/

@media (max-width:768px) {

/*-------------------------------------------------------------------------------------------*/
.hamburger{
    display:flex;
    position: relative;
    left: -6%;
}

.nav{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;
    width:100%;
    background:var(--secundary);
    display:flex;
    transition:0.4s;
    z-index:1000;
    
}

.nav .nav-list{
    flex-direction:column;
    gap:40px;
    font-size:20px;
    position: relative;
    top: 40px;
    left: 0;
}

header nav ul li a:hover {
    background-color: transparent;
    border-radius: 0px;
    box-shadow: none;
    border: none;
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);;
    color: var(--primary);
}

.conttato {
   border-radius: 0px;
   border:none;
   }


.nav.active{
    right:0;
}

.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
    opacity:0;
    visibility:hidden;
    transition:0.3s;
}

    .overlay.active{
    opacity:1;
    visibility:visible;
}



/*---------------------------------------------------------------------------------------------*/
    .secao_2 {
        flex-direction: column;
        align-items: center;
        
    }
    
    .secao_4-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.secao_4-cards .card {
    width: 100%;
}

.card:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.card-2 {
    position: relative;
    top: 0px;
}

button[type="submit"] {
    width: 100%;
}

.secao_7 .image {
    height: 200px;
    top: 115px;  
}


.blur_container {
    border-radius: 50px 50px 0px 0px;
}

.footer_container {
    flex-direction: column;
    align-items: normal;
}

.secao_5 {
    background-position:center calc(50% - 110px);
}

.subtitulo {
    left: 0;
    top: 0;
}


.reveal,
.reveal-left,
.reveal-img,
.reveal-blur {
    transform: none !important;
    filter: none !important;
    transition: opacity 0.6s ease;
    }
    
}

/*breakpoints para celular*/

@media (max-width:440px) {
    header {
        padding: 6px;
        top: 3px;
    }

    header nav {
    display: none; 
}

header nav ul {
    flex-direction: column;
    align-items: start;
    margin-top: 30px;
}
.conttato {
    border: none;
}

header nav ul li a:hover {
    box-shadow: none;
    border: none;
    border-radius: 0;
}
    
    p {
        font-size: 12pt;
    }

    .secao_5 {
        padding: 5%;
        background-position:center calc(50% - 60px);
    }

    .secao_5 .centralizar .text p {
    font-size: 15pt;
}

.secao_6 {
    margin-top: 80px;
}

.secao_6 .form_container .title h2 {
    font-size: 20pt;
}

.secao_6 .form_container .title p {
    font-size: 15pt;
}

.txt .title {
    gap: 5%;
    margin-top: 16px;
}

.txt .title img {
    width: 60%;
}

.paragrafo p {
    width: auto;
    padding: 10px;
    margin: auto;
}

.txt .borda {
    margin: auto;
    margin-top: 30px;
    filter: none;
}

.footer_cards {
    flex-direction: column;
}

.secao_1-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.logo {
        margin-left: 7%;
}

.burger {
    margin-right: 7%;
    display: inline-block;
}

.secao_1 {
    padding: 50px;
    margin-top: 6%;
}

.secao_1-container .titulo div h1, h2 {
    font-size: 40pt;
}

.secao_2 .sobre_img img {
    width: 350px;
}

.secao_3 {
    padding: 5px;
}

.secao_3 div p {
    font-size: 20pt;
}

.secao_4 {
    padding: 10px 5px;
    margin-top: 40px;
}

.secao_4 .servicos {
    margin: 0;
    margin-bottom: 15px;
}

.secao_4 .servicos h2 {
    font-size: 40px;
}

.secao_7 .image {
    background-position: right;
    top: 190px;
}

.blur_container {
    border-radius: 30px 30px 0px 0px;
    backdrop-filter: blur(1px);
}

.footer_container {
    width: 100%;
}

.footer_container .txt {
    width: 100%;
    margin-right: 50px;
}


.footer_container .txt {
    width: 100%;
}

.footer_container .txt h2 {
    font-size: 30pt;
}
}
/*Fim do breackpoints*/

/*animando tudo*/

.revelar {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.revelar.active {
    opacity: 1;
    transform: translateY(0);
}

.revelar-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s ease;
}

.revelar-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-img {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-img.active {
    opacity: 1;
    transform: scale(1);
}

/*animando titulos, subtitulos e paragrafos*/
.revelar-blur {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.revelar-blur.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}