@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=GFS+Didot&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html {
    scroll-behavior: smooth;
}

.menu-mobile {
    display: none;
}

.img-mobile {
    display: none;
}

:root {
    --corprimaria:#3d1f1d;
    --corsecundaria:#582722;
    --background:#cfbd90;
    --marrom:#975b397e;   
    --terracota:#bc703f;
    --marromclaro:#b68259;
    --fonte-principal:"GFS Didot", serif;
}

body {
    width: 100%;
    font-family: var(--fonte-principal);
    background: url(Imagens/Background-main.jpg) no-repeat;
    background-position:center;
    background-size: cover;
}


/* COMEÇO DO CABEÇALHO */


header {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    background-color:#b681596d;
    justify-content: space-between;
}

header img {
    width: 10%;
    margin-left: 9%;
}

header .nav {
    margin-right: 10%;
}

header nav ul {
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
    margin: auto;
    gap: 30px;
}

header nav ul li {
    list-style: none;
}



header nav a {
    text-decoration: none;
    margin-right: 5%;
    color: var(--corprimaria);
    font-size: 1.7em;
    font-weight: 600;
    position: relative;
}

a:hover {
    color: var(--terracota);
}

a::after{
    content: "";
    position: absolute;
    background-color: var(--terracota);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -5%;
    transition: 0.7s;
}

a:hover:after {
    width: 90%;
}


/* FIM DO CABEÇALHO */




/* COMEÇO DO CONTEUDO PRINCIPAL */

main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    flex-direction: column;
}

.container-1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.txt-main {
    
    width: 530px;
    height: 400px;
    margin-left: 5%;
    margin-right: 5%;
    color: var(--corprimaria);
    background-color: #bc713f38;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.txt-main h1 {
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 5px;   
}


.txt-main h2 {
    font-size: 40px;
    font-weight: 400;
}

.txt-main p {
    font-size: 22px;
    padding: 10px;
}


.content {
    height: 509px;
    width: 720px;
    overflow: hidden;
    border: 1px solid #3d1f1d51;
    position: relative;
}

.slides input {
    display: none;
}

.slides {
    display: flex;
    width: 300%;
    height: 100%;
}

.slide {
    width: 34%;
    transition: .9s;
}

.content .slide img {
    width: 100%;
    height: 100%;
}


#slide1:checked ~ .s1 {
    margin-left: 0;
    transition: all 1s;
}

#slide2:checked ~ .s1 {
    margin-left: -34%;
    transition: all 2s;
}

#slide3:checked ~ .s1 {
    margin-left: -68%;
    transition: all 2s;
}


/* SESSÃO SOBRE MIM */



.container-2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cfbd9048;
    margin-bottom: 3%;

}


.sobre-mim {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(Imagens/Background-main.jpg) no-repeat;
    background-size: 2000px;
    background-position: center;
    flex-direction: row-reverse;
    margin-top: 5%;
    border-radius: 10px;
    border: 1px solid #3d1f1d51;
    
}


.txt-sobre-mim {
    display: flex;
    flex-direction: column;
    width: 60%;
    padding: 35px;
}

.txt-sobre-mim h1{
    font-size: 60px;
    text-align: center;
    color: var(--corprimaria);
}

.txt-sobre-mim p {
    font-size: 24px;
    margin-top: 5%;
    letter-spacing: 2px;
    padding: 30px;
    background-color: #bc713f38;
    color: var(--corprimaria);
    text-align: center;
    border-radius: 15px;
}


.img-sobre {
    margin-top: 3%;
    margin-bottom: 2%;
    margin-left: 3%;
}

.img-sobre img{
    box-shadow: 2px 2px 12px #3d1f1d6d;
}


/* FIM DA SESSÃO SOBRE MIM */


/* FIM DO CONTEUDO PRINCIPAL */

/*-----------------------------------------------------------------------------------------------------*/

/* SESSÃO DOS CABELOS */

.container-imagem-mobile {
    display: none;
}

.fundo-parallax {
    width: 100%;
    height: 300px;
    background: url(Imagens/Fundo\ Parallax.png) no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 2%;
}

.container-cabelos {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 3%;
    margin-bottom: 3%;
}

.container-imagem-desktop {
    display: flex;
    gap: 5%;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.hidden {
    opacity: 0;
    filter: blur(15px);
    transform: translateX(-100%);
    transition: all 2s;
}

.show {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);
    transition: all 2s;
}


.img-cabelo {
    width: 300px;
    height: 350px;
    background-color: #582722;
    border: 1px solid #3d1f1d49;
    border-radius: 10px;
    

}

.btn-contato {
    text-decoration: none;
    text-align: center;
    font-size: 40px;
    padding: 15px;
    border-radius: 30px;
    width: 450px;
    background-color:#bc713f7b;
    color: var(--corprimaria);
    margin-top: 3%;
    
}

.btn-contato:hover {
    color: var(--corprimaria);
    box-shadow: 1px 1px 10px #3d1f1dc6;
    transition: all .5s ease-in-out;
}



/* FIM DA SESSÃO DOS CABELOS */

/* ----------------------------------------------------------------------------------------- */

/* MAPS SALÃO */

.endereco-mobile {
    display: none;
}

