/********************************************************************************
************************* CONFIGURAÇÃO DA PAGÍNA*********************************
*********************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;400;500&family=Roboto&display=swap');

:root {

    --color-primary: #e2c2b3;
    --color-secondary: #687477;
    --color-primary-light: #fdfafc;
    --color-secundary-dark: #36262e;
}

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

body {
    font-family: 'Raleway', sans-serif;
    font-family: 'Roboto', sans-serif;
}

.container {
    width: 1170px;
    margin: 0 auto;
}



/*****************************************************************************************
  ****************************************   HOME*****************************************
  ****************************************************************************************/
.home {
    position: relative;
    background-size: cover;
    background-image: url(/img/fundo1.png);
    height: 100vh;
    /* viewport height */
}

.logo1 {
    display: flex;
    align-items: center;
}

.logo1 img {
    width: 7.5em;
}

.header {
    position: fixed;
}

.home .header {
    padding: 15px;
    background-color: var(--color-secundary-dark);
    font-family: 'Raleway';
    font-weight: 200;
    width: 100%;
    z-index: 100;
    height: 70px;
    text-decoration: none;
    color: var(--color-primary-light);
    list-style: none;
    justify-content: center;
    align-items: center;
    display: flex;
    box-shadow: 0px 3px 10px #464646;
}


.nav-list {
    display: flex;
    align-items: center;
}

.nav-list ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px;
    margin: 0;
}

.nav-item {
    margin: 0 30px;
}

.home .nav-link {
    text-decoration: none;
    font-size: 1.15rem;
    color: var(--color-primary-light);
    font-weight: 400;
    padding: auto;
}

.home .nav-item a:hover {
    color: rgb(201, 201, 201)
}



/****************************************************************************************
  ************************************* HOME - BANNER************************************
  ******************************************************************************************/
.home .banner {
    position: absolute;
    top: 35%;
    left: 65%;
    align-items: center;
    justify-content: center;
    height: 400px;
    width: 400px;
    margin-left: -385px;
    margin-top: -75px;
    color: white;
    text-align: center;
}

.home .banner .logo {
    width: 100%;
}


/**************************************************************************************
  ******************************************* ABOUT***********************************
  ***************************************************************************************/
.about {
    background-color: var(--color-secondary);

}

.about .container {
    display: flex;
    justify-content: center;
}

.about .timing {
    position: relative;
    top: -20px;
    width: 33%;
    padding: 20px;
}

.about .timing .overlay {
    background: var(--color-secundary-dark);
    text-align: center;
    padding: 30px 20px;
    font-family: 'Raleway';
    font-weight: 200;
    font-size: 17px;
}

.Perfil {
    align-items: center;
    width: 100%;
    border-radius: 50%;
}

.about .timing .icon-cut {
    width: 50px;
}

.about .timing .text {
    margin: 10px 0;
}

.about .timing .text:after {
    content: '•';
    display: block;
    font-size: 25px;
    color: white;
    margin-top: 10px;
}

.about .timing .text:last-of-type:after {
    content: '|';
}

.about .timing .text h4 {
    color: var(--color-secondary);
    font-weight: 400;
    font-size: 15px;
}

.about .timing span {
    color: white;
    font-size: 15px;
    display: block;
}

.about .timing span a {
    text-decoration: none;
    color: white;
}


.about .experience {
    width: 66%;
    color: white;
    margin-left: 7%;
    margin-top: 50px;
}

.about .experience h2 {
    font-weight: 500;
    font-size: 40px;
    font-family: 'Raleway', sans-serif;
}

.about .experience h2:after {
    display: block;
    content: '';
    width: 100px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 20px 0;
}

.about .experience .text {
    display: flex;
    justify-content: space-between;
}

.about .experience span {
    font-family: 'Raleway';
}

.about .experience .text p {
    margin-bottom: 20px;
    font-weight: 100;
    font-size: 17px;
    font-family: 'Raleway', sans-serif;
}

.about .bi-envelope {
    color: var(--color-primary-light);
    
}

.about .bi-instagram  {
    color: var(--color-primary-light);
    margin-left:2px;
}

.about .bi-facebook {
    color: var(--color-primary-light);
    margin-left:2px;
}

.about .bi-whatsapp {
    color: var(--color-primary-light);
    margin-left:2px;
}

.about .icon-social{
    display: inline;
    color: var(--color-primary-light);


}

/****************************************************************************************
  **************************************** SERVICES**************************************
  ***************************************************************************************/



.services .title-services h2 {
    padding: 10px;
    font-weight: 400;
    font-size: 50px;
    font-family: 'Raleway';
    font-weight: 400;
    text-align: center;
    justify-content: center;
    color: var(--color-secundary-dark);
    margin: 15px;
}

.image-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 30px;

}

.image-section h2 {
    text-align: center;
}

.image-container {
    position: relative;
    width: 30%;
    overflow: hidden;
    border: 2px solid var(--color-secundary-dark);
    transition: transform 0.3s;
}

.image-container:hover {
    transform: scale(1.1);
}

.image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5));
    /* Para garantir que a imagem cubra o espaço sem distorção */
}

.image-container h3 {
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    font-family: 'Raleway';
    font-weight: 400;
    top: 0;
    font-size: 17px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    opacity: 1;
    transition: opacity 0.3s;
}


