@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url(bootstrap.css);
@import url(fontawesome.css);
@import url(lineawesome.css);
@import url(modal-validation.css);
@import url(owl.carousel.css);
@import url(carrinho.css);
@import url(glightbox.css);
@import url(menu-mobile.css);

* {
    font-family:'Inter', sans-serif;
}
a:hover {
    text-decoration: none;
}
body {
    background: #F8F8F8;
}
ul { padding: 0; margin: 0; }
ul li { list-style: none; }

.title-wrapper { display: flex; justify-content: start; }
.title { color: #0634BE; }
.title:after { content: ''; display: block; height: 5px; width: 100%; margin-top: 5px; background-color: #0634BE; border-radius: 1rem; }

/* NAVBAR */
/* --------------- TOP BAR */
.top-bar {
    background-color: #0634BE;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.top-bar .top-bar-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.top-bar .top-bar-wrapper span {
    display: flex;
    align-items: center;
}
.top-bar .top-bar-wrapper span .mail,
.top-bar .top-bar-wrapper span .wpp {
    width: 14px;
}
.top-bar .top-bar-wrapper span .pin { 
    width: 11px;
}
.top-bar .top-bar-wrapper span a,
.top-bar .top-bar-wrapper span p  {
    font-weight: 300;
    color: #fff;
    margin: 0;
    font-size: 0.8rem;
}
/* --------------- MAIN BAR */
.main-navbar-wrapper {
    background-color: #fff;
    padding-top: 1.3rem;
    padding-bottom: 0.5rem;
}
.main-navbar-wrapper .main-navbar-content .logo-wrapper img {
    width: 100%;
}
.main-navbar-wrapper .main-navbar-content .search-wrapper {
    position: relative;
}
.main-navbar-wrapper .main-navbar-content .search-wrapper .form-control {
    height: calc(1.8em + 0.75rem + 2px);
    border-radius: 2rem;
    background-color: #F2F2F2;
    border: 1px solid #F2F2F2;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.main-navbar-wrapper .main-navbar-content .search-wrapper .form-control select,
.main-navbar-wrapper .main-navbar-content .search-wrapper .form-control input {
    height: calc(1.8em + 0.75rem + 2px);
    background: transparent;
    border: none;
    font-size: 0.9rem;
}
.main-navbar-wrapper .main-navbar-content .search-wrapper .form-control select {
    width: 24%;
}
.main-navbar-wrapper .main-navbar-content .search-wrapper .form-control input {
    padding: 0 0.5rem;
    width: 76%;
}
.main-navbar-wrapper .main-navbar-content .search-wrapper .form-control select:focus,
.main-navbar-wrapper .main-navbar-content .search-wrapper .form-control input:focus {
    outline: none;
    border: none;
}
.main-navbar-wrapper .main-navbar-content .search-wrapper .form-control:focus {
    box-shadow: none;
    border: 1px solid #F2F2F2;
}
.main-navbar-wrapper .main-navbar-content .search-wrapper .form-control::placeholder {
    color: #C6C6C6;
    font-weight: 200;
}
.main-navbar-wrapper .main-navbar-content .search-wrapper button {
    position: absolute;
    top: 4px;
    right: 5px;
    outline: 0;
    border: none;
    border: 1px solid #E46538;
    background-color: #E46538;
    height: 80%;
    border-radius: 2rem;
    min-width: 3rem;
}
.main-navbar-wrapper .main-navbar-content .search-wrapper button:hover {
    background-color: #bd4e26;
    border: 1px solid #bd4e26;
    transition: all 0.3s;
}
.main-navbar-wrapper .main-navbar-content .search-wrapper button i {
    color: #fff;
}
.main-navbar-wrapper .main-navbar-content .utilitario-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: gray;
}
.main-navbar-wrapper .main-navbar-content .utilitario-wrapper img {
    width: 18px;
}
.main-navbar-wrapper .main-navbar-menu {
    display: flex;
    justify-content: center;
}
.main-navbar-wrapper .main-navbar-menu ul {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 25%;
}
.main-navbar-wrapper .main-navbar-menu ul li > a {
    line-height: 2.5rem;
    display: block;
    color: gray;
    font-weight: 500;
    position: relative;
}
.main-navbar-wrapper .main-navbar-menu ul li > a:hover:after {
    content: '';
    display: block;
    height: 5px;
    width: 100%;
    background-color: #E46538;
    border-radius: 1rem;
    position: absolute;
    bottom: 4px;
}
.main-navbar-wrapper .main-navbar-menu ul li > a.active:after {
    content: '';
    display: block;
    height: 5px;
    width: 100%;
    background-color: #E46538;
    border-radius: 1rem;
    position: absolute;
    bottom: 4px;
}

/* --------------- NAVBAR FIXA */
.navbar-fixed {
    position: fixed;
    width: 100%;
    top: -70px;
    left: 0;
    right: 0;
    transform: translateY(70px);
    transition: transform 500ms ease, background 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.29);
    z-index: 40;
}
.main-navbar-wrapper.navbar-fixed {
    padding-top: 0.5rem;
    padding-bottom: 0rem;
}
.main-navbar-wrapper.navbar-fixed .search-wrapper .form-control {
    height: calc(1.3rem + 0.75rem + 2px);
    font-size: 0.9rem;
}
.main-navbar-wrapper.navbar-fixed .search-wrapper .form-control::placeholder  {
    font-size: 0.9rem;
}
.main-navbar-wrapper.navbar-fixed .search-wrapper button {
    top: 3px;
    right: 4px;
    height: 83%;
}
.main-navbar-wrapper.navbar-fixed .logo-wrapper img {
    width: 150px;
}
.main-navbar-wrapper.nav-fixed .main-navbar-menu ul i a {
    line-height: 1.5rem;
}
/* MENU */

/* BANNER */
.banner-home .owl-nav {
    position: absolute;
    display: flex;
    justify-content: space-around;
    top: 45%;
    left: 0;
    right: 0;
    margin: auto;
}
.banner-home .owl-nav .owl-prev,
.banner-home .owl-nav .owl-next {
    position: relative;
    background-color: #E46538 !important;
    color: #fff !important;
    height: 30px;
    width: 30px;
    border-radius: 50%;
}
.banner-home .owl-nav .owl-prev {
    left: -50px;
}
.banner-home .owl-nav .owl-next {
    right: -50px;
}
.banner-home .owl-dots {
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: auto;
}
.banner-home .owl-dots .owl-dot {
    margin: 0 0.3rem;
}
.banner-home .owl-dots .owl-dot span {
    opacity: 0.5;
    background-color: #fff;
    padding: 0.23rem;
    display: table-cell;
    border-radius: 50%;
    margin: 0 1rem;
}
.banner-home .owl-dots .owl-dot.active span {
    opacity: 1;
}

/* CONHEÇA AS MARCAS */
.empresas-wrapper {
    overflow: hidden;
    max-height: 400px;
    position: relative;
    transition: all 0.5s ease-in-out;
    display: block;
}
.border-empresa {
    position: absolute;
    bottom: 0px;
    background: rgb(248,248,248);
    background: linear-gradient(0deg, rgba(248,248,248,1) 20%, rgba(248,248,248,0) 100%);
    height: 95px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ver-empresas {
    background-color: #E46538;
    color: #fff;
    border-radius: 3rem;
    text-transform: uppercase;
}
.ver-empresas:hover {
    color: #fff;
}
.ver-empresas:focus {
    box-shadow: none;
}
.link-empresas {
   color:#E46538;
   font-weight: 800;
   text-transform: uppercase;
   padding: 0.6rem;
   min-width: 25%;
   border: 2px solid #E46538;
   border-radius: 5rem;
   text-align: center;
}
.link-empresas:hover,
.link-empresas:focus {
    color:#E46538 !important;
}
.cliente-wrapper {
    overflow: hidden;
    display: flex;
    border-radius: 18px;
    box-shadow: 7px 10px 10px #8d8d8d66;
    justify-content: center;
    background: #fff;
    border: 1px solid transparent;
}
.cliente-wrapper img {
    transform: scale(0.9);
}
.cliente-wrapper:hover {
    border: 1px solid #E46538;
    transition: all ease-in-out 0.5s;
}
.cliente-wrapper:hover img {
    transform: scale(0.93);
    transition: transform ease-in-out 0.5s; 
}

/* MEGA CAROUSEL */
.mega-carousel .carousel {
    background-color: #0634BE;
    overflow: hidden;
    min-height: 500px;
    border-radius: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.carousel .img-prod-wrapper-index {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: none;
}
.carousel .conteudo-wrapper p {
    margin: 0;
    color: #fff;
}
.carousel .conteudo-wrapper h1 {
    color: #fff;
    font-weight: 800;
    margin: 0;
    font-size: 2.1rem;
}
.carousel .conteudo-wrapper .linha, 
.carousel .conteudo-wrapper .referencia {
    font-weight: 600;
}
.carousel .conteudo-wrapper .informacao {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.carousel .owl-thumbs-index {
    display: flex;
    align-items: center;
}
.owl-thumb-item-index {
    cursor: pointer;
    width: 25%;
    border-radius: 0.7rem;
    overflow: hidden;
    box-shadow: none;
}
.owl-thumb-item-index:not(:last-child){
    margin-right: 1rem;
}

/* CAROUSEL DESTAQUES */
.detaques-wrapper .owl-nav {
    position: absolute;
    top: 43%;
    width: 100%;
}
.detaques-wrapper .owl-nav .owl-prev,
.detaques-wrapper .owl-nav .owl-next {
    position: absolute;
    background-color: #0634BE !important;
    color: #fff !important;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    top: 0;
}
.detaques-wrapper .owl-nav .owl-prev {
    left: -15px;
}
.detaques-wrapper .owl-nav .owl-next {
    right: -15px;
}
.detaques-wrapper .owl-dots {
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.detaques-wrapper .owl-dots .owl-dot {
    margin: 0 0.4rem;
}
.detaques-wrapper .owl-dots .owl-dot span {
    background-color: #c1c1c1;
    padding: 0.25rem;
    display: table-cell;
    border-radius: 50%;
    margin: 0 1rem;
}
.detaques-wrapper .owl-dots .owl-dot.active span {
    background-color: #0634BE;
}

/* CAROUSEL LINHAS */
.linhas-wrapper-container {
    background-color: #0634BE
}
.linhas-wrapper-container .title-wrapper .title {
    color: #fff;
}
.linhas-wrapper-container .title-wrapper .title:after {
    background-color: #fff;
}
.linhas-wrapper .owl-nav {
    position: absolute;
    top: 43%;
    width: 100%;
}
.linhas-wrapper .owl-nav .owl-prev,
.linhas-wrapper .owl-nav .owl-next {
    position: absolute;
    background-color: #E46538 !important;
    color: #fff !important;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    top: 0;
}
.linhas-wrapper .owl-nav .owl-prev {
    left: -15px;
}
.linhas-wrapper .owl-nav .owl-next {
    right: -15px;
}
.linhas-wrapper .owl-dots {
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.linhas-wrapper .owl-dots .owl-dot {
    margin: 0 0.4rem;
}
.linhas-wrapper .owl-dots .owl-dot span {
    background-color: #c1c1c1;
    padding: 0.25rem;
    display: table-cell;
    border-radius: 50%;
    margin: 0 1rem;
}
.linhas-wrapper .owl-dots .owl-dot.active span {
    background-color: #E46538;
}
.linhas-wrapper .produto-wrapper {
    box-shadow: none !important;
}

/* GRID PRODUTOS */
.produto-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 7px 7px 10px #8d8d8d66;
    background-color: #fff;
}
.produto-wrapper .produto-head {
    display: flex;
    align-items: center;
    max-height: 225px;
    overflow: hidden;
}
.produto-body {
    padding: 0.8rem;
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.produto-body .produto-info {
    min-height: 45px;
}
.produto-body .produto-info p {
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    line-height: 1rem;
    margin: 0;
    font-size: 0.75rem;
}
.produto-spinner-area .input-group {
    width: 55% !important;
    background-color: #e1dfdf;
    border-radius: 2rem;
    padding: 0 0.25rem;
    align-items: center;
}
.produto-spinner-area .input-group .form-control {
    height: calc(1.4em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    border: none;
    background-color: transparent;
    font-weight: 600;
    font-size: 0.85rem;
    color: #000;
}
.produto-spinner-area .input-group .form-control:focus {
    box-shadow: none;
    border: none;
}
.produto-spinner-area .input-group .btn {
    display: inline-block;
    font-weight: 400;
    background-color: #0634BE;
    border: 1px solid #0634BE;
    padding: 0;
    height: 25px;
    width: 25px;
    font-size: 1rem;
    line-height: 0;
    border-radius: 50%;
    font-weight: 800;
}
.produto-spinner-area  .input-group .btn:hover{
    background-color: #1a47d1;
    border: 1px solid #1a47d1;
    color: #fff;
}
.produto-spinner-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.produto-spinner-area .prod {
    background-color: #E46538;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 0;
    height: 32px;
    width: 32px;
    font-size: 0.7rem;
}
.produto-spinner-area .prod:hover {
    background-color: #bd4e26;
    border: 1px solid #bd4e26;
    transition: all 0.3s;
}
.produto-spinner-area .prod:focus {
    box-shadow: none;
    border: none;
}


/* FIQUE POR DENTRO */
.fique-dentro-wrapper {
    background-image: url('../../assets/images/institucional/fique-dentro-bg.png');
    background-position: bottom;
    background-repeat: repeat-x;
}
.fique-dentro-wrapper h1 {
    font-size: 3rem;
    color: #0634BE;
    font-weight: 800;
}
.fique-dentro-icons {
    display: flex;
    align-items: center;
}
.icons-wrapper {
    width: 20%;
}
.fique-dentro-icons img {
    width: 32%;
    aspect-ratio: 2/2;
    object-fit: contain;
}
.fique-dentro-icons a:not(:last-child) {
    margin-right: 1.1rem;
}
.line {
    width: 53%;
    height: 3px;
    background-color: #0634BE;
}

/* BREADCRUMB */
.breadcrumb {
    background-color: unset;
    border-radius: unset;
    margin: unset;
    padding: 0.75rem 0;
}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #cbcbcb;
    content: ">";
}
.breadcrumb .breadcrumb-item a {
    color: gray;
    font-size: 0.85rem;
}

/* MENU LATERAL */
.lateral-menu {
    background-color:#0634BE;
}
.lateral-menu-wrapper {
    width: 38.666667%;
}
.lateral-menu-wrapper h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.08rem;
    font-weight: 600;
}
.lateral-menu-wrapper .lateral-menu-head {
    margin-top: 2rem;
    margin-bottom: 1.3rem;
}
.lateral-menu-wrapper .lateral-menu-head ul {
    margin-left: 1.5rem;
}
.lateral-menu-wrapper .lateral-menu-head ul li {
    list-style: disc;
    padding-bottom: 0.3rem; 
    color: #fff;
}
.lateral-menu-wrapper .lateral-menu-head ul li a,
.lateral-menu-wrapper .lateral-menu-body ul li a {
    font-weight: 200;
    color: #fff;
    font-size: 0.95rem;
}

/* PRODUTOS */
.img-top-produtos {
    height: 200px;
    min-height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: blue;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.img-top-overlay {
    position: absolute;
    background-color: #0634be66;
    top:0;
    height: 100%;
    width: 100%;
    z-index: 2;
}
.logo-top-produtos {
    background-color: #fff;
    border-radius: 0.7rem;
    position: absolute;
    overflow: hidden;
    width: 120px;
    left: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.logo-top-produtos img {
    border-radius: 0.8rem;
}

/* PRODUTO */
.img-prod-wrapper .owl-stage-outer {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 7px 10px 10px #8d8d8d66;
}    
.img-prod-wrapper .owl-dots {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}
.img-prod-wrapper .owl-dots .owl-dot {
    margin: 0 0.3rem;
}
.img-prod-wrapper .owl-dots .owl-dot span {
    opacity: 0.5;
    background-color: #9b9b9b;
    padding: 0.23rem;
    display: table-cell;
    border-radius: 50%;
    margin: 0 1rem;
}
.img-prod-wrapper .owl-dots .owl-dot.active span {
    opacity: 1;
    background-color: #0634BE;
}
.owl-thumbs {
    display: flex;
    align-items: center;
}
.owl-thumb-item {
    cursor: pointer;
    width: 25%;
    border-radius: 0.7rem;
    overflow: hidden;
    box-shadow: 5px 5px 5px #8d8d8d66;
}
.owl-thumb-item:not(:last-child){
    margin-right: 1rem;
}
.img-prod-wrapper .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
}
.img-prod-wrapper .owl-nav .owl-prev,
.img-prod-wrapper .owl-nav .owl-next {
    position: absolute;
    background-color: #E46538 !important;
    color: #fff !important;
    height: 25px;
    width: 25px;
    border-radius: 50%;
}
.img-prod-wrapper .owl-nav .owl-prev {
    left: -15px;
}
.img-prod-wrapper .owl-nav .owl-next {
    right: -15px;
}

.conteudo-wrapper p {
    margin: 0;
    color: gray;
}
.conteudo-wrapper h1 {
    color: #0634BE;
    font-weight: 800;
    margin: 0;
    font-size: 1.8rem;
}
.conteudo-wrapper .linha, 
.conteudo-wrapper .referencia {
    font-weight: 600;
}
.conteudo-wrapper .informacao {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.prod-inter {
    background-color: #E46538;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2rem;
    padding: 0.375rem 0.75rem;
    height: calc(1.2em + 0.75rem + 2px);
    min-width: 7rem;
}
.prod-inter:focus {
    box-shadow: none;
}
.prod-inter:hover {
    background-color: #E46538;
    color: #fff; 
}
.wtpp-btn-wrapper {
    margin-top: 1.5rem;
}
.wtpp-btn {
    border: 2px solid  #0634BE;
    color:   #0634BE;
    font-weight: 700;
    border-radius: 2rem;
    display: flex;
    padding: 0.375rem 0.75rem;
    height: calc(1.4em + 0.75rem + 2px);
    justify-content: center;
    align-items: center;
}
.wtpp-btn:hover {
    border: 2px solid  #0634BE;
    background-color: #0634BE;
    color: #fff;
    transition: all 0.5s;
}
.similares .owl-nav {
    position: absolute;
    top: 43%;
    width: 100%;
}
.similares .owl-nav .owl-prev,
.similares .owl-nav .owl-next {
    position: absolute;
    background-color: #0634BE !important;
    color: #fff !important;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    top: 0;
}
.similares.owl-nav .owl-prev {
    left: -15px;
}
.similares .owl-nav .owl-next {
    right: -15px;
}
.similares .owl-dots {
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.similares .owl-dots .owl-dot {
    margin: 0 0.4rem;
}
.similares .owl-dots .owl-dot span {
    background-color: #c1c1c1;
    padding: 0.25rem;
    display: table-cell;
    border-radius: 50%;
    margin: 0 1rem;
}
.similares .owl-dots .owl-dot.active span {
    background-color: #0634BE;
}


/* CONTATO */
.contact-info h1 {
    color: #0634BE;
    font-weight: 800;
}
.contact-info p {
    font-weight: 400;
    margin: 0;
}
.contact-info a:hover{
    opacity: 0.8;
    transition: all 0.5s;
}
.contact-info a,
.contact-form-wrapper form label {
    color: #0634BE;
}
.contact-form-wrapper form label {
    margin: 0.15rem;
}
.contact-form-wrapper form label,
.contact-form-wrapper form input,
.contact-form-wrapper form textarea {
    font-size: 0.9rem;
}
.contct-form-wrapper form input {
    height: calc(1.8em + 0.75rem + 2px);
}
.contact-form-wrapper form input:focus,
.contact-form-wrapper form textarea:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}
.contact-form-wrapper form textarea {
    resize: none;
}
.contact-form-wrapper form .btn-send {
    background-color: #E46538;
    color: #fff;
    font-size: 0.8rem;
    min-width: 9rem;
    font-weight: 300;
    text-transform: uppercase;
    height: calc(1.8em + 0.75rem + 2px);
}
.contact-form-wrapper form .btn-send:focus {
    box-shadow: none;
}
.contact-form-wrapper form .btn-send:hover {
    background-color: #bd4e26;
    color: #fff;
}
.contact-form-wrapper .aviso {
    color: gray;
    font-size: 0.85rem !important;
}
.recaptcha-contato-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

/* PAINEL DE PEDIDOS */
.form-content-wrapper {
    background-color: #fff;
    padding: 2.5rem 1.3rem;
    border-radius: 1.2rem;
    border: 1px solid #ededed;
}
.form-content-wrapper label {
    font-size: 0.75rem;
    margin: 0.1rem;
    color: #747474;
    text-transform: uppercase;
}
.form-content-wrapper .img-wrapper {
    display: flex;
    justify-content: center;
}
.form-content-wrapper .form-control {
    font-size: 0.8rem;
    height: calc(1.9em + 0.75rem + 2px);
}

.form-content-wrapper .form-control:focus {
    border: 1px solid #ced4da;
    box-shadow: none;
}
.form-content-wrapper .form-control::placeholder {
    font-size: 0.8rem;
}
.form-content-wrapper .img-wrapper img {
    width: 130px;
}
.form-content-wrapper .btn-primary {
    color: #fff;
    font-size: 0.8rem;
    background-color: #E46538;
    border: 1px solid #E46538;
    height: calc(1.9em + 0.75rem + 2px);
}
.form-content-wrapper .btn-primary:hover {
    color: #fff;
    background-color: #bd4e26 !important;
    border: 1px solid #bd4e26 !important;
}
.form-content-wrapper .btn-primary:focus {
    box-shadow: none !important;
    border: 1px solid #E46538!important;
    background-color: #E46538 !important;
}
.redefinition a,
.form-content-wrapper h1 {
    color: #0634BE;
}
.redefinition {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}
.password-box {
    position: relative;
}
.password-box i {
    position: absolute;
    top: 11px;
    right: 11px;
    color: #0634BE;
    cursor: pointer;
}

/* PAINELPEDIDOS - DETALHAR */
#hist-ped .hist-ped-head {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    padding: 1rem 1.3rem;
    background-color: #0634BE;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#hist-ped .hist-ped-head h5 {
    font-weight: 200;
}
#hist-ped .hist-ped-head h5,
#hist-ped .hist-ped-head i {
    padding: 0;
    margin: 0;
    color: #fff;
}
#hist-ped .hist-ped-head i:hover {
    opacity: 0.8;
    transition: all 0.2s;
}
#hist-ped .hist-ped-body {
    border: 1px solid #0634BE;
    display: flex;
    flex-wrap: wrap;
}
#hist-ped .hist-ped-body .hist-ped-body-content {
    padding: 1.5rem 1rem;
}
#hist-ped .hist-ped-body .hist-ped-body-content h6,
#hist-ped .hist-ped-body .hist-ped-body-content p {
    margin: 0;
}
#hist-ped .hist-ped-body hr,
#hist-ped .hist-ped-body .hist-ped-body-content hr {
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#hist-ped .hist-ped-body .hist-ped-body-main-content {
    display: flex;
    flex-wrap: wrap;
    padding: 1.5rem 1rem;
}
#hist-ped .hist-ped-body .hist-ped-body-main-content hr {
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#hist-ped .hist-ped-body .hist-ped-body-main-content h6,
#hist-ped .hist-ped-body .hist-ped-body-main-content p,
#hist-ped .hist-ped-body .hist-ped-body-main-content i {
    margin: 0;
}
#hist-ped .hist-ped-body .hist-ped-body-main-content i {
    color: #E46538;
}
#hist-ped form input {
    font-size: 0.8rem;
}
#hist-ped form input:focus {
    box-shadow: none;
    border: 1px solid #ced4da !important;
}
#hist-ped .password-box i {
    top: 9px;
    color: gray !important;
}
#hist-ped form button {
    width: 30%;
    font-size: 0.8rem;
}