.endereco-desktop{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.endereco {
    width: 100%;
    margin-top: 5%;
    margin-bottom: 5%;
    border-top: 1px solid #3d1f1d49;
}

.maps {
    border-radius: 20px;
    box-shadow: 2px 2px 12px #3d1f1d99;
    margin-top: 5%;
}


.txt-endereco {
    width: 40%;
    height: 450px;
    text-align: center;
    margin-top: 10%;
}

.txt-endereco h2 {
    font-size: 40px;
    margin-top: 10%;
}

.txt-endereco p {
    font-size: 24px;
    margin: 10% 0;
    font-weight: bold;
}

.btn-2 {
    font-size: 35px;

}






/* FIM MAPS SALÃO */



/* FOOTER */
footer {
    height: 100px;
    background-color:#b681596d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3%;
}

footer p {
    font-size: 30px;
}

.bi {
    font-size: 30px;
    cursor: pointer;
}

.link-footer{
    text-decoration: none;
    color: black;
}

/* FIM DO FOOTER */

/*-----------------------------------------------------------------------------------------------------*/

/* CONFIGURAÇÃO DA TELA DE CELULAR */

@media (max-width:980px){


    /* INICIO DO HEADER MOBILE*/

    .menu-mobile {
        display: block;
        z-index: 1;
    }


    header  {
        width: 100%;
        display: flex;
        margin: 0;
        padding: 0;
    }

    header img{
        width: 30%;
    }


    .menu-mobile {
        
        border: none;
        background: none;
        border-top: 4px solid var(--corprimaria);
        cursor: pointer;
        z-index: 1;
        margin-right: 5%;
        
    }


    .menu-mobile::before,
    .menu-mobile::after {
        content: "";
        display: block;
        width: 35px;
        height: 4px;
        background: var(--corprimaria);
        margin-top: 7px;
    }
    
    

    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--background);
        clip-path: circle(100px at 120% -15%);
        transition:clip-path 1s ease-out;
        z-index: 1;
        overflow: hidden;

        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        gap: 0;
    }

    .nav-list a {
        font-size: 25px;
        opacity: 0;
    }




    /* ATIVANDO MENU MOBILE */

    .nav.active .nav-list {
        clip-path: circle(1000px at 120% -15%);
        z-index: 1;
        height: 100vh;
        width: 100%;
        position: fixed;
    }


    .nav.active .nav-list a {
        opacity: 1;
    }
    
    .nav.active .menu-mobile {
        z-index: 999;
        position: fixed;
        right: 5%;
        top: 7%;
    
    }
  
    




    /* FIM DO HEADER MOBILE */

/*-------------------------------------------------------------------*/

    /* COMEÇO DO MAIN MOBILE */



    main {
        flex-direction: column;
        align-items: baseline;
        justify-content: baseline;
        justify-content: center;
    }

    .container-1 {
        align-items: center;
        justify-content: center;
    }

    .content {
        max-width: 430px;
        height: 600px;
        margin: 0;
    }

    .content .slide img {
        width: 100%;
    
    }


    .img-desktop {
        display: none;
    }
    .img-mobile {
        display: block;
    }
    .txt-main {
        display: none;
        margin: 0;
        padding: 0;
    }



    /* ---------------------------------------------------------------- */

    /* SOBRE MIM MOBILE */

    .container-2 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #cfbd9048;
        margin-bottom: 0;
        margin-top: 5%;
    }
    
    
    .sobre-mim {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url(Imagens/Background-main.jpg) no-repeat;
        background-size: 2000px;
        background-position: center;
        flex-direction: column-reverse;
        margin-top: 5%;
        border: 0;
    }

    .txt-sobre-mim {
        display: flex;
        flex-direction:column;
        width: 100%;
        padding: 10px;
    }
    
    .txt-sobre-mim h1{
        font-size: 50px;
        text-align: center;
        color: var(--corprimaria);
        margin-top: 3%;
    }
    
    .txt-sobre-mim p {
        font-size: 23px;
        margin-top: 10%;
        letter-spacing: 2px;
        padding: 5px;
        background-color: #bc713f38;
        color: var(--corprimaria);
        text-align: center;
        border-radius: 15px;
    }
    
    
    .img-sobre {
        margin: 0;
        margin-top: 3%;
        display: none;
    }

    
    .img-sobre img{
        box-shadow: 2px 2px 12px #3d1f1d6d;
        width: 100%;
    }
    
    
    /* FIM DO MAIN MOBILE */

/* COMEÇO DA SESSÃO CABELOS MOBILE */

.fundo-parallax {
    background: url(Imagens/Fundo\ Parallax\ mobile.png) no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    margin: 0;
}
.container-imagem-desktop {
    display: none;
}

.container-imagem-mobile {
    display: flex;
    width: 100%;
    justify-content: space-around;
    
    
}

.container-imagem-mobile img {
    width: 170px;
    height: 230px;
}

.btn-contato {
    width: 90%;
    font-size: 30px;
}

/* FIM DA SESSÃO CABELOS MOBILE */

/* SESSÃO ENDEREÇO */

.endereco-desktop {
    display: none;
}

.endereco-mobile {
    display: flex;
    flex-direction:column ;
    align-items: center;
    width: 100%;
    margin: 0;
    
}

.endereco-mobile h2 {
    margin-top: 15%;
    font-size: 30px;
}

.txt-endereco {
    width: 100%;
    height: 250px;
}

.txt-endereco p {
    font-size: 18px;
}

.maps {
    width: 100%;
    margin-top: 10%;
}

}

/* FIM DA SESSÃO ENDEREÇO MOBILE */

/* FOOTER MOBILE */
   
    
/* FIM DA CONFIGURAÇÃO DA TELA DE CELULAR */








/*------------------------------------------------------------*/








/* ------------------ MEDIA QUERIES GERAIS ---------------- */


/* ----------------------- FIM ---------------------------- */