.image-container p {
    text-align: center;
    position: absolute;
    bottom: 0;
    font-family: 'Raleway';
    font-weight: 200;
    font-size: 17px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-container:hover p {
    opacity: 1;
}



/**************************************************************************************
  *******************************************GALLERY**********************************
  *************************************************************************************/
.gallery {
    padding: 100px 0;
    background-color: var(--color-primary);
}

.gallery h2 {
    color: white;
    font-weight: 400;
    font-size: 50px;
    margin-bottom: 10px;
    text-align: center;
}

.gallery img {
    margin: 0 auto;
    display: block;
}

.gallery .gallery-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 900px;
    height: 100vh;
    margin: 50px auto;
}

.gallery .gallery-wrapper div {
    border: 10px solid var(--color-primary);
    margin: 6px;
    width: 33%;
}

.gallery .gallery-wrapper div img {
    width: 100%;
}

/************************************************************************************
  *************************************Localização***********************************
 ***********************************************************************************/

.location {
    padding: 100px 0;
    background: url(img/imagem-localizacao.jpg);
    background-size: cover;
}

.location .head {
    display: flex;
    justify-content: space-between;
    background-color: var(--color-secundary-dark);
    padding: 40px;
    width: 100%;
}

.location .bi-geo-alt-fill {
    color: var(--color-primary-light);
}

.location .bi-phone {
    color: var(--color-primary-light);
}

.location .bi-envelope {
    color: var(--color-primary-light);
}

.location .bi-clock {
    color: var(--color-primary-light);
}

.location .head .info {
    display: flex;
    align-items: center;
}

.location .head .info .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-primary-light);
    border-radius: 100%;
    padding: 10px;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    cursor: pointer;
}

.location .head .info .text span {
    display: block;
    font-size: 13px;
}

.location .head .info .text span a {
    text-decoration: none;
    color: white;
}

.location .head .info .text span:first-child {
    color: silver;
}

.location .head .info .text span:last-child {
    color: white;
}

.location .map {
    width: 100%;
}

.location .map iframe {
    width: 100%;
}

/*****************************************************************************
  *********************** Fale conosco****************************************
  ***************************************************************************/

.Fale-conosco {
    display: flex;
    justify-content: center;
}

.appointment {
    padding: 100px 0;
    background-color: var(--color-secondary);
    height: 100vh;
    background-image: url(../images/chair-ic.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 300px;
}

.formulario {
    padding: 0px 30px;
}

.appointment h2 {
    color: var(--color-primary-light);
    font-weight: 400;
    font-size: 50px;
    font-family: 'Raleway';
    font-weight: 400;
    text-align: center;
}


.appointment form {
    margin-top: 80px;
}

.appointment .personal-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.appointment .input-wrapper {
    width: 100%;
    margin-right: 50px;
}

.appointment .input-wrapper:last-of-type {
    margin-right: 0;
}

.appointment label {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
    color: var(--color-primary-light);
}

.appointment .personal-data input,
.appointment .personal-data select,
.appointment textarea {
    padding: 10px;
    outline: none;
    border: none;
    width: 100%;
    border-radius: 3px;
}

.appointment textarea {
    height: 100px;
}

.appointment button {
    background-color: var(--color-secundary-dark);
    color: white;
    padding: 10px 20px;
    border: none;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.appointment button:hover {
    background-color: #291d23;
}

/****************************************************************************************
 ******************************* ICONE FLUTUANTE - WHATSAPP*******************************
 *****************************************************************************************/
.iconwhats {
    position: fixed;
    bottom: 25px;
    right: 30px;
    font-size: 30px;
    background-color: #01e675;
    color: #ffffff;
    border-radius: 50%;
    padding: 3px;
    width: 50px;
    height: 50px;
    text-align: center;
    text-decoration: none;
    z-index: 100;
    box-shadow: 2px
}

.iconwhats .fab {
    padding-top: 9px;
}

.iconwhats:hover {
    background-color: #fff;
    color: #029e3b;
    font-weight: 900;
    box-shadow: 2px 2px 10px #5fe690;
}



/***************************************************************************************
  ************************************************* FOOTER******************************
  *****************************************************************************************/
.footer {
    background-color: #191919;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 12px;
}

.footer .bi-instagram  {
    margin-left: 2px;
}
.footer .bi-envelope  {
    margin-left: 2px;
}
.footer .bi-facebook {
    margin-left: 2px;
}
.footer .bi-whatsapp {
    margin-left: 2px;
}

/*****************************************************************************************
*************************************** MIDIAS REPONSIVAS**********************************
*********************************************************************************************/



.mobile-menu {
    background-color: var(--color-secundary-dark);
    height: 100vh;
    top: 0;
    right: 0;
    position: fixed;
    z-index: 99999;
    display: none;
    width: 60%;
    font-size: 25px;
    font-weight: 300;
    padding: 40px 4%    ;
}




   


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

    body {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-size: 14px;
        width: 100vh;
    }

    .header{
        display: none;
    }

    .home .banner h1 {
        font-size: 60px;
    }

    .home .nav ul{
        display: none;
    }

    .home .logo {
        justify-content: center;
        align-items: center;
    }


    .container {
        width: 100vh;

    }



    .about .container {
        flex-direction: column;
        align-items: center;

    }

    .about .timing,
    .about .experience {
        margin: 0;
    }

}

@media screen and (max-width: 730px) {
    .services .image-section {
        flex-direction: column;
    }

    .image-container {
        width: 100%;
        margin-bottom: 20px;
    }


    .image-container:hover {
        transform: scale(1.1);
    }

    .image-container img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        /* Para garantir que a imagem cubra o espaço sem distorção */
    }

    .image-container p {
        text-align: center;
        position: absolute;
        bottom: 0;
        font-size: 14px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        color: #fff;
        padding: 10px;
        margin: 0;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .image-container:hover p {
        opacity: 1;
    }
}