@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Sarala:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;1,100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    text-decoration: none;
    
}

body{   

    font-size: 100;
    background-color: #09386b;
    font-family: 'Poppins', sans-serif;
    display: block;
}
.informacoes-pre-menu{
    width: 100%;
    height: 100%;
    display: flex;
    padding: 10px 0;
    justify-content:center;
    text-align: center;
    flex-direction: row;
    gap: 2px;
    align-items: center;
    background-color: #082a4e;
}
.informacoes-pre-menu a{
    font-size: 10px;
    font-weight: 500;
    color: #bbbbbb;
    display: block;
 }
 .informacoes-pre-menu a:hover{
    color: white;
 }
.container-cabecalho{
    max-width: 2000px;
    margin: auto;
    border-radius: 10px;
}
nav{
    display: flex; 
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 24px;
    line-height: 3.2rem;
    
}
.logo img{
    width: 350px;
}
nav ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
nav ul li{
    margin: 0 5px;
}
nav ul li a{
    font-family: 'Poppins', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}
nav ul li a.active,
nav ul li a:hover{
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}
#aparecer{
    display: none;
}

nav .menu-btn i{
    color: white ;
    cursor: pointer; 
    display: none;
    font-size: 25px;

}
@media (max-width:1200px) {
    .logo img{
        width: 300px;
    }
    nav ul li a{
        font-size: 15px;
    }
    
    
}
@media (max-width:920px) {
    nav .menu-btn i{
        display: block;
    }
    .logo img{
        width: 200px;
    }
    nav ul{
        position: fixed;
        top: 160px;
        left: -100%;
        height: 100vh;
        background-color: #1d5da1;
        width: 100%;
        text-align: center;
        display: block;
        transition: all 0.3s ease;
        z-index: 2;
    }
    #aparecer{
        display: unset;
    }
    #desaparecer{
        display: none;
    }
    nav ul.open{
        left: 0;
    }
    nav ul li{
        width: 100%;
        margin: 50px 0
    }
    nav ul li a{
        opacity: 0.5;
        font-size: 20px;
        
    }
    nav ul li a:hover{
        background-color: #1d5da1;
        color: white;
        opacity: 1;
        font-size: 24px;
    }
    .informacoes-pre-menu a{
        font-size: 9px;
        font-weight: 500;
        color: #bbbbbb;
        display: block;
     }   
}



.cabecalho { 
   display: flex; 
   flex-direction: row;
   align-items: center;
   justify-content: space-around;
}




/*--------------------CONTEUDO PRINCIPAL------------------------*/

.conteudo{
    margin-bottom: 0px;
}
.container-conteudo-principal{
    display: flex;
    margin: 0;
    justify-content: space-around;
    max-width: 2000px;
    padding: 40px;
}

.conteudo-principal{
    background-image: url(./img/fundo-predios.jpg);
    background-size: cover;
    background-image: blur(3px);
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 4px 5px 44px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;

    
}

.conteudo-principal-escrito{
    width: 20%;
    max-width: 490px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px;
    justify-content: center;
    box-shadow: 4px 5px 44px rgba(0, 0, 0, 0.45);
    background: rgba(0, 0, 0, 0.7);
    background-size: cover;
    background-blend-mode: darken;   
    border-radius: 10px;


    
}


.conteudo-principal-escrito-titulo{
    font-family: 'Sarala', sans-serif;
    font-weight: 900;
    font-size: 70px;
    color: white;
    width: 50%;

}

.conteudo-principal-escrito-subtitulo{
    font-family: 'Sarala', sans-serif;
    font-weight: 4980;
    font-size: 34px;
    color: #fff;
    

   
}

.conteudo-principal-escrito-botao{
  background-color: #ecd6c4;  
  width: 180px;
  height: 60px;
  border: none;
  box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  font-family: 'Sarala', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #2F2325;
}

.conteudo-principal-escrito-botao:hover{
    background-color: rgba(236, 214, 196, 0.53);
}

.conteudo-principal-imagem{
    height: 300px;  
}

.conteudo-secundario{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25); 
    text-align: center;
    
}

.conteudo-secundario-escrito{
    font-weight: 400;
    font-size: 24px;
    color: #FFF2E7;
    width: 50%;
    display: flex;
    align-self: center;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    box-shadow: 4px 5px 44px rgba(0, 0, 0, 0.45);
    background: rgba(0, 0, 0, 0.7);
    background-size: cover;
    background-blend-mode: darken;    
    border-radius: 10px;
    gap: 20px;

}

