@import "./tipografias.css";

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1250px;
}

.bg-danger {background-color: #FF1520 !important;}
.bg-light {background-color: #EEE !important;}
.bg-warning {background-color: #F2C585 !important;}
.bg-dark {background-color: #333333 !important;}
.bg-black {background-color: #000 !important;}

.text-white { color: #FFF !important; }
.text-black { color: #000 !important;}
.text-danger { color: #FF1520; }
.text-primary-alternative { color: #002496;}
.text-secondary { color: #bbb !important;}
.text-warning { color: #FFD827 !important;}

.text-decoration-none { text-decoration: none !important;}

.border {
    border: 1px solid #EEE !important;
}

a:focus, a:active {
    outline: none !important;
}

.b4-btn.focus, 
.b4-btn:focus,
input:focus,
textarea:focus {
    box-shadow: 0 0 0 0.2rem rgba(242, 197, 133,.5) !important;
}

input {
    outline: none;
}

.btn-primary-yellow {
    color: #000;
    background-color: #FFDC3B;
    border-radius: 6px;
}

.btn-outline-yellow {
    color: #000;
    background-color: #FFF;
    border: 2px solid #FFDC3B; 
    border-radius: 6px;
}

.gap-1 { gap: 0.25rem;}
.gap-2 { gap: 0.5rem;}
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 3rem; }

.top-0 { top: 0;}
.right-0 { right: 0;}
.bottom-0 { bottom: 0;}
.left-0 {left: 0;}
.inset-0 { inset: 0;}

.z-index-1 {z-index: 1;}
.z-index-2 {z-index: 2;}
.z-index-3 {z-index: 3;}
.z-index-4 {z-index: 4;}
.z-index-5 {z-index: 5;}

.c000 {color: #000;}
.c111 {color: #111;}
.c333 {color: #333;}
.c444 {color: #444;}
.c545454 {color: #545454;}
.c555 {color: #555;}
.c666 {color: #666;}
.c888 {color: #888;}
.c999 {color: #999;}

.bgDDD {background-color: #DDD;}
.bgEEE {background-color: #EEEEEE;}

.line-h-unset { line-height: unset !important; }
.line-h-100 { line-height: 100%; }
.line-h-120 { line-height: 120%; }

.filter-white {
    filter: brightness(0) invert(1);
}
.outline-none {
    outline: none;
}

.overlay {
    position: fixed; 
    z-index: 100; 
    inset: 0px; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.7);
}
/* .popup-search {
    display: none;
    position: fixed;
    z-index: 110;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}
.popup-search.show {
    display: block;
} */

.menu-lateral-backdrop {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(0.6px);
}

.menu-lateral-backdrop.active {
    display: block;
}

.menu-lateral {
    position: fixed;
    z-index: 1010;
    top: 0px;
    width: 360px;
    left: -360px;
    height: 100%;
    transition: left .2s, width 0.2s;
    background-color: #000;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    overflow: hidden;
}
.menu-lateral.show {
    left: 0;
}
/*SEACH*/
.search-input {
    height: 45px;
    background-color: #fff;
    color: #aaa;
}


.btn-go-checkout {
    background: #FFDC3B;
    color: #000;
    border-radius: 6px;
}

.btn-arrow-slick {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #D1D1D1;
}

.btn-arrow-slick.slick-disabled,
.btn-arrow-slick[aria-disabled="true"]{
    pointer-events: none;
    opacity: 0.2;
}

@media screen and (max-width: 575px) {
    .logo {
        width: 220px;
    }

    .menu-lateral.show {
        width: 100%;
    }
}
@media screen and (min-width: 576px) and (max-width: 991px){
    .logo {
        width: 280px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1198px){
    .logo {
        width: 380px;
    }
}

/*Homepage*/
.card-service {
    height: 190px;
    overflow-y: hidden;
    border-radius: 6px;
    background-color:#E6E6E6;
    transition: color 0.3s, background-color 0.3s;
}
.card-service:hover,
.card-service:focus {
    background-color:#FFDA29;
}

.card-produto {
    width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
    border: 1px solid #EEE;
    border-radius: 8px;
    height: 430px;
}

/*Promo product when selected*/
.card-produto.active .price{
    background-color: #333333;
}
.card-produto.active .price strong{
    color: #FFDA29;
}

.card-produto:focus, 
.card-produto:active {
    outline: 0;
    box-shadow: 0 0 0 0.3rem rgba(41, 39, 40, 0.2);
}

.card-produto #btn-add-to-cart {
    color: #FFF;
    background-color: #000;
    border-radius: 8px;
    margin-top: 4rem;
}

.card-produto #btn-add-to-cart img {
    transition: all 0.2s;
    filter: brightness(0) invert(1);
}

.card-produto:hover #btn-add-to-cart {
    color: #000;
    background-color: #FFDC3B;
}

.card-produto:hover #btn-add-to-cart img {
    filter: brightness(0);
}

.button-add-cart {
    background-color: #000000;
}

.button-add-cart:hover {
    color: #FFF;
    background-color: #3a3939;
}
  
.table-specification tr:nth-child(odd) {
    background-color: #EDEDED;
}

.produto-anterior, 
.proximo-produto {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #C0C0C0;
    background-color: #FFF;
    transition: background-color 0.3s, border-color 0.3s;
}
.produto-anterior:hover, 
.proximo-produto:hover {
    border-color: #292728;
    background-color: #292728;
}
.produto-anterior:hover i, 
.proximo-produto:hover i {
    color: #FFF !important;
}
.produto-anterior:hover .preview-produto-anterior {
    display: block;
}
.proximo-produto:hover .preview-proximo-produto {
    display: block;
}
.preview-produto-anterior,
.preview-proximo-produto {
    display: none;
    position: absolute;
    z-index: 10;
    top: 110%;
    right: -68%;
    width: 100px;
    height: 100px;
    border: 1px solid #DDD;
    background-color: #FFF;
}

/***** SEARCH PAGE ******/

.custom-checkbox input[type="checkbox"],
.custom-checkbox input[type="radio"] {
    position: relative;
    width: 0;
    height: 0;
    opacity: 0;
    left: 0 !important;        
}
.custom-checkbox {
    cursor: pointer;
    position: relative;
    width: 24px;
    height: 24px;
}
.custom-checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    border: 2px solid #E0E4E6;
    border-radius: 4px;
    transition: all 0.3s;
}

.custom-checkbox .checkmark .fa-check { color: #fff; }

.custom-checkbox input[type="checkbox"]:checked ~ .checkmark,
.custom-checkbox input[type="radio"]:checked ~ .checkmark {
    background-color: #000;
    border-color: #000 !important;
}
.custom-checkbox input[type="checkbox"]:checked ~ .checkmark .fa-check,
.custom-checkbox input[type="radio"]:checked ~ .checkmark .fa-check {
    color: #FFD827 !important;
}

.bg-favicon-image {
    background-color: #F3F3F3;
    background-image: url('../image/favicon-gray.png');
    background-repeat: no-repeat;
    background-position: 95%;
}

.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    background-color: #F2C585;
    color: #000;
    font-weight: bold;
    border-color: transparent;
}
.pagination>li>a, 
.pagination>li>span {
    color: #000;
    font-weight: bold;
}

/***** WHATSAPP BUTTON ******/
#robbu-whatsapp-button {
    position: fixed;
    display: flex;
    z-index: 50;
    background: #25d366;
    bottom: 25px;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    box-shadow: 2px 2px 12px rgba(22, 124, 60, .2);
    transition: .4s;
    align-items: center;
    justify-content: center;
    right: 25px;
}
#robbu-whatsapp-button>img {
    display: block;
    width: 34px;
    height: 34px
}
#robbu-whatsapp-button:hover {
    background: #21bd5c;
    box-shadow: 3px 3px 12px rgba(14, 81, 39, .4)
}