:root {
    --brown: #3d1407;
}

* {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all .2s linear;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    width: 1.1rem;
}

html::-webkit-scrollbar-track {
    background: rgb(195, 185, 185);
}

html::-webkit-scrollbar-thumb {
    background: #666;
}

header {
    position: fixed;
    background-color: #292828;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    color: #fff;
    padding: 1.5rem 10%;
    box-shadow: 0 .3rem 2rem rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--brown);
}

header .logo img {
    height: 5rem;
}

header .navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

header .navbar ul li {
    margin-left: 3rem;
}

header .navbar ul li a {
    font-size: 1.75rem;
    color: rgb(235, 228, 228);
}

header .navbar ul li a:hover {
    text-shadow: 0 0 6px #ececec;
}

header .navbar ul li a:active {
    text-shadow: 0 0 2px #ffffff;
}

header #menu-bar {
    font-size: 2.6rem;
    color: #ffffff;
    cursor: pointer;
    display: none;
}

*::selection {
    background: var(--brown);
    color: #fff;
}

section {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
}

section:first-child {
    margin-top: 100px;
}

h1 {
    width: 90%;
    font-size: 3em;
    margin: 10px auto;
    margin-left: 30px;
    font-weight: bold;
    color: var(--brown);
    display: inline-block
}

p {
    margin-left: 30px;
    font-size: 1.6em;
}

.carousel {
    width: 100%;
    background-color: #f4f4f4;
    margin: 10px auto;
    display: flex;
    overflow: auto;
}

section::-webkit-scrollbar {
    visibility: hidden;
}

section .carousel .box {
    min-width: 300px;
    max-height: 500px;
    position: relative;
    left: 0;
    text-align: center;
    background: #fdfdfd;
    padding: 2rem;
    margin: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 .3rem .5rem rgba(0, 0, 0, .2);
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

section .carousel .box img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

section .carousel .box h3 {
    margin-top: 12px;
    color: #333;
    font-size: 2.6rem;
    font-weight: normal;
}

section .carousel .box .price {
    color: #666;
    font-size: 2rem;
    margin: 0 auto;
}

section .carousel .box:hover {
    transform: scale(1.01);
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, .2);
}

section .carousel .box .btn {
    font-size: 1.5rem;
    padding: .7rem 4rem;
    border-radius: 5rem;
    margin: 16px auto;
    background: none;
    color: var(--brown);
    cursor: pointer;
    border: .2rem solid var(--brown);
    display: block;
}

section .carousel .box .btn:hover {
    background: var(--brown);
    color: white;
}

#tortas a {
    color: var(--brown)
}

#tortas a:hover {
    border-bottom: .8px solid var(--brown);
}

#tortas a:active {
    color: brown;
}

#tortas a:visited {
    color: var(--brown);
    text-decoration: none;
}

#queques a {
    color: var(--brown)
}

#queques a:hover {
    border-bottom: .8px solid var(--brown);
}

#queques a:active {
    color: brown;
}

#queques a:visited {
    color: var(--brown);
    text-decoration: none;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.owl-dot {
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid var(--brown)!important;
    transition: all 0.3s ease;
}

.owl-dot.active {
    width: 35px;
    border-radius: 14px;
}

.owl-dot.active,
.owl-dot:hover {
    background: var(--brown)!important;
}

@media (max-width:768px) {
    header #menu-bar {
        display: block;
    }
    header .navbar {
        position: fixed;
        top: 8rem;
        left: 0;
        width: 100%;
        background: var(--brown);
        border-top: .2rem solid rgba(0, 0, 0, .1);
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }
    header .navbar ul {
        flex-flow: column;
        padding: 2rem;
    }
    header .navbar ul li {
        margin: 1.2rem;
        width: 100%;
    }
    header .navbar ul li a {
        display: block;
        color: #fff;
        padding-left: 2rem;
        border-left: .2rem solid #fff;
        font-size: 1.7rem;
    }
    header .navbar ul li a.active {
        color: #eee;
        border-color: #333;
    }
    header .navbar.nav-toggle {
        transform: scaleY(1);
        opacity: 1;
    }
}

@media (max-width:740px) {
    .owl-dot {
        height: 11px;
        width: 11px;
    }
    section .carousel .box {
        min-width: 200px;
        max-height: 400px;
    }
    section .carousel .box h3 {
        font-size: 2rem;
    }
    section .carousel .box .price {
        font-size: 1.6rem;
    }
    section .carousel .box .btn {
        font-size: 1.4rem;
        padding: .7rem 2rem;
    }
}

@media (max-width:500px) {
    section .carousel .box {
        width: 80%;
        max-height: 400px;
    }
    section .carousel .box h3 {
        font-size: 2rem;
    }
    section .carousel .box .price {
        font-size: 1.6rem;
    }
    section .carousel .box .btn {
        font-size: 1.4rem;
        padding: .7rem 2rem;
    }
}