:root {
    --color-primary: #917758;
}

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

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');


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

/****** DIV QUE CENTRALIZA O CONTEÚDO ******/
.container {
    width: 1170px;
    margin: 0 auto;
}



/****** SECTION_HOME ******/
.home {
    position: relative;
    background-size: cover;
    height: 100vh;
    background-image: url(../images/bg-home.jpg);
}



/****** SECTION_HOME_HEADER ******/
.home .header {
    padding: 30px 0;
}

.home .header nav {
    display: flex;
    justify-content: center;
}

.home .header nav ul {
    display: flex;
}

.home .header nav ul li {
    display: flex ;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    list-style: none;
}

.home .header nav ul li a {
    color: white;
    text-transform: uppercase;
    text-decoration: none ;
    font-weight: bold;
    font-size: 12px;
    padding: 20px;
}

.home .header nav ul li a:hover {
    border-bottom: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.home .header nav ul li .logo {
    margin: 0 30px;
}



/****** SECTION_HOME_BANNER ******/
.home .banner {
    color: white;
    text-align: center;

    /* CONFIGURAÇÕES PARA POSISIONAR A DIV NO CENTRO DE QUALQUER TELA */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 730px;
    height: 250px;
    margin-top: -125px;
    margin-left: -365px; */
}

.home .banner span {
    display: block;
}

.home .banner .slogan_1 {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
}

.home .banner h1 {
    font-size: 120px;
    margin: 20px 0;
}

.home .banner .slogan_2 {
    margin-bottom: 15px;
}



/****** SECTION_ABOUT ******/
.about {
    background-color: var(--color-primary);
}

.about .container {
    display: flex;
}



/****** SECTION_ABOUT_TIMING ******/
.about .timing {
    width: 33%;
    background-image: url(../images/brush-big.jpg);
    background-repeat: no-repeat;
    padding: 20px;
    position: relative;
    top: -50px;
}

.about .timing .overlay {
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding: 40px 20px;
}

.about .timing .overlay .classic_cut {
    width: 50px;
}

.about .timing .overlay h3 {
    color: var(--color-primary);
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-primary);
    width: fit-content;
    margin: 0 auto;
    font-size: 30px;
}

.about .timing .overlay .text {
    margin: 30px 0;
}

.about .timing .overlay .text::after {
    content: '•';
    font-size: 30px;
    color: white;
}

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

.about .timing .overlay .text h4 {
    color: grey;
    font-weight: 400;
}

.about .timing .overlay span {
    color: white;
    display: block;
    padding-bottom: 20px;
}


/****** SECTION_ABOUT_EXPERIENCE ******/
.about .experience {
    width: 66%;
    color: white;
    margin-left: 7%;
    margin-top: 100px;
}

.about .experience h2 {
    font-weight: 400;
    font-size: 60px;
}

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

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

.about .experience .text p {
    font-weight: 100;
    font-size: 17px;
}