@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --peach: #F59B7E;
    --pink: #C30075;
    --lavender-blush: #F7F2F4;
    --tyrian-purple: #4e0439;
}
h1, .saudation h2{
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 3rem;
}
h2{
    font-size: 2rem;
}
p{
    line-height: 30px;
}
body{
    font-family: 'Lato', sans-serif;
}

h1::selection, span::selection, p::selection, h2::selection{
    background-color: var(--peach);
}
header{
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    padding: 20px;
    position: absolute;
    top: 0;
    width: 100vw;
    color: #fff;
}

/* -------------------   HERO  -------------------------- */

.homeContent .content{
    display: flex;
    height: 100vh;
}
.content img{
    position: absolute;
    bottom: -18px;
    width: 100%;
    pointer-events: none;
}
.homeContent #emilyComin{
    width: 500px;
    position: absolute;
    right: 0;
}
.saudation{
    position: absolute;
    bottom: 22.5vw;
    left: 10%;
}
.saudation h2{
    max-width: 25%;
    backdrop-filter: blur(15px);
}
.saudation h1{
    font-size: 4rem;
    font-weight: 500;
    backdrop-filter: blur(15px);
}
.saudation span{
    font-weight: 600;
}
.saudation p{
    font-size: 2rem;
    font-weight: 300;
    backdrop-filter: blur(15px);
    text-shadow: 1px 1px rgba(211, 211, 211, 0.584);
}

/* -------------------  SERVIÇOS------------------- */
.experience{
    padding: 60px;
    height: auto;
    position: relative;
    background-image: linear-gradient(to bottom, #f59b7f, #f6a187, #f7a88f, #f7ae97, #f8b49f, #f9bba8, #fac1b1, #fac8ba, #fbd1c6, #fcdbd2, #fde4de, #fdeeea,#FFFBF8, #FFFCFA, #fff); 
}
.serviceTitle{
    margin-left: 30px;
}
.serviceCardContent{
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-flow: row wrap;
    justify-content: space-evenly;
}
.servicesCards{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.service{
    max-width: 300px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: rgba(245, 245, 245, 0.222);
}
.service .title{
    padding: 16px;
    border-radius: 20px;
}
.serviceContent{
    padding: 24px;
    align-items: center;
}
/* ----------------           SOBRE             ------------------------ */
.about{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    height: auto;
    padding: 100px 0;
    position: relative;
    background-color: #F7F2F4;
}
.aboutMe{
    display: flex;
    gap: 10px;
    background-color: rgba(228, 226, 226, 0.785);
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.aboutMe img{
    height: 500px;
    align-self: center;
    border-radius: 0 0 0 20px;
}
.textAboutMe{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}
.textAboutMe h1{
    color: var(--pink);
}
.textAboutMe p{
    text-indent: 5%;
    max-width: 600px;
    font-size: 1rem;
    line-height: 30px;
}
.socialMedias{
    display: flex;
    gap: 36px;
}

/* ----------------PROJETOS REAIS------------- */
.projetos{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
    background-image: url(img/Background.png);
    background-size: cover;
    position: relative;
}
.projetosReais, .projetosAcademicos{
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 12px 0;
}
.projeto{
    display: flex;
    align-items: center;
    background-color: #f7f2f42f;
    backdrop-filter: blur(5px);
}
.projeto img{
   width: 460px;
   cursor: pointer;
}
.projeto p{
    text-align: justify;
}
#projetoreverse{
    display: flex;
    flex-direction: row-reverse;
}
/* ------------------CONTATO----------------------- */
.contact{
    width: 100%;
    display: flex;
    z-index: 2;
    padding: 100px 0 ;
    background-color: transparent;
}
.googleAgenda, .botaoWhatsApp{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 50vh;
    backdrop-filter: blur(8px);
    text-align: center;
    padding: 20px 0;
    font-size: 1.25rem;
    gap: 28px;
}
.contact p{
    width: 50%;
}
.contact button{
    background-color: transparent;
    border: none;
    background-color: var(--peach);
    color: #F7F2F4;
    border-radius: 5px;
    padding: 30px;
    cursor: pointer;
}
.contact button a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    color: #F7F2F4;
    font-size: 2rem;
}
.contact button:hover{
    box-shadow: rgb(186, 185, 185) 0px 20px 30px -10px;
}
.contact button img, svg{
    height: 40px;
    width: 40px;
}
 footer img{
    position: absolute;
    z-index: -1;
 } 
footer {
    height: 280px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
footer a {
    text-decoration: none;
    color: #4e0439;
}
footer i{
    font-size: 2rem;
    color: #4e0439;
    margin-right: 24px;
} 
footer .socialMedia{
    margin-bottom: 24px;
}

@media screen and (max-width: 600px) {

    .saudation{
        margin-bottom: 25px;
        left: 0;
        width: 100%;
    }
    .saudation h1, .saudation h2, 
    .saudation p{
        margin: 0;
        background-color: #ffffff70;
    } 
    .saudation p{
        width: 100%;
        font-size: 1.5rem;
    }
    .experience{
        height: auto;
    }
    .aboutMe, .about{
       flex-direction: column;
       height: auto;
       width: 100%;
       background-color: #F7F2F4;
    }
    .aboutMe p{
        width: 100%;
    }
    .aboutMe img{
        position: unset;
        margin: 0 auto;
    }
    .projetos, .projetosReais, .projeto, #projetoreverse{
        flex-direction: column;
        justify-content: center;
        margin: 0;
    }
    .projeto{
        width: 100%;
        gap: 10px;
    }
    .projeto img{
        width:100%;
    }
    .contact{
        flex-direction: column;
       justify-content: center;
        width: 100%;
    }
    .googleAgenda, .botaoWhatsApp{
        width: 100%;
    }
    .contact button{
        width: 100%;
    }
    footer .socialMedia {
        z-index: 3;
    }
    footer img{
        width: 100%;
    }
}