/* CARRINHO */
/* MOSTRADOR DE QUANTIDADE - NAVBAR */
#response {
    position: relative;
}
#response span {
    color: gray;
    font-size: 0.6rem;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* PÁGINA ESPECIAL */
#atendimento-texto h1 {
    color: #6c757d;
    font-weight: 300;
}
#atendimento-texto h1 strong {
    font-weight: 600;
}

/* 404 */
#qzq h1 {
    color: #0634BE;
    font-size: 13rem;
    font-weight: 800;
}
#qzq h5,
#qzq h1 {
    text-align: center;
}
#qzq h5 {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #E46538;
}
#qzq a {
    display: block;
    text-align: center;
    margin-top: 2rem;
    color: gray;
    text-transform: uppercase;
}
#qzq a:hover {
    font-weight: 600;
    transition: all 0.2s;
}

/* FOOTER */
.footer-wrapper {
    background-color: #ff6630;
}
.tiny-footer {
    margin-top: 1rem;
}
.tiny-footer p {
    color: #fff;
}
.text-footer {
    color: #fff;
    text-align: justify;
    line-height: 1.1rem;
    font-weight: 200;
    font-size: 0.8rem;
    margin: 0;
}
.text-newsletter {
    color: #fff;
    text-align: justify;
    font-weight: 200;
    line-height: 1.1rem;
    font-size: 0.8rem;
    margin: 0;
}
.footer-wrapper hr,
.main-footer hr {
    border-top: 1px solid #fff !important;
}
#newsletterForm input:not(input[type="checkbox"]) {
    border: 1px solid #fff;
    font-size: 0.7rem;
    height: calc(1.85em + 0.75rem + 2px);
    padding: 0.475rem 0.75rem;
}
#newsletterForm input::placeholder {
    font-size: 0.7rem;
    color: #919191;
}
#newsletterForm input:focus {
    box-shadow: none;
    border: 1px solid #fff;
}
#newsletterForm .m-05 {
    margin: 0.15rem !important;
}
#newsletterForm .submit-box {
    position: relative;
}
#newsletterForm button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.25rem 0.5rem;
    height: 100%;
    outline: none;
    border: none;
    background: none;
}
#newsletterForm button i {
    color: #0634BE;
    font-size: 0.8rem;
}
#newsletterForm button:hover i {
    color: #1a47d1;
    transition: all 0.3s;
}
.list-link-wrapper ul li {
    margin-right: 1.3rem;
}
.list-link-wrapper ul li a {
    color: #fff;
    font-weight: 200;
    font-size: 0.85rem;
    display: block;
}
.footer-grid {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(10, 22px);
    align-items: center;
}
.boxRecaptcha {
    overflow: hidden;
    border-radius: 0.25rem;
    display: flex;
    justify-content: start;
    height: 73px;
}

