/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

    .btn.btn-primary {
        color: var(--bs-white);
    }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 11px 0 !important;
    height: 85px;
}

    .navbar .navbar-nav .nav-link {
        margin-right: 45px;
        padding: 0;
        color: var(--bs-dark);
        font-weight: 500;
        transition: .5s;
        outline: none;
    }

        .navbar .navbar-nav .nav-link:hover,
        .navbar .navbar-nav .nav-link.active {
            color: var(--bs-white);
        }

    .navbar .dropdown-toggle::after {
        border: none;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        vertical-align: middle;
        margin-left: 8px;
    }

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: var(--bs-primary);
    }

        .navbar .navbar-nav .nav-link {
            margin-right: 0;
            padding: 10px 0;
        }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    position: relative;
    margin-top: -85px;
    padding-top: 8rem;
    padding-bottom: 3rem;
    background-size: cover;
}

    .hero-header::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, .1);
        clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
    }

    .hero-header .container {
        position: relative;
        z-index: 1;
    }

    .hero-header .breadcrumb-item + .breadcrumb-item::before {
        color: var(--bs-light);
    }


/*** Feature ***/
.feature-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.feature-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Deal ***/
.deal {
    position: relative;
    background-size: cover;
}

    .deal::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, .1);
        clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
    }

    .deal .bg-white {
        position: relative;
        z-index: 1;
    }

    .deal .cdt span {
        display: block;
        font-size: 16px;
        font-style: italic;
        font-weight: 200;
        text-transform: capitalize;
    }


/*** How To Use ***/
.how-to-use {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

    .how-to-use::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, .1);
        clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
    }

    .how-to-use .container {
        position: relative;
        z-index: 1;
    }

    .how-to-use .border {
        border-color: rgba(255, 255, 255, .2) !important;
    }


/*** Product ***/
.product-item {
    transition: .1s;
}

    .product-item:hover {
        border-width: 0 !important;
        box-shadow: 0 0 15px #efa90c;
    }

        .product-item:hover a.btn {
            color: var(--bs-white);
            background: var(--bs-primary);
        }


/*** Testimonial ***/
.testimonial {
    position: relative;
    background: none;
    background-size: cover;
}

    .testimonial::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, .1);
        clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
    }

    .testimonial .testimonial-carousel {
        position: relative;
        z-index: 1;
    }

.testimonial-carousel .owl-item img {
    width: 120px;
    height: 120px;
    border-color: rgba(255, 255, 255, .2) !important;
    margin: 0 auto 20px auto;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    transition: .5s;
}

    .testimonial-carousel .owl-dot.active {
        background: var(--bs-dark);
    }


/*** Blog ***/
.blog-item {
    transition: .1s;
}

    .blog-item:hover {
        border-width: 0 !important;
        box-shadow: 0 0 35px rgba(144, 188, 121, .25);
    }

        .blog-item:hover a.btn {
            color: var(--bs-white);
            background: var(--bs-primary);
        }


/*** Contact ***/
.contact-info-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
}

.contact-info-item .border {
    position: relative;
    border-color: rgba(255, 255, 255, .2) !important;
    z-index: 1;
}


/*** Newsletter ***/
.newsletter {
    position: relative;
    background: url(../img/bg.png) center center no-repeat;
    background-size: cover;
}

    .newsletter::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, .1);
        clip-path: polygon(66% 0, 100% 0, 100% 100%, 33% 100%);
    }

    .newsletter .container {
        position: relative;
        z-index: 1;
    }

    .newsletter .form-control {
        background: rgba(255, 255, 255, .3);
    }


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--bs-body);
    font-weight: normal;
    transition: .3s;
}

    .footer .btn.btn-link:hover {
        color: var(--bs-primary);
    }

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        letter-spacing: 1px;
        box-shadow: none;
    }

.footer .copyright {
    padding: 25px 0;
    border-top: 3px solid var(--bs-light);
}

    .footer .copyright a {
        color: var(--bs-body);
    }

        .footer .copyright a:hover {
            color: var(--bs-primary);
        }

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 3px solid var(--bs-light);
}

    .footer .footer-menu a:last-child {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }

.scrollable-div {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
}

.texto-valor-original-card {
    font-size: 1.5vh;
    color: lightgray;
    font-weight: 600;
    text-decoration: line-through;
}

.texto-valor-desconto-card {
    font-size: 1.5vh;
    color: black;
    font-weight: 600;
}

.texto-mais-comprado-card {
    font-size: 1.3vh;
    color: tomato;
    font-weight: 600;
}


.texto-roleta-quantidade-card {
    font-size: 2vh;
    color: black;
    font-weight: 600;
}

.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #efa90c;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.whatsapp-icon {
    margin-top: 16px;
}


