@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css");

*{/*esse asterisco .e para pegar global tipo o body mas tds outros herdam*/
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}
.burguer{/*quadradinho do menu hamburguer, pai de lines*/
    /*background-color: red;*/
    width: 2rem;
    height: 2rem;
    position: fixed;
    z-index: 100;
    right: 2rem;
    top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    cursor: pointer;
}
.show-menu .burguer{
    right: 18rem;
}


.line{/*cada linha dentro do burguer*/
    width: 100%;
    background-color: white;
    height: .1rem;
    box-shadow: 0.1rem 0.1rem 1px black;
}
header{/*o quadrad q a img ta dentro (tela full)*/
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

div.img-w{/*a div que ta dentro do heard serve para por a opacidade*/
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.9)
}
div.img-w img{/*img dentro da div*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    animation: zoom 25s;
}
@keyframes zoom{/**/
    0%{
        transform: scale(1.3);
    }
    100%{
        transform: scale(1);
    }
}
div.baner{/**/
    color: white;
    position: absolute;
    top: 30%;
    left: 15%;
    animation: subir 3s;
}
.baner h1{/**/
    font-size: min(50px, 10vw);
    font-weight: 500;
    text-shadow: .3rem .4rem 2px rgba(0,0,0,0.7);
    padding-bottom: 2rem;
}
.baner p{/**/
    font-size: max(30px, 3vw);
    text-shadow: .3rem .4rem 2px rgba(0,0,0,0.7);
    padding-bottom: 2rem;
}
.baner button{/**/
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    background-color: #a044ff;
    padding: 1rem 2rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 1s;
}
.baner button:hover{/**/
    background-color:  #5e229b;
}
@keyframes subir{/**/
    0%{
        transform: translateY(29rem);
    }100%{
        transform: translateY(0);
    }
}
.show-menu .sidebar{
    right: 0;
}
.sidebar{/*menu q aparece ao clicar no burguer posçao fix tbm*/
    z-index: 99;
    width: max(270px, 2vw);
    height: 100vh;
    background-color: rgb(206, 180, 180);
    position: fixed;
    top: 0;
    right: min(-310px, 450vw);
    transition: all 1s;
}
.menu{
    position: absolute;
    top: 20%;
    transform: translate(19%, 10%);
}
.menu-item{/*cad li*/
    text-align: center;
    margin-bottom: .5rem;
}
.menu-link{/*cada li no link da ancora*/
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: black;
    font-size: max(28px, 1vw);
    transition: color 0.7s;
}
.menu-link:hover{
    color: rgb(185, 127, 185);
}
.social-media{/*icones das redes distribuidos*/
    position: absolute;
    bottom: 20%;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.social-media i{/*cada um dos i dentro do social midia*/
    color: purple;
    height: 1.5rem;
    width: 1.5rem;
    font-size: 2.0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.social-media i:hover{
    color: rgb(228, 116, 228);
}
.conhecimentos{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, 9rem);
    height: 88vh;
    grid-gap: 30px;
    font-size: max(11.1px, 1.6vw);
    margin: 20px;
    max-width: 890px;
    margin: 0 auto;
}
.sessao-header h1{
    padding-bottom: 3rem;
    border-bottom: blueviolet;
    font-size: min(50px, 7vw);
    text-align: center;
}
.conhecimento-header{
    display: flex;
    background-color: rgb(94, 75, 46);
    color: white;
}
.conhecimento-header{
    font-size: 1.3rem;
}
.conhecimento-header h3{
    padding-left: 6px;
}
.conhecimento-text{
    padding-top: 0.2rem;
}




.projetos{
    display: flex;
    justify-content: space-evenly;
}
.card{
    width: max(30%, 1vw);
    height: max(400px, 5vw);
    position: relative;
}
.card:hover{
    cursor: pointer;
}
.card-img-wrapper{
    width: 100%;
    height: 100%;
    background-color: black;
    border-radius: .5rem;
}
.card-img-wrapper img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 80%;
    border-radius: .5rem;
}
.card-img-wrapper img:hover{
    cursor: pointer;
}
.card-info{
    opacity: 0;
    bottom: 0;
    position: absolute;
    padding: 10px;
    transition: .5s;
}
.card-info h2{
    color: white;
}
.card-info h3{
    color: rgb(255, 94, 94);
    font-weight: bolder;
    padding-left: 5px;
}

.card-info p{
    color: rgb(179, 165, 165);
    letter-spacing: 0px;
    font-size: max(11.1px, 1.6vw);
}

.card-info button{
    width: min(100px, 9vw);
    height: 2.2rem;
    background-color: #a044ff;
    color: white;
    text-transform: capitalize;
    margin-top:  10px;
    border-radius: .5rem;
    transition: 1s;
    border: none;
    font-size: min(12px, 4vw);
}

.card:hover .card-info{
    bottom: 2rem;
    opacity: 100%;
}
.card:hover .card-img-wrapper img{
    opacity: 20%;
}
.card:hover .card-info button{
    cursor: pointer;
    background-color: #5e229b;
}



/*sessao contato*/


.sessao-contato{
    margin-top: 40px;
    width: 100%;
    height: 100vh;
    background-color: #837c7c;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.contato-wrapper{
    max-width: 800px;
    min-width: 20px;
    height: 30rem;
    margin: 0 auto;
    display: flex;
    box-shadow: 0 2rem 3rem rgba(0,0,0, 0.8);

}
.contato-left{
    width: 40%;
    background-image:  url(imagens/fundo-form.jpg);
    background-size: cover ;
    opacity: 70%;
}
.contato-right{
    width: 60%;
    background: linear-gradient(rgb(255, 255, 255), rgb(139, 183, 183));
    padding: 1rem 7rem 7rem 7rem;
}
.contato-right h1{
    font-size: min(50px, 7vw);
    padding-bottom: 40px;
}
.sessao-contato form{
    width: 100%;
    display: flex;
    flex-direction: column;/*resolve  o problema do flex*/
    align-items: center;
}
.input-group{
    position: relative;
    margin-bottom: 20px;
}
.field{
    background: transparent;
    width: 20rem;
    border: none;
    font-size: 1.5rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    border-bottom: 1px dashed #636363;
    height: 3rem;
    outline: none/*remove as bords do cmp de txt o tocar nele*/;

}
.field-lablel{
    position: absolute;
    left: 0;
    top: 2rem;
    text-transform: uppercase;
    padding-bottom: 5px;
}
.input-group textarea{
    max-width: 25rem;
    max-height: 3rem;
}
.btn{
    text-transform: capitalize;
    color: white;
    background-color: #a044ff;
    transition: 0.7s;
    height: 2.5rem;
    width: 9rem;
    border-radius: 7px;
    margin-left: -90px;
}
.btn:hover{
    background-color: #5e229b;
    align-items: initial;
}
#mensagem{
    font-size: .9rem;
    padding-top: 30px;
}

footer {
    height: 30vh;
    width: 100%;
    background-color: rgb(129, 129, 129);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.459);
}

.footer__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    height: 100%;
}

.footer__social {
    display: flex;
    flex: 1;
    gap: 5rem;
    justify-content: space-evenly;
    align-items: center;
}
.footer__social i {
    font-size: 42px;
    color: #fbf7ff;
    cursor: pointer;
    transition: .4s;

}
.footer__social i:hover {
    color: #5e229b;
    transform: scale(1.5);
}

.footer__about {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    align-items: flex-end;
    margin: 3rem;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-weight: 600;
}

@media screen and (max-width:600px) {
    .footer__social {
        gap: 3rem;
        background-color: tomato;
    }
}