* {
    margin: 0%; padding: 0%;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

.container-fluid {
    display: flex;
    align-items: center;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    overflow-x: hidden;
}

section {
    padding: 2rem 9%;
}


.btn {
    display: inline-block;
    margin-top: 1rem;
    border-radius: 5rem;
    background:#775c9b;
    color: #fff;
    padding: .9rem 3.5rem;
    cursor: pointer;
    font-size: 1.7rem;

}

.btn:hover{
    background-color: #6f00ff;
}

header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #000000;
    padding: 0; 
    z-index: 1000;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
}

header .logo{
    font-size: 3rem;
    color:#ffffff;
    font-weight: bolder;
}

header .logo span {
    color: #d5b8ff;
}

header .navbar a{
    font-size: 2rem;
    padding: 0 1.5rem;
    color:#d5b8ff;
}

header .navbar a:hover{
    color:#9343fc;
}

header .icons a{
    font-size: 2.5rem;
    color: #d5b8ff;
    margin-right: 1.5rem;
}

header .icons a:hover{
    color:#8b31ff;
}


.home {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: url(img/2.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .content{
    max-width: 50rem;
}

.home .content h3{
    font-size: 6rem;
    color: #333;
}

.home .content span{
    font-size: 6rem;
    color:#333;
    padding: 1rem 0;
    line-height: 1.5;
    
}

.home .content p{
    font-size: 3.5rem;
    color:#eee;
    padding: 1rem 0;
    line-height: 1.5;
}

.produtos .heading {
    text-align: center;
}

.produtos .heading {
    text-align: center;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
}

.produtos .heading span {
    color: #9343fc;
}

.produtos .heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #9343fc;
    margin: 10px auto 0;
}

.box {
    overflow: hidden; /* impede qualquer vazamento */
}

.box .image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.box .image .icons {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
}

.box .content .cart-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #9343fc;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.contact .heading {
    text-align: center;
}

.contact .heading {
    text-align: center;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
}

.contact .heading span {
    color: #9343fc;
}

.contact .heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #9343fc;
    margin: 10px auto 0;
}

.footer {
    background: #111;
    color: #fff;
    padding: 40px 0 10px;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer p {
    font-size: 14px;
    color: #ccc;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #8b31ff;
}

.footer .credit {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 13px;
    color: #aaa;
}


.carrinho .heading {
    text-align: center;
}

.carrinho .heading {
    text-align: center;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 2rem;
}

.carrinho .heading span {
    color: #9343fc;
}

.carrinho .heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #9343fc;
    margin: 10px auto 0;
}


@media (max-widht:991px){

    html {
    font-size: 55%;
    }

    header {
        padding: 2rem;
    }

    section {
    padding: 2rem;
    }

    .home{
        background-position: left;
    }

}

@media (max-widht:768px){

    header .fa-bars{
        display: block;
    }

    header .navbar{
        position: absolute;
        top:100%; left: 0; right: 0;
        background: #eee;
        border-top: .1rem solid rgba(0, 0, 0, .1);
        clip-path: polygon(0 0, 100% 0, 0 0);
    }

    header #toggler:checked ~ .navbar{
        clip-path: polygon(0 0, 100% 100%, 0% 100%);
    }

    header .navbar a{
        margin: 1.5rem;
        padding: 1.5rem;
        background: #fff;
        border: .1rem solid rgba(0, 0, 0, .1);
        display: block;
    }

    .home .content h3{
        font-size: 5rem;
    }

    .home .content span{
        font-size: 2.5rem;
    }
}

@media (max-widht:450px){

    html {
    font-size: 50%;
    }
}