.container-background-laranja-claro {
    background-color: #f1b22526 !important;
}

.product-item-laranja-medio {
    border: 3px solid #efa90c87 !important;
}

@keyframes piscar-borda {
    /*0% {
        box-shadow: 0 0 10px rgba(239, 169, 12, 0.2);
    }*/

    50% {
        box-shadow: 0 0 20px rgba(239, 169, 12, 1);
    }

    100% {
        box-shadow: 0 0 10px rgba(239, 169, 12, 0.2);
    }
}

.product-item-laranja-medio-dashed {
    border: 1px dashed #efa90c !important;
    animation: piscar-borda .5s infinite alternate;
}




.btn-roleta-premiada {
    width: 100px;
    height: 100px;
    background-color: #efa90c;
    border-radius: 10px;
}

    .btn-roleta-premiada .icone {
        color: #000;
        font-size: 1.2rem;
    }

    .btn-roleta-premiada .texto {
        color: #000;
        font-size: .7rem;
    }


    .btn-roleta-premiada.borda-superior-esquerda {
        border-top-left-radius: 40%;
    }

    .btn-roleta-premiada.borda-superior-direita {
        border-top-right-radius: 40%;
    }

    .btn-roleta-premiada.borda-inferior-esquerda {
        border-bottom-left-radius: 40%;
    }

    .btn-roleta-premiada.borda-inferior-direita {
        border-bottom-right-radius: 40%;
    }

    .btn-roleta-premiada.borda-redonda {
        border-radius: 100%;
        /*cursor: pointer;*/
    }

    .btn-roleta-premiada .imagem {
        max-width: 70px;
        /*cursor: pointer;*/
    }



    .btn-roleta-premiada.ativo {
        width: 100px;
        height: 100px;
        background-color: #000;
        border-radius: 10px;
    }

        .btn-roleta-premiada.ativo .icone {
            color: #efa90c;
            font-size: 1.2rem;
        }

        .btn-roleta-premiada.ativo .texto {
            color: #efa90c;
            font-size: .7rem;
        }

        .btn-roleta-premiada.ativo .imagem {
            animation: btn-imagem-girar 1s linear infinite;
        }

        .btn-roleta-premiada.ativo.borda-superior-esquerda {
            border-top-left-radius: 40%;
        }

        .btn-roleta-premiada.ativo.borda-superior-direita {
            border-top-right-radius: 40%;
        }

        .btn-roleta-premiada.ativo.borda-inferior-esquerda {
            border-bottom-left-radius: 40%;
        }

        .btn-roleta-premiada.ativo.borda-inferior-direita {
            border-bottom-right-radius: 40%;
        }

        .btn-roleta-premiada.ativo.borda-redonda {
            border-radius: 100%;
        }

    .btn-roleta-premiada.ganhou {
        width: 100px;
        height: 100px;
        background-color: #008000;
        border-radius: 10px;
    }

        .btn-roleta-premiada.ganhou .icone {
            color: #000;
            font-size: 1.2rem;
        }

        .btn-roleta-premiada.ganhou .texto {
            color: #000;
            font-size: .7rem;
        }

        .btn-roleta-premiada.ganhou .imagem {
            animation: btn-imagem-girar 1s linear infinite;
        }

        .btn-roleta-premiada.ganhou.borda-superior-esquerda {
            border-top-left-radius: 40%;
        }

        .btn-roleta-premiada.ganhou.borda-superior-direita {
            border-top-right-radius: 40%;
        }

        .btn-roleta-premiada.ganhou.borda-inferior-esquerda {
            border-bottom-left-radius: 40%;
        }

        .btn-roleta-premiada.ganhou.borda-inferior-direita {
            border-bottom-right-radius: 40%;
        } 

    .btn-roleta-premiada.perdeu {
        width: 100px;
        height: 100px;
        background-color: #ff0000;
        border-radius: 10px;
    }

        .btn-roleta-premiada.perdeu .icone {
            color: #000;
            font-size: 1.2rem;
        }

        .btn-roleta-premiada.perdeu .texto {
            color: #000;
            font-size: .7rem;
        }

        .btn-roleta-premiada.perdeu .imagem {
            animation: btn-imagem-girar 1s linear infinite;
        }

        .btn-roleta-premiada.perdeu.borda-superior-esquerda {
            border-top-left-radius: 40%;
        }

        .btn-roleta-premiada.perdeu.borda-superior-direita {
            border-top-right-radius: 40%;
        }

        .btn-roleta-premiada.perdeu.borda-inferior-esquerda {
            border-bottom-left-radius: 40%;
        }

        .btn-roleta-premiada.perdeu.borda-inferior-direita {
            border-bottom-right-radius: 40%;
        }



@keyframes btn-imagem-girar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
