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

:root {
    --color-main: #ed8c09;


    --m-width: 1140px;

    --f-family-1: "Poppins", sans-serif;
    --f-family-2: "Indie Flower", cursive;
    
}

body {
    font-family: var(--f-family-1);
    font-size: 1rem;
}

header {
    height: 100px;
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
}

.button {
    display: block;
    background-color: var(--color-main);
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 50px;
    margin-top: 20px;
    border-radius: 5px;
}

.header {
    max-width: var(--m-width);
    height: 100px;
    margin: auto;
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
}

.logo img {
    width: 80px;
    height: 80px;
    background-color: var(--color-main);
}

.menu-opener {
    display: none;
}

.menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.menu ul,
.menu li {
    list-style: none;
}

.menu ul {
    display: flex;
}

.menu li a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    padding: 0 10px;
    height: 100px;
    display: flex;
    align-items: center;
    border-bottom: 5px solid #000;
}

.menu li a:hover,
.menu .active a {
    color: var(--color-main);
    border-bottom: 5px solid var(--color-main);
}

.banner {
    height: calc(100vh - 100px);
    background: #333 url('../images/bg.png') center bottom no-repeat;
    background-size: cover;
}

.overlay {
    width: inherit;
    height: inherit;
    background-color: rgba(0, 0, 0, .7);
}

.banner .textarea {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.banner .textarea h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 25px;
}

.banner .textarea h1 span {
    font-family: var(--f-family-2);
    color: var(--color-main);
    font-size: 100px;
}