.conteudo-secundario-escrito-titulo{
    align-items: center;
    font-weight: 900;
    font-size: 96px;
    color: #FFF2E7;
    }

.conteudo-secundario-escrito-titulo-dois{
    align-items: center;
    font-weight: 900;
    font-size: 25px;
    color: #FFF2E7;
    margin-top: 24px;
    }
    
.conteudo-secundario-escrito-paragrafo{
    text-align: justify;
    flex-direction: column;
    align-items: center;
    font-weight: 300;
    font-size: 20px;
    color: #fff 
    }

.conteudo-secundario-escrito-paragrafo-dois{
    text-align: justify;
    flex-direction: column;
    align-items: center;
    font-weight: 300;
    font-size: 16px;
    color: #fff 
    }
.conteudo-secundario-escrito-paragrafo-tres{
    text-align: justify;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #fff ;
    text-decoration: none;
}

@media screen and (max-width: 1341px){
    .container-conteudo-principal{
        flex-direction: column-reverse;
        gap: 40px;
    }
    .conteudo-secundario-escrito-titulo {
        font-weight: 600;
        font-size: 56px;    
    }
    
    .conteudo-principal{
        flex-direction: column-reverse;
    }
    
    .conteudo-secundario-escrito{
        width: 650px;
        margin: auto;
        text-align: left;

    }
    .conteudo-principal-escrito{
        text-align: left;
        margin: auto;
        flex-wrap: wrap;
        width: 700px;
    }

    .conteudo-secundario-escrito-paragrafo-dois{
        font-size: 15px;
     
    }

    .conteudo-secundario-escrito-titulo-dois{
        font-weight: 600;
        font-size: 24px;    
    }
}

@media screen and (max-width: 860px){
    
    .conteudo-secundario-escrito{
        width: 540px;
        margin: auto;
    }
    .conteudo-principal-escrito{
        flex-wrap: wrap;
        margin: auto;
        width: 600px;
    }
}

@media screen and (max-width: 670px){
    
    .conteudo-secundario-escrito{
        width: 410px;
        margin: auto;
    }
    .conteudo-principal-escrito{
        flex-wrap: wrap;
        margin: auto;
        width: 460px;
    }

    .conteudo-secundario-escrito-paragrafo-dois{
        font-size: 15px;
     
    }

    .conteudo-secundario-escrito-titulo-dois{
        font-weight: 600;
        font-size: 22px;    
    }


}

@media screen and (max-width: 530px){
    
    .conteudo-secundario-escrito{
        width: 350px;
        margin: auto;
        justify-content: right;

    }
    .conteudo-principal-escrito{
        flex-wrap: wrap;
        margin: auto;
        width: 350px;
        justify-content: left;
    }

    .conteudo-secundario-escrito-titulo {
        font-weight: 600;
        font-size: 30px;    
    }
    .conteudo-secundario-escrito-titulo-dois{
        font-weight: 600;
        font-size: 15px;   
        margin-bottom: 10px; 
    }

    .conteudo-principal-escrito-subtitulo{
        font-size: 22px;    

    }

    .conteudo-secundario-escrito-paragrafo{
        font-weight: 200;
        font-size: 13px;
    }

    .conteudo-secundario-escrito-paragrafo-dois{
        font-size: 11px;
     
    }

}
   
/*pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp*/