/* WHATSAPP */
.wtpp-wrapper {
    background-color: green;
    position: fixed;
    bottom: 60px;
    right: 60px;
    height: 65px;
    width: 65px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 8px 6px 17px #00000087;
    z-index: 8;
}
.wtpp-wrapper:hover {
    background-color: #005400;
    box-shadow: none;
    transition: all 0.3s;
}
.wtpp-wrapper:hover i {
    opacity: 0.7;
}
.wtpp-wrapper i {
    font-size: 2rem;
}


.wtpp-btn-contato {
    border: 2px solid  #ff6630;
    color: #ff6630;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 2rem;
    display: flex;
    padding: 0.375rem 0.75rem;
    height: calc(2em + 1.75rem + 2px);
    justify-content: center;
    align-items: center;
}
.wtpp-btn-contato i {
    font-size: 1.3rem;
}
.wtpp-btn-contato:hover {
    border: 2px solid  #ff6630;
    background-color: #ff6630;
    color: #fff;
    transition: all 0.5s;
}

/* AJUSTE DISPLAY DE MARCAS */
.nome-empresa {
    background-color: #fff;
    color: #0634BE;
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    transform: scale(1.1);
}
.cliente-wrapper:hover .nome-empresa {
    transform: scale(1.15);
    transition: all 0.5s;
}