.section-target {
    height: 50px;
    background-color: var(--color-main);
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-target h1 {
    color: #fff;
    font-size: 20px;
    font-weight: normal;
}

.default {
    padding: 50px 0;
}

.default .section-title {
    text-align: center;
    text-transform: capitalize;
    font-size: 50px;
    color: var(--color-main);
    font-family: var(--f-family-2);
    font-weight: bold;
    margin-bottom: 20px;
}

.default .section-body {
    max-width: var(--m-width);
    margin: auto;
}

.default.light {
    background-color: #f7f7f7;
}

.default.light .section-title {
    color: var(--color-main);
}

.default.dark {
    background-color: #000;
}

.default.dark .section-title {
    color: #fff;
}

/* CSS DE ÁREAS ESPECÍFICAS */

.section-aboutus {
    display: flex;
}

.section-aboutus--left {
    flex: 1;
}

.section-aboutus--left p {
    font-size: 15px;
    line-height: 30px;
}

.section-aboutus--right {
    width: 500px;
    text-align: center;
}

.section-aboutus--right img {
    width: 480px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.bg-services {
    background: url('../../media/image03.jpg') center center no-repeat;
    background-size: cover;
    padding: 0;
}

.section-service-overlay {
    background-color: rgba(0, 0, 0, .5);
    padding: 50px 0;
}

.section-ourservices {
    width: 100vw;
    max-width: var(--m-width);
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.ourservices--card {
    width: 300px;
}

.ourservices--cardarea {
    margin: 10px;
    width: 280px;
    height: 160px;
}

.ourservices--cardarea img {
    width: inherit;
    height: inherit;
}

.ourservices--cardinfo {
    position: absolute;
    background-color: rgba(0, 0, 0, .8);
    width: inherit;
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding: 15px;
}

.ourservices--cardinfo img {
    width: 50px;
    height: 50px;
}

.ourservices--cardinfo h5 {
    font-size: 20px;
    font-weight: 500;
}

.ourservices--cardinfo p {
    font-size: 13px;
    text-align: center;
}


.section-ourworks {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-ourworks--filters {
    border: 1px solid #ccc;
    background-color: var(--color-main);
    border-radius: 30px;
    display: inline-block;
    padding: 0 20px;
}

.section-ourworks--filters ul,
.section-ourworks--filters li {
    list-style: none;
}

.section-ourworks--filters li {
    display: inline-block;
    padding: 10px;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    border-left: 1px solid #ccc;
    border-bottom: 3px solid var(--color-main);
    cursor: pointer;
}

.section-ourworks--filters li:hover,
.section-ourworks--filters li.active {
    border-bottom: 3px solid #fff;
}

.section-ourworks--filters li:first-child {
    border-left: 0;
}

.section-ourworks--photos {
    width: 100vw;
    max-width: var(--m-width);
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.section-ourworks--photo {
    width: 280px;
}

.section-ourworks--photoarea {
    margin: 10px;
    width: 260px;
    height: 160px;
}

.section-ourworks--photoarea img {
    width: inherit;
    height: inherit;
}

.section-ourworks--photos a {
    display: inline-block;
}


.section-price {
    display:flex;
}
.section-price--item {
    flex:1;
    background-color: #FFF;
    margin-right: 20px;
    padding:20px;
    text-align:center;
}
.section-price--item:last-child {
    margin-right:0;
}
.section-price--item-name {
    text-transform: uppercase;
    font-size:13px;
    font-weight:600;
}
.section-price--item-money {
    font-weight: bold;
    font-size:13px;
    margin-bottom:10px;
}

.section-contact {
    max-width:450px;
    margin:auto;
    text-align:center;
}
.section-contact input[type=text],
.section-contact textarea {
    display:block;
    width:100%;
    height:40px;
    border:0;
    background:transparent;
    border-bottom:1px solid #CCC;
    outline:0;
    margin-top:10px;
}
.section-contact textarea {
    height:100px;
    resize:none;
}
.section-contact--split {
    display:flex;
}
.section-contact--split input:first-child {
    margin-right:20px;
}

.section-contact .submit {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 0;
}


footer {
    background-color:#000;
    padding:20px;
}
.footer--area {
    max-width:1140px;
    margin:auto;
    color:#FFF;
    display:flex;
}
.footer--item {
    flex:1;
}
.footer-social {
    display:flex;
}
.footer-social a {
    display:block;
    width:25px;
    height:25px;
    background-color:#333;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius:13px;
    margin-right:10px;
}
.footer-social a:hover {
    background-color: var(--color-main);
}
.footer-social img {
    height:10px;
}
.footer--item.area2 {
    font-size:13px;
    padding:0 10px 10px 10px;
}

.footer--item.area2 a {
    text-decoration: none;
    color:#fff;
}


@media (min-width: 450px) and (max-width: 800px) {
    .logo {
        margin-left: 30px;
    }

    .menu-opener {
        display: block;
        width: 40px;
        margin-right: 30px;
    }

    nav {
        display: none;
        position: absolute;
        z-index: 99;
        background-color: rgba(0, 0, 0, .9);
        width: 70vw;
        height: calc(100vh - 100px);
        top: 100px;
        right: 0;
    }

    .menu ul {
        flex-direction: column;
    }

    .menu li a {
        font-weight: bold;
        height: 80px;
        font-size: 25px;
        margin-left: 50px;
        border: 0;
    }

    .menu li.active a {
        border: 0;
        color: var(--color-main);
    }

    .section-aboutus {
        flex-direction: column;
    }

    .section-aboutus--left {
        margin: 30px;
    }

    .section-aboutus--right {
        width: auto;
    }

    /* .section-ourservices {
        flex-wrap: wrap;
    } */

    .section-price {
        flex-wrap:wrap;
    }
    .section-price--item {
        margin-left:20px;
        min-width:calc(50% - 40px);
        margin-bottom:20px;
    }
    .section-price--item:last-child {
        margin-right:20px;
    }

    .footer--area {
        flex-direction:column;
        text-align: center;
    }
    .footer--item {
        margin-bottom:5px;
    }
    .footer-social {
        justify-content: center;
        margin-bottom: 20px;
    }
}


@media (max-width: 450px) {
    .logo {
        margin-left: 30px;
    }

    .menu-opener {
        display: block;
        width: 40px;
        margin-right: 50px;
    }

    nav {
        display: none;
        position: absolute;
        z-index: 99;
        background-color: rgba(0, 0, 0, .9);
        width: 80vw;
        height: calc(100vh - 100px);
        top: 100px;
        right: 0;
    }

    .menu ul {
        flex-direction: column;
    }

    .menu li a {
        font-weight: bold;
        height: 60px;
        font-size: 20px;
        margin-left: 30px;
        border: 0;
    }

    .menu li.active a {
        border: 0;
        color: var(--color-main);
    }

    .banner .textarea h1 {
        font-size: 15px;
    }

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

    .section-target .text-target h1 {
        font-size: 15px;
    }

    .section-aboutus {
        flex-direction: column;
    }

    .section-aboutus--left {
        margin: 30px;
    }

    .section-aboutus--right {
        width: auto;
        margin: 0 30px;
    }

    .section-aboutus--right img {
        width: 100%;
    }

    .section-ourworks--filters {
        margin: 0 30px;
    }

    .section-ourworks--photo {
        width: 320px;
    }

    .section-ourworks--photoarea {
        width: 300px;
        height: 190px;
    }

    .section-price {
        flex-direction: column;
        max-width: 300px;
    }

    .button.button--dark {
        padding: 15px;
    }

    .section-price {
        flex-wrap:wrap;
    }
    .section-price--item {
        margin-left:20px;
        min-width:calc(50% - 40px);
        margin-bottom:20px;
    }
    .section-price--item:last-child {
        margin-right:20px;
    }

    .section-contact {
        padding: 20px;
    }

    .footer--area {
        flex-direction:column;
        text-align: center;
    }
    .footer--item {
        margin-bottom:5px;
    }
    .footer-social {
        justify-content: center;
        margin-bottom: 20px;
    }
}

.main-agendamento {
    margin: 40px;
}

.bookly-mobile-step-2 .bookly-js-mobile-step-2,
.bookly-service-step .bookly-available-date, .bookly-service-step .bookly-week-days, .bookly-repeat-step .bookly-week-days, .bookly-service-step .bookly-time-range {
    display: none !important;
}