.box-servicos{
    background-color: white;
    box-shadow: 0px 5px 0px rgba(0, 0, 0, 0.45);
}
.container-box-servicos{
    padding: 50px 20px;
    max-width: 1370px;
    margin: auto;
}
.box-servicos-menu{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.box-servicos-item{
    width: 20%;
    height: 120px;
    background-color: #010953;
    display: flex;
    flex-direction: row;
    align-items: center;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;  
    z-index: 1;
}

.box-servicos-item img{
    width: fit-content;
    height: 70%;
}
.box-servicos-item a{
    line-height: 1.2;
    text-transform: uppercase;
    color: white;
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    cursor: pointer;  
    opacity: 0.8;
    transition: all 0.3s;  

 }
 .box-servicos-item a:hover{
   opacity: 1;
   -moz-transform: scale(1.1);
   -webkit-transform: scale(1.1);
   transform: scale(1.1)
 }
 .item-texto{
    width: 50%;
    justify-content: center;
    align-items: center;
 }
 .foto-clicavel img{
    height: 90px;
 }
 .item-imagem{
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
 }
 #box-camera{
    background-image: url(./img/fundo-camera.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
 }
 #box-leitor{
    background-image: url(./img/fundo-rec-facial.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
 }
 #box-catraca{
    background-image: url(./img/fundo-catraca.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
 }
 #box-automacao{
    background-image: url(./img/fundo-automacao.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
 }
 @media screen and (max-width: 1420px){
    .box-servicos-item{
        width: 19%;
        height: 100px;
    }
    .box-servicos-item a{
        font-size: 90%;
     }
 }
 @media screen and (max-width: 1258px){
    .box-servicos-item{
        width: 20%;
        height: 90px;
    }
    .box-servicos-item a{
        font-size: 70%;
     }
 }
 @media screen and (max-width: 870px){

    .box-servicos-item a{
        font-size: 70%;
    }
     .item-imagem{
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .item-texto{
        width: 0%;
        height: 0px;
        justify-content: center;
        align-items: center;
     }
    .box-servicos-menu{
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        align-items: center;
    }
    .box-servicos-item{
        width: 20%;
        height: 60px;
        flex-direction: column;
        text-align: center;
    }
    .foto-clicavel img{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        width: 40px;
     }
     .container-box-servicos{
        padding: 20px 20px;
    }
     
 }


/*pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp*/




.rodape img{
    width: 400px;
    display: block;
    margin: 0 auto;
}



.form label,.form input, .form textarea,.form button{
    display: block;
    width: 100%;  

}

.form label{
    font-family: 'Sarala', sans-serif;
    color: #FFF2E7;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.form input,.form textarea {
    font: inherit;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: border-color,box-shadow 0.2s;
}

.form textarea{
    min-height: 13rem;
    resize: vertical;
}

.form input:hover, .form input:focus, .form textarea:hover,.form textarea:focus{
    outline: none;
    border-color: #09d;
    box-shadow: 0 0 0 3px #4dc8ff;
}

.form button{
    display: block;
    padding: 1rem;
    border-radius: 8px;
    text-transform : uppercase;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s; 
    background-color: #0e9aff;
    color: #ffffff;
    opacity: 1;
}
.form button:hover{
    background-color: #01253f;
}

.head-slide-inicial{
    background-color: rgb(255, 255, 255);
    width: 100%;
    justify-content: center;
    margin: 0;
    display: flex;
}
.container-slide-inicial{
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 2000px;
    justify-content: center;
    height: 40vh;
    min-height: 500px;
    margin: 0;
    background-color: #ffffff;
    
}
.container-slide-inicial a{
    margin-top: 10px;
    width: 15vh;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: left;
    font-family: 'Sarala', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: #000000;
    box-shadow: 4px 5px 4px rgb(0 0 0 / 25%);
    transition: 0.3s;
    background-color: #ffffff;
    cursor: pointer;
    border-radius: 8px;
}
.container-slide-inicial a:hover{
    background-color: black;
    color: white;
}
.container-slide-inicial .slider{
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 100%;
    float: left;
    animation: anima 10s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.container-slide-inicial .slider .slide{
    position: relative;
    width: 20%;
    height: 100%;
    float: left ;
}
.container-slide-inicial .slider .slide .caption{
    position: absolute;
    width: 400px;
    height: 200px;
    bottom: 80px;
    left: 150px;
    right: 1400px;
    padding: 30px;
    background: rgba(0, 0, 0, .5);
    box-sizing: border-box;
    transition:0.5s;
}
.container-slide-inicial .slider .slide .caption h2{
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 48px;
    transition: 0.5s;
}
.container-slide-inicial .slider .slide .caption p{
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 18px;
    transition:0.5s;
}
.container-slide-inicial .slider .slide.slide1{
    background: url('img/fundo-locacao-desfocado.jpg');
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}
.container-slide-inicial .slider .slide.slide2{
    background: url('../slide2.jpg');
    background-size:cover;
    background-position: center;
}
.concontainer-slide-inicialtainer .slider .slide.slide3{
    background: url('img/fundo-rec-facial.png');
    background-size:cover;
    background-position: center;
}
.container-slide-inicial .slider .slide.slide4{
    background: url('../slide4.jpg');
    background-size:cover;
    background-position: center;
}


@keyframes anima{
    0%
    {
        left: 0;
    }
    20%
    {
        left: 0;
    }
    20%
    {
        left: 0;
    }
    25%
    {
        left: -100%;
    }
    45%
    {
        left: -100%;
    }
    50%
    {
        left: -200%;
    }
    70%
    {
        left: -200%;
    }
    75%
    {
        left: -300%;
    }
    95%
    {
        left: -300%;
    }
    100%
    {
        left: -400%;
    }
}
@media(max-width: 768px){
    
    .container-slide-inicial .slider .slide .caption{
        bottom: 20px;
        width: 200px;
        height: 120px;
        left: 190px;
        padding: 20px;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: flex-start;

    }
    .container-slide-inicial .slider .slide .caption h2{
        margin: 0 0 0px;
        font-size: 25px;
        color: orange;
    }
    .container-slide-inicial .slider .slide .caption p{
        font-size: 12px;
        transition:0.5s;
        color: #f2f2f2;
        
    }
    .container-slide-inicial a {
        font-size: 15px;
    }
    .container-slide-inicial .slider .slide.slide1{
        background: url('img/fundo-slide-economia.png');
        background-size: 1000px;
        background-position: right;
        background-repeat: repeat;
    }
}






main.cards {
    display: flex;
    padding: 32px;
    justify-content: center;
    gap: 10px;
}

main.cards section.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    max-height: 468px;
    margin-left: 32px;
}

main.cards section.card:first-child {
    margin-left: 0;
}

main.cards section.card .icon {
    width: 64px;
    height: 64px;
}

main.cards section.card img {
    width: 100%;
}

main.cards section.card h3 {
    font-size: 100%;
    margin: 16px 0;
}

main.cards section.card span {
    font-weight: 300;
    max-width: 240px;
    font-size: 80%;
    margin-bottom: 16px;
}

main.cards section.card button {
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    border-radius: 32px;
    border: 0;
    cursor: pointer;
    font-size: 80%;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px 0;
}

main.cards section.card.contact button {
    background: linear-gradient(to right, #9F66FF, #DFCBFF);
}
main.cards section.card.shop button {
    background: linear-gradient(to right, #3E8AFF, #BBDEFF);
}
main.cards section.card.about button {
    background: linear-gradient(to right, #FE5F8F, #FFC7D9);
}

main.cards section.card.contact {
    box-shadow: 20px 20px 50px -30px #DBC4FF;
}
main.cards section.card.shop {
    box-shadow: 20px 20px 50px -30px #AFD6FF;
}
main.cards section.card.about {
    box-shadow: 20px 20px 50px -30px #FFC1D5;
}

@media screen and (max-width: 720px) {
    main.cards {
        flex-direction: column;
    }

    main.cards section.card {
        margin-left: 0;
        margin-bottom: 32px;
    }

    main.cards section.card:last-child {
        margin-bottom: 0;
    }

    main.cards section.card button {
        font-size: 70%;
    }

}










.containerproje{
    position: relative;
    background-color: white;
    height: 600px;
}

.containerproje .slide-container .slide{
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 9%;
    padding-bottom: 70px;
}

.containerproje .slide-container .slide .contentproje{
    animation: slideContent .4s linear .4s backwards;
    background-color: #4886cc;
    width: 500px;
    border-radius: 50px;
    justify-content: center;
    align-items: left;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 50px;

    max-width: 1000px;
    width: 30%;
    display: flex;
    flex-direction: column;
    margin: auto;
    }
 .contentproje2 {
    animation: slideContent .4s linear .4s backwards;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 50%;
    height: 100%;
    margin: auto;
}

.contentproje2 img{
    
    width: 400px;
}
@keyframes slideContent{0%
{
    opacity: 0;
    transform: translateX(-50px);
}
}
.container-slide2{
    max-width: 2070px;
    margin: auto;
    display: flex;
    flex-direction: row;
}
.conteudo-projeto{
    height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.containerproje .slide-container .slide .contentproje h3{
    font-size: 35px;
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
}

.containerproje .slide-container .slide .contentproje p {
    font-size: 16px;
    color: rgb(255 255 255);
    font-family: "Noto Sans", sans-serif;
    width: 100%;
    height: 10%;
    font-weight: 600;
    opacity: 0.6;
}

.containerproje .slide-container .slide .contentproje .bntproj{
    margin-top: 10px;
    display: inline-block;
    background: #042544;
    color: #ffffff;
    font-size: 17px;
    padding: 9px 40px;
    border-radius: 5px;
    border: 2px solid #000000;
    font-family: 'Noto Sans', sans-serif;
    text-decoration: none;
    text-align: center;

}

.containerproje .slide-container .slide .contentproje .bntproj:hover{
    background: #a355d7;
    border: 2px solid #a355d7;
    color: #ffffff;
}

.containerproje .slide-container{
    display: none;
}

.containerproje .slide-container.active{
    display: block;
    height: 820px;
}
.containerproje .slide-container:nth-child(1) .slide{
    background: url(./img/locacao/predio-himura.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
/*.containerproje .slide-container:nth-child() .slide{
    background: url(./img/locacao/economico.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;  
}*/
.containerproje .slide-container:nth-child(2) .slide{
    background: url(./img/facial/fundo-facial.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.containerproje .slide-container:nth-child(3) .slide{
    background: url(./img/fundo-servicos.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.containerproje .slide-container:nth-child(4) .slide{
    background: url(./img/sala-de-reuniao.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.containerproje .slide-container:nth-child(5) .slide{
    background: url(./img/telefone.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}




#separar{
    gap: 0px;
}




.containerproje #prev, 
.containerproje #next {
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    color: #ffffff;
    background: #000000;
    opacity: 0.5;
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 25px;
    text-align: center;
    cursor: pointer;
    font-weight: bolder;
    border-radius: 50px;
}

.containerproje #prev:hover, 
.containerproje #next:hover{
    background-color: #09386b;
    opacity: 1;
}
.containerproje #prev{
    left: 20px;
}

.containerproje #next{
    right: 20px;
}

.card a{
    font-size: 70%;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    border-radius: 32px;
    border: 0;
    cursor: pointer;
    background: linear-gradient(to right, #9F66FF, #DFCBFF);    font-weight: 500;
    color: #fff;
}
.card a:hover{
    opacity: 0.5;
}
.shop a{
    background: linear-gradient(to right, #3E8AFF, #BBDEFF);
}
.about a {
    background: linear-gradient(to right, #FE5F8F, #FFC7D9);
}

#contact-us{
    margin-right: 250px;
}
#instagram-card-slide{
    margin-right: 150px;
}
#imagem-instagram-slide{
    width: 250px;
    height: fit-content;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
}
#imagem-instagram-slide2{
    width: 400px;
    height: fit-content;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}
#contentproje2{
    flex-direction: row;
    gap: 50px;
}

@media(max-width: 800px){
    .containerproje #prev{
        left: 0px;
        top: 60%;
    }

    .containerproje #next{
        right: 0px;
        top: 60%;
    }


    .containerproje .slide-container .slide .contentproje p{
        font-size: 16px;
        color: #ffffff;
        font-family: 'Noto Sans', sans-serif;
        width: 70%;
        height: 10%;
    
    }
    .conteudo-projeto{
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .containerproje .slide-container .slide .contentproje {
        animation: slideContent .4s linear .4s backwards;
        background-color: #4886cc;
        width: 80%;
        height: 40%;
        border-radius: 50px;
        justify-content: center;
        align-items: left;
        display: flex;
        flex-direction: column;
        text-align: left;
        padding: 50px;
        max-width: 1000px;
        display: flex;
        flex-direction: column;
        margin: auto;
    }
    .contentproje2 {
        animation: slideContent .4s linear .4s backwards;
        border-radius: 50px;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        text-align: left;
        width: 100%;
        height: 30%;
        margin: auto;
    }
    .containerproje .slide-container .slide .contentproje h3 {
        font-size: 20px;
        color: #ffffff;
        font-family: 'Noto Sans', sans-serif;
    }
    .containerproje .slide-container .slide .contentproje p {
        font-size: 10px;
        color: #ffffff;
        font-family: 'Noto Sans', sans-serif;
        width: 100%;
        height: 100%;
    }
    .contentproje2 img{
        justify-content: center;
        align-items: center;
        display: flex;
        width: 360px;
    }
    .container-slide2{
        max-width: 2070px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
    }
    .containerproje .slide-container.active {
        display: block;
        height: 700px;
    }
    .containerproje .slide-container .slide .contentproje .bntproj {
        margin-top: 10px;
        display: inline-block;
        background: #042544;
        color: #ffffff;
        font-size: 12px;
        padding: 9px 40px;
        border-radius: 5px;
        border: 2px solid #000000;
        font-family: 'Noto Sans', sans-serif;
        text-decoration: none;
   }
    #imagem-contact-us{
        width: 300px;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    #contact-us , #instagram-card-slide{
        margin-right: 0px;
    }
    #imagem-instagram-slide{
        width: 200px;
        height: fit-content;
        justify-content: center;
        align-items: center;
        margin-bottom: 0px;
    }
    #imagem-instagram-slide2{
        width: 180px;
        height: fit-content;
        justify-content: center;
        align-items: center;
        margin-top: 0px;
    }
    #contentproje2{
        flex-direction: column;
        gap: 0px;
        margin-bottom: 80px;
    }
}
























































