@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root{
--primary:#D4003B;
--success: #3e9b67;
--success-soft: #e3f3ea;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}


.select2-results__options {
  max-height: 250px !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: auto !important;
}

.select2-results__options::-webkit-scrollbar {
  width: 6px;
}
.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.ios-scroll-fix {
  max-height: 250px !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: manipulation !important;
}

html {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  height: 100%;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1205px!important;
    }
}

.container-busca{
    max-width: 100%!important;
	width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

::-webkit-scrollbar {width: 5px;}
::-webkit-scrollbar-thumb {background: #D4003B!important;}
::-webkit-scrollbar-track-piece {background: rgb(22,25,24)}

body {
  font-family: 'Poppins', sans-serif!important;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 1.8;
  color: rgb(22,25,24);
  overflow-x: hidden;
  background:#f5f5f9;
  height: 100%;
  margin: 0; /* Remove margens padrão */
  padding: 0; /* Remove preenchimento padrão */
  
}

body img {
  max-width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

.small, small {
    font-size: 80%!important;
}

.line-icon{
	line-height:0.95rem;
}

.row-inner{
	margin-right: -10px!important;
    margin-left: -10px!important;
}

a:hover {
  color: #D4003B;
  text-decoration: none;
}

hr {   
 margin-top: 0.5rem;    
 margin-bottom: 0.5rem;
}

.alert a {	color: #D4003B!important;}
.alert-danger {    color: #D4003B!important;}
.form-control{	margin-bottom: 1rem;}	


h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: 'Poppins', sans-serif!important;
  font-weight: 700;
  color: rgb(22,25,24);
}

h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child,
h6:last-child, .h6:last-child {
  margin: 0;
}

.button-none {
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
	padding: 0;
	border-radius: 4rem;
    padding: 5px;
	background-color:white;
}

.button-none:active, .button-none:focus, .button-none:hover {
    background: none;
    border: none;
    outline: none!important;
    box-shadow: none;
	padding: 0;
	border-radius: 4rem;
    padding: 5px;
	background-color:white;
	border: 1px solid #D4003B;
}
.button-like {
	
	border-radius: 4rem;
    padding: 5px;
	background-color:white;
	
}

.button-like:hover {
	
	border-radius: 4rem;
    padding: 5px;
	background-color:white;
	border: 1px solid #D4003B;
	
}

.btn-danger {
    color: #fff;
    background-color: #D4003B!important;
    border-color: #D4003B!important;
}

.cookiealert .acceptcookies{
	background: #D4003B!important;
    border: #D4003B!important;
}

h1, .h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
  } 
  
.img-loja{
	margin-top: -8px;
    border-radius: 10rem;
	width:80px;
	height:80px;
	object-fit: cover;
}

.img-loja-produto{
	margin-top: -8px;
    border-radius: 10rem;
	width:36px;
	height:36px;
	object-fit: cover;
}

@media only screen and (max-width:994px){	   
	.img-loja{
		margin-top: 0px;
	}
	
	.img-loja-produto{
		margin-top: 0px;
	}
}	
  
.vertical-align{
	align-items: center;
    display: flex;
}

@media only screen and (max-width:767px){	 
	.vertical-align{
		display: block;
	}
}	

.card-motion {
	display: block;
	min-height: 460px;
}

.content-motion {
	transition: transform 1s;
	transform-style: preserve-3d;
	animation: mymove 5s infinite;
}

.card-motion:hover .content-motion {
	transform: rotateY( 180deg ) ;
	transition: transform 0.5s;
}

.front-motion,
.back-motion {
	position: absolute;
	height: 100%;
	width: 100%;
	backface-visibility: hidden;
}

.back-motion {
	transform: rotateY( 180deg );
}

@keyframes mymove {
	0%   {transform: rotateY( 180deg );}
	50%  {transform: rotateY( 0deg );}
	100% {transform: rotateY( 180deg );}
}

.left{	float: left;}
.right{	float: right;}
.carregando{	color:#666;	display:none;}
.carregando2{	color:#666;	display:none;}
.red-bg {	background:#D4003B;}
.red-bg:hover {	background:rgb(22,25,24);}
.red-bg:active {	background:rgb(22,25,24);}
.black-bg{	background:#262827!important;	background-color:#262827!important;}
.purple-bg{	background:#A020F0!important;	background-color:#A020F0!important;}
.black-bg:hover{	background:#D4003B;}
.black-bg:active{	background:#222222;}
.gray-bg{	background: rgb(22,25,24);}
.gray-bg:hover{	background: rgb(32,37,41);}
.gray-bg:active{	background: rgb(32,37,41);}

.text-red{	color:#D4003B!important;}
.text-yellow{	color:#FFD403!important;}


.green-bg{	background:#40c351!important;	background-color:#40c351!important;}
.green-bg:hover{color: white!important; background:#33A441!important;background-color:#33A441!important;}
.green-bg:active{color: white!important; background:#33A441!important;background-color:#33A441!important;}

.line-height-1{
	line-height: 1rem;
}

.line-height-2{
	line-height: 2rem;
}


.text-black {	color:  rgb(22,25,24)!important;}
.text-black a:hover {	color:  #D4003B!important;}

.box-shadow{
	padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.box-shadow-price{
	padding: 1.5rem;
    background: rgb(22,25,24);
    border-radius: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	color: white!important;
}

.box-shadow-price h2{
	color: white!important;
}



.wrapper {	 
	width: 100%;
    height: 80px;
	bottom: 0;
	
	/*height: 165px;
	bottom: -80px;
    padding-bottom: 60px;*/
	
    background: white;
    display: none;
    justify-content: space-evenly;
    align-items: center;
    z-index: 9979;
    position: fixed;
    
    box-shadow: 0px -12px 15px -20px #000;
	color: #888888;
	border-top: 1px solid #DFDFDF;
}	

	
.wrapper .item {	  
	cursor: pointer; 
	padding: 0rem 1.5rem 1rem 1.5rem;
    width: 25%;
}	


.wrapper .item a {	  
	color: #999;
	font-size: 10px;
}	
	
.wrapper .item a:hover{
	color: #777;
	
}		
.wrapper .item a:active{
	color: #777;
}


.wrapper-product {
    height: 68px;    
    z-index: 9978;
    position: fixed;
	display: none;
    bottom: 65px!important;
    left: 0;
    right: 0;
    box-shadow: 0px -10px 30px -15px #000;
	padding: 10px 15px 10px 15px;
	overflow: hidden;
	background: rgb(235, 234, 234);
}

.wrapper-busca {	 
	display: none;
}	

@media only screen and (max-width:1069px){	 
	.wrapper {
		display: flex;
	}
	.wrapper-product {
		display: block;
	}
	
	.wrapper-busca {	 
		width: 100%;
		height: 65px;
		background: rgb(235, 234, 234);
		z-index: 11;
		position: fixed;
		top: 105px;
        box-shadow: 0px 10px 20px 0px #000;
		padding: 10px 15px 10px 15px;
	}
	
}

/* Classe para o Footer sumir (para baixo) */
.footer-hidden {
	transform: translateY(100%);
}


#buttonsMobile {
  display: none;
}
@media (max-width: 1069px) {
	
	#buttonsMobile {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 7px 15px;
        z-index: 10000;
        text-align: center;
        display: block;
		overflow: hidden;
		background: rgb(22, 25, 24)!important;
		box-shadow: 0px 5px 10px 10px rgba(0, 0, 0, 0.5);
		transition: transform 0.3s ease-in-out;
		will-change: transform;
    }	
	
	#buttonsMobile .col {
		line-height: 0.95!important;
	}
	
	#buttonsMobile a.menuBtn{
		color: rgb(224, 241, 255) !important;
		font-size:10px;
	}
		
	#buttonsMobile a:hover{
		color: #777;
		
	}		
	#buttonsMobile a:active{
		color: #777;
	}
	
	#buttonsMobile .menuBtn i{
		font-size: 2rem!important;
	}
	
	#buttonsMobile h3,#buttonsMobile p {	  
		color: rgb(224, 241, 255) !important;
	}
	
    #whatsapp-fixed {
      right: 33%;
      bottom: 10px;
      height: auto;
      border-radius: 0;
      font-size: 24px;
      padding: 0;
      background-color: transparent;
    }
	
    #whatsapp-fixed span {
      display: none;
    }
	
    .scroll-top {
      visibility: visible !important;
      opacity: 1 !important;
      bottom: 8px;
      right: 10%;
      background-color: transparent;
    }
    .scroll-top:hover {
      background-color: transparent;
    }
    .scroll-top i {
      font-size: 40px;
    }
    .scroll-top i, 
    #buttonsMobile i, 
    #whatsapp-fixed i {
      transition: 0.3s;
    }
    .scroll-top:hover i, 
    #buttonsMobile a:hover i, 
    #whatsapp-fixed:hover i {
      color: #ffffff;
      opacity: 0.6 !important;
      transition: 0.3s;
    }
}



@supports (padding-bottom:env(safe-area-inset-bottom)) {
    @media (orientation: portrait) {
        #buttonsMobile {
            padding-bottom: env(safe-area-inset-bottom);
        }
    }
}

/* 1. Oculta o Ícone Ativo por Padrão */
.icone-ativo {
    display: none;
}

/* 2. Oculta o Ícone Padrão quando o link está ativo */
.link-ativo .icone-padrao {
    display: none;
}

/* 3. Mostra o Ícone Ativo quando o link está ativo */
.link-ativo .icone-ativo {
    display: inline-block; /* Ou o display que for apropriado para seu layout */
}

.display-none {
	display: none !important;
}

.display-block {
	display: block !important;
}


a.whats-btn:hover {
    color: #ccc!important;
}

a.whats-btn:active {
    color: #ccc!important;
}


.filtro-label{
	display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    position: absolute;
    background: white;
    left: 20px;
    top: -10px;
    padding: 2px;
    z-index: 15;
	border-radius: 10rem;
}




.pc-display{
	display:inline-block!important;
	/*width: 100%;*/
}

.mobile-display{
	display:none!important;
}

@media only screen and (max-width:991px){	 
	.pc-display{
		display:none!important;
	}	
	.mobile-display{
		display:inline-block!important;
		width: 100%;
	}
}

@media only screen and (max-width: 991px){
	.mobile-hide { 
	 display: none!important; 
	}
}

@media only screen and (max-width: 1199px){
	.tablet-hide { 
	 display: none!important; 
	}
}




.pc-display-prod{
	display:inline-block!important;
	width: 100%;
}

.mobile-display-prod{
	display:none!important;
}

@media only screen and (max-width:767px){	 
	.pc-display-prod{
		display:none!important;
	}	
	.mobile-display-prod{
		display:inline-block!important;
		width: 100%;
	}
}

@media only screen and (max-width: 767px){
	.mobile-hide-prod { 
	 display: none!important; 
	}
}


.pc-hide-header{
	display:none!important;
}

@media only screen and (max-width:1199px){	 
	.pc-hide-header{
		display:inline-block!important;
	}	
}

.pc-display-header{
	display:inline-block!important;
	/*width: 100%;*/
}

.mobile-display-header{
	display:none!important;
}

@media only screen and (max-width:1199px){	 
	.pc-display-header{
		display:none!important;
	}	
	.mobile-display-header{
		display:inline-block!important;
		width: 100%;
	}
}

@media only screen and (max-width: 1199px){
	.mobile-hide-header { 
	 display: none!important; 
	}
}

.pc-hide{
	display:none!important;
}

@media only screen and (max-width:1199px){	 
	.pc-hide{
		display:inline-block!important;
	}	
}

.alert-primary{	
	color: #fff;
    background-color: rgb(105, 105, 119);
}

.text-shadow{	text-shadow: 2px 2px black;}
.text-center { text-align: center!important;}
.text-end { text-align: right!important;}
.text-start { text-align: left!important;}

.form-marca{ height: 25px;}

.img-fill{
	object-fit: cover;
	height: 235px;
	width:100%;
}

.img-fill-offcanvas{
	object-fit: cover!important;
	height: 360px!important;
	width:100%!important;
}

@media only screen and (max-width:991px){
	.busca .img-fill {height: 120px;}
}

.img-fill-product{
	object-fit: cover;
	height: 500px;
	width:100%;
}

@media only screen and (max-width: 994px) {
	.img-fill-product{
		height: 320px;
	}
	.img-fill-offcanvas{
		object-fit: cover!important;
		height: 240px!important;
		width:100%!important;
	}
}

.img-fill-painel{
	object-fit: cover;
	height: 580px;
	width:100%;
	overflow: hidden;
}

@media only screen and (max-width: 994px) {
	.img-fill-painel{
		height: 380px;
	}
}

.modal-painel{
	top: 13%;
}

@media only screen and (max-width: 994px) {
	.modal-painel{
		top: 10%;
	}
}





.radius-10{
	border-radius:10rem!important;
}

.rounded {
  border-radius: 1rem !important;
}

.progress-bar {
    background-color: #D4003B;
}

.font-weight-400{
	font-weight:400!important;
}

.font-weight-700{
	font-weight:700!important;
}

.x {
	border: none;
    position: absolute;
    right: 0px;
    font-size: 1.3rem;
    background: #D4003B;
    color: white !important;
    transition: ease filter, transform 0.3s;
    cursor: pointer;
    transform-origin: center;
    border-radius: 100%;
    padding: 2px 12px 0px 10px;
    z-index: 30;
}


/* toggle-pill-color */
.toggle-pill-color input[type="checkbox"] {
  display: none;
}
.toggle-pill-color input[type="checkbox"] + label {
  position: relative;
  margin-top: 5px;
  width: 3em;
  height: 1.6em;
  border-radius: 1em;
  background: #000;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-transition: background 0.1s ease-in-out;
  transition: background 0.1s ease-in-out;
}
.toggle-pill-color input[type="checkbox"] + label:before {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 1em;
  background: #fff;
  box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0.2em;
  top: 0.2em;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.toggle-pill-color input[type="checkbox"]:checked + label {
  background: #D4003B;
}
.toggle-pill-color input[type="checkbox"]:checked + label:before {
  box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
  left: 1.6em;
}

.toggle-pill-color{
	border-radius: 1rem;
	padding-top: 0rem;
}

.toggle-pill-color:hover{
	background: #eee;
	border-radius: 1rem;
}

.toggle-pill-color p{
	font-size: 1rem;
	font-weight:700;
	
}

.toggle-pill-color .col-form-label {
    padding-top: 0;
}

.box-form {
    text-align: center;
    padding: 0.6rem;
    border-radius: 1rem;
    font-size: 0.7rem;
}
/* toggle-pill-color end */



@media only screen and (max-width: 767.96px) {
  h1, .h1 {
    font-size: 3rem;
    line-height: 3.25rem;
  }
}

@media only screen and (max-width: 767.96px) {
  h1, .h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}@media only screen and (max-width: 767.96px) {  .text-right {    text-align: center!important;  }  .text-left {    text-align: center!important;  }}.border-icon{	border: 1px solid #fff;    padding: 1rem;    border-radius: 15px;}  

h2, .h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.25rem;
}

@media only screen and (max-width: 767.96px) {
  h2, .h2 {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}

@media only screen and (max-width: 575.96px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
}

h3, .h3 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem;
}

@media only screen and (max-width: 575.96px) {
  h3, .h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75rem;
}

@media only screen and (max-width: 575.96px) {
  h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5rem;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
}

p {
  font-family: 'Poppins', sans-serif!important;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1px;
  line-height: 20px;
  color: rgb(22,25,24);
  margin: 0 0 0 0;
}

p:last-child {
  margin: 0;
}

.float-right{
	float: right!important;
}

.float-left{
	float: left!important;
}

@media only screen and (max-width: 994px) {   

.float-right{
	float: inherit!important;
}  
.float-left{
	float: inherit!important;
}
}


.loader-spin {	
	position:fixed;	
	width:100%;	
	height: calc(100dvh + 100px);
	left:0;	
	right:0;	
	top:0;	
	bottom:0;	
	background-color: rgba(255,255,255,0.975);	
	z-index:9999;	
}
@-webkit-keyframes spin {from {	-webkit-transform:rotate(0deg);}to {-webkit-transform:rotate(360deg);}}
@keyframes spin {from {transform:rotate(0deg);}	to {transform:rotate(360deg);}}

.loader-spin::after {
	content:'';	
	display:block;	
	position:absolute;	
	left: 48%;    
	top: 40%;	
	width:40px;	
	height:40px;	
	border-style:solid;
	border-color:#D4003B;	
	border-top-color:transparent;	
	border-width: 4px;	
	border-radius:50%;	
	-webkit-animation: spin .8s linear infinite;	
	animation: spin .8s linear infinite;
}

.loader-spin p{	
	content: '';	
	display: block;	
	position: absolute;	
	left: 45%;	
	top: 46%;	
	margin-left: -4rem;
}



.busca-spin {	
	position:fixed;	
	width:100%;	
	height: calc(100dvh + 100px);
	left:0;	
	right:0;	
	top:0;	
	bottom:0;	
	background-color: rgba(255,255,255,0.975);	
	z-index:9999;	
}
@-webkit-keyframes spin {from {	-webkit-transform:rotate(0deg);}to {-webkit-transform:rotate(360deg);}}
@keyframes spin {from {transform:rotate(0deg);}	to {transform:rotate(360deg);}}

.busca-spin::after {
	content:'';	
	display:block;	
	position:absolute;	
	left: 48%;    
	top: 40%;	
	width:40px;	
	height:40px;	
	border-style:solid;
	border-color:#D4003B;	
	border-top-color:transparent;	
	border-width: 4px;	
	border-radius:50%;	
	-webkit-animation: spin .8s linear infinite;	
	animation: spin .8s linear infinite;
}

.busca-spin p{	
	content: '';	
	display: block;	
	position: absolute;	
	left: 45%;	
	top: 46%;	
	margin-left: -4rem;
}




#cover-spin {	
	position:fixed;	
	width:100%;	
	left:0;	
	right:0;	
	top:0;	
	bottom:0;	
	background-color: rgba(255,255,255,0.9);	
	z-index:9999;	
	display:none;
}
@-webkit-keyframes spin {from {	-webkit-transform:rotate(0deg);}to {-webkit-transform:rotate(360deg);}}
@keyframes spin {from {transform:rotate(0deg);}	to {transform:rotate(360deg);}}

#cover-spin::after {
	content:'';	
	display:block;	
	position:absolute;	
	left: 48%;    
	top: 40%;	
	width:40px;	
	height:40px;	
	border-style:solid;
	border-color:#D4003B;	
	border-top-color:transparent;	
	border-width: 4px;	
	border-radius:50%;	
	-webkit-animation: spin .8s linear infinite;	
	animation: spin .8s linear infinite;
}

#cover-spin p{	
	content: '';	
	display: block;	
	position: absolute;	
	left: 45%;	
	top: 46%;	
	margin-left: -4rem;
}

.loader {
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1111;
  background: #fff;
  overflow-x: hidden;
}

.loader-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 50px;
  width: 50px;
}


  
 .position-absolute {
  position: absolute !important;
}

 .position-fixed {
  position: fixed !important;
}

.dashboard-dropdown{	
	z-index: 11; 
	right: 1rem;
    border-radius: 10rem;
    background-color: #000;
    padding: 0rem;
    margin: 1rem;
	content: none;
}

.dashboard-dropdown:hover{	
    background-color: #333;
}

.dropdown ul li {
  padding: 0rem;
}

.dropdown{
 background:#D4003B;
}

.dropdown::after {
    content: none;
}

.dropdown-toggle::after {
            content: none;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.45rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:focus, .dropdown-item:hover{
	color: #FFF;
    background-color: #D4003B;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10002;
  display: none;
  overflow: hidden;
  outline: 0; 
  backdrop-filter: blur(20px);
}
  
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; 
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%); }
    @media screen and (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }
  .modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); }

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2)); }

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0px solid rgba(0, 0, 0);
  border-radius: 1rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px; }
  .modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5; }

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem; }

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef; }
  .modal-footer > :not(:first-child) {
    margin-left: .25rem; }
  .modal-footer > :not(:last-child) {
    margin-right: .25rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2)); }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 994px) {
  .modal-lg {
    max-width: 900px; } }


@-webkit-keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@keyframes spinLeft {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@-webkit-keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes spinRight {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.mt-7, .my-7 {    margin-top: 7rem!important;}

.mt-10 {
  margin-top: 10rem;
}

.mt-50 {  margin-top: 50px;}

@media only screen and (max-width: 767.96px) {  
	.mt-50 {    
	margin-top: 35px; 
	}
	.mt-7, .my-7 {    margin-top: 10rem!important;}
}

.mb-50 {  
margin-bottom: 50px;
}

@media only screen and (max-width: 767.96px) {  
	.mb-50 {    
	margin-bottom: 25px; 
	}
}

.mt-80 {
  margin-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mt-80 {
    margin-top: 50px;
  }
}

.mb-80 {
  margin-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .mb-80 {
    margin-bottom: 50px;
  }
}

.mt-100 {
  margin-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .mt-100 {
    margin-top: 80px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}

.mt-150 {
  margin-top: 150px;
}

@media only screen and (max-width: 767.96px) {
  .mt-150 {
    margin-top: 100px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
  .mb-150 {
    margin-bottom: 100px;
  }
}

.mt-200 {
  margin-top: 200px;
}

@media only screen and (max-width: 767.96px) {
  .mt-200 {
    margin-top: 150px;
  }
}

.mb-200 {
  margin-bottom: 200px;
}

@media only screen and (max-width: 767.96px) {
  .mb-200 {
    margin-bottom: 150px;
  }
}


.pt-50 {  padding-top: 50px;}@media only screen and (max-width: 767.96px) {  .pt-50 {    padding-top: 35px;  }}.pb-50 {  padding-bottom: 50px;}@media only screen and (max-width: 767.96px) {  .pb-50 {    padding-bottom: 35px;  }}
.pt-80 {
  padding-top: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pt-80 {
    padding-top: 50px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}

@media only screen and (max-width: 767.96px) {
  .pb-80 {
    padding-bottom: 50px;
  }
}

.pt-100 {
  padding-top: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}

@media only screen and (max-width: 767.96px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pt-150 {
  padding-top: 130px;
}

@media only screen and (max-width: 767.96px) {
  .pt-150 {
    padding-top: 120px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}

@media only screen and (max-width: 767.96px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

.pb-70, .py-70 {
    padding-bottom: 7rem !important;
}

.pt-70, .py-70 {
    padding-top: 7rem !important;
}

.pb-footer{
	padding-bottom: 11rem !important;
}

.orange-text {
  color: #D4003B;
}    

.red-text {  
	color: #D4003B!important;
}

.green-text {  
	color: #50C878!important;
}

.blue-bg {
  background-color: #162133;
  }    
  
.boxed-btn { 
 font-family: 'Poppins', sans-serif;  
 display: inline-block;  
 background-color: #D4003B;  
 color: #fff;  
 padding: 10px 20px;
}
   
.key-btn { 
 font-family: 'Poppins', sans-serif; 
 font-size:1rem;
 display: inline-block;  
 background: rgb(223,168,13);
 background: linear-gradient(357deg, rgba(223,168,13,1) 0%, rgba(251,200,77,1) 5%, rgba(255,217,40,1) 16%, rgba(255,232,78,1) 20%, rgba(255,232,78,1) 26%, rgba(254,187,0,1) 35%, rgba(227,163,0,1) 52%, rgba(224,188,0,1) 54%, rgba(179,120,0,1) 83%, rgba(233,183,16,1) 90%, rgba(255,228,11,1) 96%, rgba(217,162,9,1) 99%); 
 color: #fff;  
 padding: 10px 20px;
 border-radius:10rem;
}

.key-btn:hover { 
 background: rgb(22,25,24);
}

.bordered-btn {  
font-family: 'Poppins', sans-serif;  
display: inline-block;  
color: #fff;  
border: 2px solid #D4003B;  
padding: 7px 20px;
}

a.boxed-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #D4003B;
  color: #fff;
  padding: 10px 20px;
}

a.bordered-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  color: #fff;
  border: 2px solid #D4003B;
  padding: 7px 20px;
}

.boxed-btn {  
font-family: 'Poppins', sans-serif;  
display: inline-block;  
background-color: #D4003B;  
color: #fff; 
padding: 10px 20px;
}

.bordered-btn {  
font-family: 'Poppins', sans-serif;  
display: inline-block;  
color: #fff;  
border: 2px solid #D4003B;  
padding: 7px 20px;
}  

a.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  color: rgb(22,25,24);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}

a.read-more-btn:hover {
  color: #D4003B;
}

a.boxed-btn, a.bordered-btn, a.cart-btn {
  border-radius: 1rem;
}  
  
.boxed-btn, .bordered-btn, .cart-btn {  
border-radius: 1rem;
}

.section-title h3 {
  font-size: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title h3:after {
  position: absolute;
  content: '';
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 50px;
  height: 2px;
  background-color: #D4003B;
  margin: 0 auto;
}

.section-title p {
  font-size: 15px;
  width: 100%;
  margin: 0 auto;
  color: #555;
  margin-top: 10px;
  line-height: 1.8;
}

.section-title {
  margin-bottom: 35px;
}

.breadcrumb-bg {
  background-image: url(../img/breadcrumb-bg.jpg);
}

.breadcrumb-text p {
  color: #D4003B;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  margin-top: 60px;
}


.breadcrumb-text h1 {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  margin: 0;
  margin-top: 20px;
}

.breadcrumb-section {
  padding: 90px 0;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  padding-top: 115px;
}

@media only screen and (max-width: 575.96px) {  

.breadcrumb-section {	  
	padding: 30px 0;	  
	background-position: center;	  
	background-attachment: inherit;	  
	padding-top: 105px;	
	}
}

.breadcrumb-section:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(22,25,24);
  z-index: -1;
  opacity: 0.8;
  }   
  
 .breadcrumb-section-product {  
 padding: 75px 0;  
 background-size: cover;  
 background-position: center;  
 position: relative;  
 z-index: 1;  
 background-attachment: initial;  
 padding-top: 150px;
 
 }
 
 @media only screen and (max-width: 575.96px) {  
 .breadcrumb-section-product {	  
 padding: 40px 0;	  
 background-position: center;	  
 background-attachment: inherit;
 padding-top: 105px;	
 }
}

.breadcrumb-section-product:after {  
position: absolute;  
left: 0;  
top: 0;  
width: 100%; 
 height: 100%; 
 content: "";  
 background-color: rgb(22,25,24);  
 z-index: -1;  
 opacity: 0.8;  
 }      
 
 .internas-bg { 
 background-image: url(../img/breadcrumb-bg.jpg);
 }
 
 .internas-text p {  
 color: #D4003B; 
 font-weight: 700; 
 text-transform: uppercase; 
 letter-spacing: 7px;
 }
 
 .internas-text h1 {  
 font-size: 50px; 
 font-weight: 900; 
 color: #fff;  
 margin: 0;  
 margin-top: 20px;
 }
 
 .internas-section { 
 padding: 20px 0; 
 background-size: cover; 
 background-position: center center; 
 position: relative; 
 z-index: 1;
 background-attachment: fixed;  
 padding-top: 100px;
 }
 
 @media only screen and (max-width: 575.96px) {  
 .internas-section {
	 padding: 90px 0;	
	 background-position: center;	 
	 background-attachment: inherit;	
	 padding-top: 105px;	
	}
}.internas-section:after {  
position: absolute;  
left: 0; 
 top: 0; 
 width: 100%;  
 height: 100%;  
 content: "";  
 background-color: rgb(22,25,24); 
 z-index: -1;  opacity: 0.8;  
 }    
 .internas-section-product {  
 padding: 80px 0;  
 background-size: cover; 
 background-position: center; 
 position: relative; 
 z-index: 1;  
 background-attachment: initial;  
 padding-top: 150px;
 }
 
 @media only screen and (max-width: 575.96px) { 
 .internas-section-product {	
 padding: 40px 0;	
 background-position: center;
 background-attachment: inherit;	
 padding-top: 160px;	}
 }
 
 .internas-section-product:after { 
 position: absolute; 
 left: 0; 
 top: 0; 
 width: 100%;
 height: 100%; 
 content: "";
 background-color: rgb(22,25,24); 
 z-index: -1; 
 opacity: 0.8;
 }

/* -----------------------------------------------------------------------------

# Header Styles

----------------------------------------------------------------------------- */
ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: rgb(22,25,24);
}

.top-header-area {
  position: absolute;
  z-index: 999;
  width: 100%;
  padding: 0px 0;
}

.top-header-area.white ul.navbar-nav li.nav-item a.nav-link, .top-header-area.white ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
}

ul.navbar-nav li.nav-item a.nav-link, ul.navbar-nav li.nav-item.active a.nav-link {
  color: #fff;
  font-weight: 700;
  margin-right: 14px;
}

a.navbar-brand img {
  max-width: 150px;
}

nav.main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav.main-menu ul li {
  display: inline-block;
}

nav.main-menu ul li a {
  color: #fff;
  font-weight: 700;
  display: block;
  padding: 15px;  
  text-transform: uppercase;  
  font-size: 12px;
  border-radius:1rem;
  }  
  
nav.main-menu ul li a:hover {  
color: #FFF!important;  
background-color: #D4003B!important;  
border-radius:1rem;
}

nav.main-menu ul > li {
  position: relative;
}

   

nav.main-menu ul ul.sub-menu {
  position: fixed;    
  background-color: rgb(22,25,24);    
  width: 100%;    
  padding: 15px 15px;    
  margin: 0;    
  left: 0;   
  top: 72px;    
  border-radius: 0rem;  
  -webkit-transition: 0.3s;   
  -o-transition: 0.3s;    
  transition: 0.3s;    
  opacity: 0;    
  visibility: hidden;    
}

nav.main-menu ul ul.sub-menu li {
  display: block;
  text-align: left;
}nav.main-menu ul ul.sub-menu h3 {  display: block;  text-align: left;  margin: 0.5rem 0rem 0.5rem 0.6rem;}

nav.main-menu ul ul.sub-menu li a {
  color: #E4E4E4;
  font-weight: 600;
  font-size: 13px;
  }          
  
nav.main-menu ul ul.sub-painel {  
position: absolute;  
background-color: #fff;  
width: 235px;  
padding: 15px 15px;  
margin: 0;  
left: 0;  
top: 50px;  
border-radius: 1rem;  
-webkit-transition: 0.3s;  
-o-transition: 0.3s;  
transition: 0.3s;  
opacity: 0;  
visibility: hidden;  
-webkit-box-shadow: 0 0 20px #555555;  
box-shadow: 0 0 20px #555555;
z-index: 15;
}

nav.main-menu ul ul.sub-painel li {  
display: block;  text-align: left;
}

nav.main-menu ul ul.sub-painel h3 {  
display: block;  
text-align: left; 
 margin: 0.5rem 0rem 0.5rem 0.6rem;
}
 
 nav.main-menu ul ul.sub-painel li a {  
 color: #555555;  
 font-weight: 600; 
 padding: 7px 10px;  
 font-size: 13px;  
 border-radius: 1rem;
 }  

nav.main-menu ul > li:hover ul {
  opacity: 1;
  visibility: visible;
}

nav.main-menu ul li:last-child a {
 display: inline-block;
}

nav.main-menu > ul li:last-child {
  float: right;
  }  
  
 @media only screen and (max-width: 575.96px){	
	 .sub-menu h3{		
	 line-height: 1.5rem;	
	 text-align: left;		
	 color: #fff;
	 margin: 1rem 0rem 1rem 2rem;
	 }
 }    
 
.line-right{	
	border-right: solid 1px #111;	
}

.site-logo {
  float: left;
  max-width: 184px;
  }	

ul.sub-menu li:last-child {
  float: none !important;
}

.mean-container .mean-bar {
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 15px;
}

.mean-bar a.meanmenu-reveal {
  background-color: #D4003B;
}

.main-menu-wrap {
  position: relative;
}

.mean-container a.meanmenu-reveal {
  color: rgb(22,25,24);
}

.mean-container a.meanmenu-reveal span {
  background-color: rgb(22,25,24);
}

.mean-container .mean-nav ul li a {
  padding: 0.5em 5%;
}


.mean-container .mean-nav ul li a.mean-expand {
  font-size: 16px;
  height: 15px;
  line-height: 15px;
  width: 15px;
}

.mean-container .mean-nav h3 {
  color: #FFFFFF!important;
  padding: 1rem 1rem 1rem 1.5rem;
}

.mean-container a.meanmenu-reveal {
  padding: 8px 8px 6px;
}

nav.mean-nav > ul > li:first-child > a {
  border-top: none;
}

.header-icons a {
  color: #fff;
  display: inline-block;
  padding: 10px;
}

.site-logo {
  padding: 6px 0;
  }  


@media only screen and (max-width: 767.96px) {	
.site-logo { padding: 20px 0;}
}

.top-header-area.sepherate-header ul li > a, .top-header-area.sepherate-header .header-icons a {
  color: rgb(22,25,24);
}

nav.main-menu ul ul.sub-menu li {
  display: block;
}

nav.main-menu ul ul.sub-menu li a {
  color: #555;
  padding: 5px 10px 5px 10px;
  font-size: 13px;
  font-weight: 600;
}

nav.main-menu ul li.current-list-item > a {
  color: #D4003B;
}

nav.main-menu li:hover > a {
  color: #D4003B;
}

nav.main-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.top-header-area .header-icons a:hover {
  color: #D4003B;
}

.sticky-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: rgb(22,25,24);
  z-index: 9991 !important;
  height: 72px!important;
}

.sticky-wrapper.is-sticky .top-header-area {
  background: rgb(22,25,24);
  padding: 10px 0;
  }  
  
.top-header-area {padding: 10px 0;}
  
@media only screen and (min-width: 768px) and (max-width: 1199px){	
  .sticky-wrapper.is-sticky .top-header-area {	 
	position: fixed;	  
	height:85px!important;	  
	background: rgb(22,25,24);	  
	padding: 10px 0;	
  } 
  
 }
 
 @media only screen and (max-width: 994px){
	.top-header-area {
	  padding: 0px 0!important;
  }
} 

.top-header-area {
  /*-webkit-transition: 0.3s;*/
  /*-o-transition: 0.3s;*/
  /*transition: 0.3s;*/
  }  

ul.navbar-nav {
  margin: 0 auto;
}

.search-area {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5555;
  background-color: rgb(22,25,24);
  width: 100%;
  height: 100%;
  text-align: center;
}

span.close-btn {
  position: absolute;
  right: 0%;
  color: #fff;
  top: 5%;
  cursor: pointer;
}

.search-area {
  height: 100%;
}

.search-area div {
  height: 100%;
}

.search-bar {
  height: 100%;
  display: table;
  width: 100%;
}

a.mobile-show {
  display: none;
}

.search-area .search-bar div.search-bar-tablecell {
  display: table-cell;
  vertical-align: middle;
  height: auto;
}

.search-bar-tablecell input {
  border: none;
  padding: 15px;
  width: 90%;
  background-color: transparent;
  border-bottom: 1px solid #D4003B;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff;
}

.search-bar-tablecell button[type=submit] {
  border: none;
  background-color: #D4003B;
  padding: 15px 30px;
  cursor: pointer;
  display: inline-block;
  border-radius: 50px;
  font-weight: 700;
}

.search-bar-tablecell input::-webkit-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input:-ms-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input::-ms-input-placeholder {
  color: #fff;
}

.search-bar-tablecell input::placeholder {
  color: #fff;
}

.search-bar-tablecell button[type=submit] i {
  margin-left: 5px;
}

.search-area {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.search-area.search-active {
  visibility: visible;
  opacity: 1;
  z-index: 10003;
}

.search-bar-tablecell h3 {
  color: #fff;
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 7px;
  }      
  
 .portfolio {  padding: 75px 0;}
 .portfolio::before {  position: absolute;  content: "";  top: 80px;  left: 0px;  width: 100%;  height: 92%;  background-size: contain;}
 .portfolio .shape {  top: -15px;  right: -100px;  height: 130px;}
 .portfolio small, .portfolio .small {  padding-bottom: 30px;  font-weight: 600;}
 .portfolio h2, .portfolio .h2 {  font-weight: 600;}
 .portfolio .step-row {  padding-top: 70px;  padding-bottom: 80px;} 
 .portfolio .card {  border-radius: 30px;}
 .portfolio .card .icon {  height: 80px;  width: 80px;  font-size: 25px;  background-color: #2753c9;}
 .portfolio .card h3, .portfolio .card .h3 {  font-weight: 600;  padding: 30px 0 20px;}
 .portfolio .card p {  color: rgb(22,25,24);  line-height: 30px;}
 .portfolio .portfolio-slider .owl-item .item {  margin: 0 -20px 0 -50px;}
 .portfolio .portfolio-slider .owl-stage {  left: 50px;}
 .portfolio .portfolio-slider .owl-stage-outer {  overflow: inherit;}
 .portfolio .portfolio-slider .item img {  border-radius: 15px;}

/* -----------------------------------------------------------------------------

# Footer Styles

----------------------------------------------------------------------------- */
.single-logo-item img {
  max-width: 180px;
  margin: 0 auto;
  }  .car-logo-item img {  /*max-width: 180px;*/  margin: 0 auto;}

.logo-carousel-section {
  background-color: #fff;
  padding: 50px 0;
}

.car-carousel-section {  
	background-color: rgb(22,25,24);  
	padding: 25px 0 0 0;
}  


.footer-area {  background: rgb(22,25,24);
  color: #fff;
  padding: 75px 0;
}

h2.widget-title {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding-bottom: 20px;
  color: #fff;
}

h2.widget-title:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 2px;
  background-color: #D4003B;
  content: "";
}

.footer-box p {
  color: #fff;
  line-height: 1.8;
}

.footer-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-box ul li:last-child {
  margin-bottom: 0;
}

.footer-box.subscribe form input[type=email] {
  border: none;
  background-color: #333333;
  width: 78%;
  padding: 15px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  color: #fff;
}

.footer-box.subscribe form button {
  width: 20%;
  border: none;
  background-color: #333333;
  color: #D4003B;
  padding: 14px 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  cursor: pointer;
}

.footer-box.subscribe form button:focus {
  outline: none;
}

.copyright {
  background-color: rgb(22,25,24);
  border-top: 1px solid #232a35;
}

.copyright p {
  margin: 0;
  color: #fff;
  padding: 16px 0;
  font-size: 15px;
}

.copyright a {
  color: #D4003B;
  font-weight: 700;
}

.copyright a:hover {
  color: #ccc;
}

.social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-icons ul li {
  display: inline-block;
}

.social-icons ul li a {
  font-size: 16px;
  color: #fff;
  padding: 16px 10px;
  display: block;
}

.footer-box ul li a {
  color: #fff;
}

.footer-box.pages ul li {
  position: relative;
  padding-left: 20px;
}

.footer-box.pages ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #D4003B;
}

/* -----------------------------------------------------------------------------

# Hover Styles

----------------------------------------------------------------------------- */
a.navbar-brand {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.navbar-brand:hover {
  opacity: 0.7;
}

a.boxed-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.boxed-btn:hover {
  background-color: rgb(22,25,24);
  color: #D4003B;
}

a.bordered-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.bordered-btn:hover {
  background-color: #D4003B;
  color: #fff;
  }    

.boxed-btn {  
-webkit-transition: 0.3s;  
-o-transition: 0.3s;  
transition: 0.3s;
}

.boxed-btn:hover {  
background-color: rgb(22,25,24);  
color: #D4003B;
}

.bordered-btn {  
-webkit-transition: 0.3s;  
-o-transition: 0.3s;  
transition: 0.3s;
}

.bordered-btn:hover { 
 background-color: #D4003B;  
 color: #fff;
 }

ul.sub-menu a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.sub-menu li:hover a {
  color: #D4003B;
}

.single-tof-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-tof-box:hover {
  -webkit-box-shadow: 0 0 80px #353535;
  box-shadow: 0 0 80px #353535;
}

a.video-play-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.video-play-btn:hover {
  background-color: #333;
  color: #D4003B;
}

.latest-news-bg {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-latest-news:hover .latest-news-bg {
  opacity: 0.8;
}

a.tof-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.tof-btn:hover {
  color: #D4003B;
}

a.tof-btn:hover i {
  margin-left: 10px;
}

.single-latest-news {
  -webkit-box-shadow: 0 0 20px #dddddd;
  box-shadow: 0 0 20px #dddddd;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius:1rem;
  }    
  
.latest-news{	  background: #f5f5f5;}

.latest-funciona{	  background: #f5f5f5;}

.single-latest-news:hover {
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.single-logo-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  }  .car-logo-item {  -webkit-transition: 0.3s;  -o-transition: 0.3s;  transition: 0.3s;}

.single-logo-item:hover {
  opacity: 1;
  }  
  
  .car-logo-item:hover {  opacity: 1;}

.footer-box.pages ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.pages ul li:hover a {
  color: #D4003B;
}

.footer-box.subscribe form button {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.footer-box.subscribe form button:hover {
  background-color: #D4003B;
  color: rgb(22,25,24);
}

.social-icons ul li:hover a {
  color: #D4003B;
}

.social-icons ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.social-link-team li a:hover {
  background-color: rgb(22,25,24);
  color: #D4003B;
}

.counter-box {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.counter-box:hover {
  -webkit-box-shadow: 0 0 80px #6f6f6f;
  box-shadow: 0 0 80px #6f6f6f;
}

input[type="submit"] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px !important;
}

input[type="submit"]:hover {
  background-color: rgb(22,25,24);
  color: #D4003B;
}

div.owl-controls, .owl-controls div {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

div.owl-controls div.owl-nav div:hover {
  opacity: 0.7;
}

.pagination-wrap ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.pagination-wrap ul li:hover a {
  background-color: #D4003B;
}

.icons a i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.icons a:hover i {
  color: #D4003B;
}

.tof-text a.tof-btn {
  margin-top: 15px;
  display: inline-block;
}

.single-pricing-table {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.single-pricing-table:hover {
  -webkit-box-shadow: 0 0 20px #ddd;
  box-shadow: 0 0 20px #ddd;
}

.product-image img {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.product-image img:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  }  
  
.car-image img {  -webkit-transition: 0.3s;  -o-transition: 0.3s;  transition: 0.3s;}
.car-image img:hover {  -webkit-box-shadow: none;  box-shadow: none;}

a.cart-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.cart-btn:hover {
  background-color: rgb(22,25,24);
  color: #D4003B;
}

@media only screen and (max-width: 475px){
	a.cart-btn {    
		font-size: 0.8rem;
	}  
} 

.recent-posts ul li {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.recent-posts ul li:hover {
  opacity: 0.7;
}

ul.sub-menu li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.sub-menu li:hover a {
  color: #D4003B !important;
}

.sidebar-section ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.sidebar-section ul li a:hover {
  opacity: 0.7;
}

.comment-text-body h4 a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.comment-text-body h4 a:hover {
  color: #D4003B;
}

ul.product-share li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

ul.product-share li:hover a {
  color: #D4003B;
}

.service-menu ul li a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.service-menu ul li a.active {
  font-weight: 600;
  color: #ffe200;
}

.service-menu ul li a:hover {
  color: #ffe200;
}

.single-product-item {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
 }  
 
 .car-product-item {  -webkit-transition: 0.3s;  -o-transition: 0.3s;  transition: 0.3s; }  
 .single-busca-item {  -webkit-transition: 0.3s;  -o-transition: 0.3s;  transition: 0.3s; }  
 .single-product-item p:last-child{  margin: 0px;}
 .single-busca-item p:last-child{  margin: 0px 25px 0px 25px;}
 .car-product-item p:last-child{  margin: 0px 0px 0px 0px;}

.single-product-item:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  }    
  
.single-busca-item:hover {  
-webkit-box-shadow: none;  
box-shadow: none; 
}  

.car-product-item:hover {  
-webkit-box-shadow: none;  
box-shadow: none;
}

.search-bar-tablecell button[type=submit] {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.search-bar-tablecell button[type=submit]:hover {
  background-color: #fff;
  color: rgb(22,25,24);
}

span.close-btn {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

span.close-btn:hover {
  color: #fff;
}

a.mobile-show.search-bar-icon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.mobile-show.search-bar-icon:hover {
  color: #D4003B;
}

a.mobile-show.bar-icon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.mobile-show.bar-icon:hover {
  color: #D4003B;
}


a.mobile-show.key-bar-icon {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a.mobile-show.key-bar-icon:hover {
  color: #D4003B;
}

/* -----------------------------------------------------------------------------

# Hero Styles

----------------------------------------------------------------------------- */
.hero-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-text {
  display: table;
  height: 100%;
}

.hero-text-tablecell {
  display: table-cell;
}

.hero-area {
  height: auto!important;
  position: relative;
  z-index: 1;
  }   
  
 @media only screen and (max-width: 994px) {	  
 .hero-area {  
 height: auto; 
 position: relative; 
 z-index: 1;  
 }
 
 } 

 @media only screen and (max-width: 530px){
	 .hero-area { 
	 height: auto; 
	 position: relative; 
	 z-index: 1; 
	 display: inline-table; 
	 }
} 



html, body {
  height: 100%;
}

.hero-area:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(22,25,24);
  z-index: -1;
  opacity: 0.7;
}

.hero-text p.subtitle {
  color: #D4003B;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 15px;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
}


.hero-area div.hero-text {
  height: 100%;
  width: 100%;
}

.hero-area div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
}

.hero-area div.hero-text-tablecell div {
  height: auto;
  vertical-align: middle;
}

.hero-btns {
  margin-top: 35px;
}

.hero-btns a.bordered-btn {
  margin-left: 15px;
}

.hero-area div.hero-form {
  background-color: #fff;
  text-align: center;
  width: 380px;
  margin: 0 auto;
  margin-right: 0;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 15px #2d2d2d;
  box-shadow: 0 0 15px #2d2d2d;
  position: absolute;
  right: 30px;
  bottom: -15%;
  height: 600px;
}

input[type="submit"] {
  background-color: #D4003B;
  color: rgb(22,25,24);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  border: none !important;
  cursor: pointer;
  padding: 15px 25px;
  border-radius: 3px;
}

.homepage-bg-1 {
  background-image: url(../img/hero-bg.jpg);
}

.homepage-bg-2 {
  background-image: url(../img/hero-bg-2.jpg);
}

.homepage-bg-3 {
  background-image: url(../img/hero-bg-3.jpg);
}    .homepage-bg-4 {  background-image: url(../img/hero-bg-4.jpg);}

.homepage-slider {
  height: 75%;
}

@media only screen and (max-width: 575.96px) {  

	.homepage-slider {    
		height: 62%;  
	}
}  

.homepage-slider div {
  height: 100%;
}

.homepage-slider div.hero-text {
  display: table;
  width: 100%;
}

.homepage-slider div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
  display: table-cell;
}

.homepage-slider div.hero-text-tablecell div {
  height: auto;
}


.modal-slider {
  height: 75%;
}@media only screen and (max-width: 575.96px) {  .
modal-slider {    
height: 62%;  
}
}  

.modal-slider div {
  height: 100%;
}

.modal-slider div.hero-text {
  display: table;
  width: 100%;
}

.modal-slider div.hero-text-tablecell {
  height: auto;
  vertical-align: middle;
  display: table-cell;
}

.modal-slider div.hero-text-tablecell div {
  height: auto;
}

.single-homepage-slider {
  background-size: cover;
  background-position: center;
  background-color: #020C0E;
  position: relative;
  z-index: 1;
}

.single-homepage-slider:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(22,25,24);
  content: "";
  z-index: -1;
  opacity: 0.0;
}

div.owl-controls, .owl-controls div {
  height: auto;
  top: 50%;
  color: #D4003B;
  font-size: 48px;
}

.homepage-slider {
  position: relative;
}

.modal-slider {
  position: relative;
}

.owl-prev {
  position: absolute;
  left: 60px;
  margin-top: -30px;
}

.owl-next {
  position: absolute;
  right: 60px;
  margin-top: -30px;
  }  
  
 .single-product-img .owl-prev{	left: 15px;}
 .single-product-img .owl-next{	right: 15px;}
 .product-image .owl-prev {  position: absolute;  left: 0px;  margin-top: -30px;}
 .product-image .owl-next {  position: absolute;  right: 0px;  margin-top: -30px;}
  
 .car-image .owl-prev {  position: absolute;  left: 0px;  margin-top: -30px;}
 .car-image .owl-next {  position: absolute;  right: 0px;  margin-top: -30px;}  
 .product-lists > div:nth-child(3n+1) {    clear: left;}

/* -----------------------------------------------------------------------------

# List Styles

----------------------------------------------------------------------------- */
.list-section {
  background-color: #f5f5f5;
}

.list-box {
  overflow: hidden;
  letter-spacing: 0.5px;
}

.list-box .content h3 {
  display: block;
  line-height: 22px;
  font-size: 18px;
  margin-bottom: 4px;
}

.list-box .content p {
  margin-bottom: 0px;
  opacity: 0.75;
}

.list-box .list-icon i {
  display: block;
  font-size: 24px;
  margin-right: 15px;
  color: #D4003B;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 60px;
  border: 2px #D4003B dotted;
  border-radius: 999px;
}

/* -----------------------------------------------------------------------------

# News Styles

----------------------------------------------------------------------------- */
.news-bg-1 {
  background-image: url(../img/latest-news/news-bg-1.jpg);
}

.news-bg-2 {
  background-image: url(../img/latest-news/news-bg-2.jpg);
}

.news-bg-3 {
  background-image: url(../img/latest-news/news-bg-3.jpg);
}

.news-bg-4 {
  background-image: url(../img/latest-news/news-bg-4.jpg);
}

.news-bg-5 {
  background-image: url(../img/latest-news/news-bg-5.jpg);
}

.news-bg-6 {
  background-image: url(../img/latest-news/news-bg-6.jpg);
}

.latest-funciona-bg {
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-color: #ddd;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.latest-news-bg {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  background-color: #ddd;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.single-latest-news h3 {
  font-size: 20px;
  line-height: 1.25em;
  font-weight: 600;
}

.single-latest-news h3 a {
  color: rgb(22,25,24);
}

p.blog-meta span {
  margin-right: 15px;
  opacity: 0.6;
  color: rgb(22,25,24);
  font-size: 0.85em;
}

p.blog-meta span:last-child {
  margin-right: 0;
}

p.blog-meta span i {
  margin-right: 5px;
}

p.excerpt {
  line-height: 1.8;
  color: #555;
}

.latest-news a.boxed-btn {
  margin-top: 80px;
  }  
  
.latest-news .boxed-btn {  
margin-top: 80px;
}

.latest-funciona a.boxed-btn {
	margin-top: 0px;
    background-color: #D4003B;
    color: #fff;
    padding: 4px 10px;
    font-size: 1.1rem;
    font-weight: 700;
	float: left;
    margin-right: 6px;
	margin-top: 5px;
  }  
  
.latest-funciona .boxed-btn {  
	margin-top: 0px;
    background-color: #D4003B;
    color: #fff;
    padding: 4px 10px;
    font-size: 1.1rem;
    font-weight: 700;
	float: left;
    margin-right: 6px;
	margin-top: 5px;
}

.single-latest-funciona{
	background-color:#fff;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 0 20px #dddddd;
    box-shadow: 0 0 20px #dddddd;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.news-text-box {
  padding: 25px;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
    background-color: white;
}

.single-latest-news {
  margin-bottom: 30px;
}

.single-artcile-bg {
  background-image: url(../img/latest-news/news-bg-3.jpg);
  height: 450px;
}

.pagination-wrap {
  margin-top: 40px;
}

.pagination-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-wrap ul li {
  display: inline-block;
}

.pagination-wrap ul li a {
  color: #6f6f6f;
  font-size: 15px;
  background-color: #f3f3f3;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 5px;
  margin: 3px;
  font-weight: 600;
  border-radius: 50px;
}

.pagination-wrap ul li a.active {
  background-color: #D4003B;
}

.single-artcile-bg {
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

.single-article-text h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}

.single-article-text p {
  font-size: 15px;
  line-height: 1.6;
  color: rgb(22,25,24);
}

.comments-list-wrap {
  margin: 100px 0;
}

.comments-list-wrap h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 50px;
}

.comment-template h4 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 50px;
}

.single-comment-body {
  position: relative;
}

.comment-user-avater {
  position: absolute;
  left: 0;
  top: 0;
}

.comment-user-avater img {
  width: 60px;
  max-width: 60px;
  border-radius: 50%;
}

.comment-text-body {
  padding-left: 80px;
  margin-bottom: 40px;
}

.comment-text-body h4 {
  font-size: 18px;
  font-weight: 600;
}

span.comment-date {
  opacity: 0.5;
  font-size: 80%;
  font-weight: 700;
  margin-left: 5px;
}

.comment-text-body h4 a {
  color: rgb(22,25,24);
  font-size: 80%;
  margin-left: 10px;
  border-bottom: 1px solid #aaa;
}

.single-comment-body.child {
  margin-left: 75px;
}

.comment-text-body p {
  color: #888;
  line-height: 2;
  margin: 0;
}

.comment-template h4 {
  margin-bottom: 10px;
}

.comment-template > p {
  opacity: 0.7;
  margin-bottom: 30px;
}

.comment-template form p input[type=text] {
  border: 1px solid #ddd;
  width: 49%;
  padding: 15px;
  border-radius: 5px;
  font-size: 15px;
  color: rgb(22,25,24);
}

.comment-template form p input[type=email] {
  border: 1px solid #ddd;
  width: 49%;
  padding: 15px;
  border-radius: 5px;
  font-size: 15px;
  color: rgb(22,25,24);
  margin-left: 10px;
}

.comment-template form p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  font-size: 15px;
  color: rgb(22,25,24);
  border-radius: 5px;
  height: 250px;
  resize: none;
  width: 100%;
}

.sidebar-section {
  margin-left: 30px;
}

.sidebar-section h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sidebar-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-section ul li {
  line-height: 1.5;
}

.sidebar-section ul li a {
  color: #AAA;
  font-size: 15px;
}

.sidebar-section > div {
  margin-bottom: 60px;
}

.sidebar-section > div:last-child {
  margin-bottom: 0;
}

.recent-posts ul li, .archive-posts ul li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 10px;
}

.recent-posts ul li:before, .archive-posts ul li:before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.tag-section ul li {
  display: inline-block;
}

.tag-section ul li a {
  background-color: #ddd;
  padding: 3px 10px;
  display: block;
  border-radius: 5px;
  margin-bottom: 10px;
  margin-right: 5px;
}

/* -----------------------------------------------------------------------------

# Cart Banner Styles

----------------------------------------------------------------------------- */
.cart-banner {  background: no-repeat left top #f5f5f5 url("../../assets/img/oleo.png");
}

.cart-banner .image-column {
  position: relative;
  margin-top: 0;
}

.cart-banner .image-column .price-box {
  position: absolute;
  left: 15%;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: rgba(242, 129, 35, 0.75);
}

.cart-banner .image-column .price-box .inner-price {
  position: relative;
  width: 94px;
  height: 94px;
  margin: 0 auto;
  margin-top: 8px;
  text-align: center;
  border-radius: 50%;
  background-color: #D4003B;
}

.cart-banner .image-column .price-box .inner-price .price {
  color: rgb(22,25,24);
  padding-top: 27px;
  position: relative;
  display: inline-block;
  line-height: 18px;
  font-weight: 400;
}

.cart-banner .image-column .price-box .inner-price .price strong {
  color: rgb(22,25,24);
  font-size: 24px;
}

.cart-banner .content-column {
  position: relative;
  padding-top: 40px;
}

.cart-banner .content-column h3 {
  font-size: 40px;
}

.cart-banner .content-column h4 {
  position: relative;
  font-weight: 300;
  text-transform: uppercase;
}

.cart-banner .content-column .text {
  position: relative;
  font-weight: 400;
  line-height: 1.8em;
  margin-top: 25px;
  margin-bottom: 25px;
}

.time-counter {
  position: relative;
  margin-bottom: 25px;
}

.time-counter .time-countdown {
  position: relative;
}

.time-countdown .counter-column {
  position: relative;
  display: inline-block;
  margin: 0px 0px 5px;
  font-size: 13px;
  line-height: 1em;
  padding: 8px 20px 14px;
  text-transform: capitalize;
  text-align: center;
  border: 2px solid #D4003B;
}

.time-countdown .counter-column .count {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.4em;
  padding: 0px 0px;
  color: #D4003B;
  font-weight: 700;
  letter-spacing: 1px;
}

/* -----------------------------------------------------------------------------

# Testimonial Styles

----------------------------------------------------------------------------- */
.client-avater {
  margin-bottom: 20px;
}

.client-meta h3 {
  font-size: 20px;
  font-weight: 600;
}

.client-meta h3 span {
  display: block;
  font-size: 70%;
  margin-top: 10px;
  color: rgb(22,25,24);
  font-weight: 600;
  opacity: 0.5;
}

p.testimonial-body {
  font-size: 17px;
  font-style: italic;
  width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  color: #999999;
  margin-top: 20px;
}

.last-icon {
  margin-top: 20px;
  font-size: 25px;
  opacity: 0.3;
}

.client-avater img {
  max-width: 100px;
  border-radius: 50%;
  margin: 0 auto;
}

/* -----------------------------------------------------------------------------

# About Styles

----------------------------------------------------------------------------- */
a.video-play-btn {
  position: absolute;
  background-color: #D4003B;
  color: rgb(22,25,24);
  width: 90px;
  height: 90px;
  text-align: center;
  line-height: 92px;
  border-radius: 50%;
  font-size: 20px;
  padding-left: 5px;
  display: block;
  z-index: 2;
  top: 50%;
  margin-top: -45px;
  -webkit-box-shadow: 0 0 20px #adadad;
  box-shadow: 0 0 20px #adadad;
  left: 50%;
  margin-left: -45px;
}

.abt-bg {
  background-image: url(../img/abt.jpg);
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.abt-bg:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(22,25,24);
  opacity: 0.3;
}

.abt-section .abt-text {
  padding: 50px;
  padding-left: 30px;
}

.abt-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.abt-text p.top-sub {
  opacity: 0.8;
  margin-bottom: 10px;
}

.abt-text p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------------------

# Shop Banner Styles

----------------------------------------------------------------------------- */
.shop-banner {
  position: relative;
  background-color: #f5f5f5;
  background-image: url(../img/1.jpg);
  background-size: cover;
  padding: 110px 0px 115px;
}

.shop-banner h3 {
  position: relative;
  font-size: 50px;
  line-height: 1.2em;
  margin-bottom: 0px;
}

.shop-banner .sale-percent {
  position: relative;
  font-size: 60px;
  font-weight: 700;
  color: #D4003B;
}

.shop-banner .sale-percent span {
  position: relative;
  font-size: 24px;
  line-height: 1.1em;
  color: rgb(22,25,24);
  font-weight: 400;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
}

/* -----------------------------------------------------------------------------

# About Page Styles

----------------------------------------------------------------------------- */
.feature-bg {
  position: relative;
  margin: 150px 0;
}

.feature-bg:after {
  background-image: url(../img/feature-bg.jpg);
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  content: "";
  background-size: cover;
  background-position: center;
  border-top-left-radius: 5px;
  -webkit-box-shadow: 0 0 20px #cacaca;
  box-shadow: 0 0 20px #cacaca;
  border-bottom-left-radius: 5px;
}

.team-bg-1 {
  background-image: url(../img/team/team-1.jpg);
}

.team-bg-2 {
  background-image: url(../img/team/team-2.jpg);
}

.team-bg-3 {
  background-image: url(../img/team/team-3.jpg);
}

.team-bg-4 {
  background-image: url(../img/team/team-4.jpg);
}

.team-bg {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  background-color: #ddd;
}

.single-team-item {
  position: relative;
}

.single-team-item h4 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
}

.single-team-item h4 span {
  font-size: 70%;
  display: block;
  margin-top: 10px;
  opacity: 0.7;
}

ul.social-link-team {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

ul.social-link-team li {
  display: inline-block;
}

ul.social-link-team li a {
  color: #fff;
  background-color: #D4003B;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 5px;
}

/* -----------------------------------------------------------------------------

# Contact Page Styles

----------------------------------------------------------------------------- */
.form-title {
  margin-bottom: 25px;
}

.form-title h2 {
  font-size: 25px;
  line-height: 2.3rem;
}

.form-title p {
  font-size: 15px;
  line-height: 1.8;
}

.contact-form form p input[type=text], .contact-form form p input[type=tel], .contact-form form p input[type=email] {
  width: 49%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

.contact-form form p textarea {
  border: 1px solid #ddd;
  padding: 15px;
  height: 200px;
  border-radius: 3px;
  width: 100%;
  resize: none;
}

.contact-form-wrap {
  background-color: #FBFBFB;
  padding: 45px 30px;
  border-radius: 5px;
}    

.contact-form-wrap-index {  
background-color: #FBFBFB;  
padding: 30px;  
border-radius: 1rem;  
margin-top:150px;  
opacity: 0.9; 
} 

.wrap-search {
	background-color: white;
    border-radius: 1rem;
    opacity: 0.9;
    margin-top: 30px;
	box-shadow: rgba(50, 50, 55, 0.12) 0px 1px 5px;
	z-index: 9980;
    position: relative;
}

@media only screen and (max-width: 994px) {	
	.contact-form-wrap-index {		
	margin-top: 1rem;		
	margin-bottom: 3rem;	
	}
	
	.wrap-search {
		background-color: white;
		opacity: 0.9;
		margin-top: 0;
		box-shadow: rgba(50, 50, 55, 0.12) 0px 1px 5px;
		border-radius: 0;
	}
	
	.wrap-search h4 {
		font-size: 1.3rem!important;
	}
}

.contact-form-box {
  padding-left: 40px;
  margin-bottom: 30px;
}

.contact-form-box h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  margin-bottom: 10px;
}

.contact-form-box h4 i {
  position: absolute;
  left: -13%;
  color: #D4003B;
  top: 2px;
}

.contact-form-box p {
  line-height: 1.8;
  opacity: 0.8;
}

.contact-form-wrap .contact-form-box:last-child {
  margin: 0;
}  .contact-form-wrap-index .contact-form-box:last-child {  margin: 0;}

.find-location p {
  color: #fff;
  font-size: 40px;
  margin: 0;
  font-weight: 600;
  padding: 95px 0;
}

.find-location p i {
  margin-right: 10px;
  color: #D4003B;
}

#form_status span {
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  background: #E74C3C;
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 0px;
  border-radius: 3px;
  margin-bottom: 18px;
}

#form_status span.loading {
  color: #333;
  background: #eee;
  border-radius: 3px;
  padding: 18px 0px;
}

#form_status span.notice {
  color: yellow;
}

#form_status .success {
  color: #fff;
  text-align: center;
  background: #2ecc71;
  border-radius: 3px;
  padding: 30px 0px;
}

#form_status .success i {
  color: #fff;
  font-size: 45px;
  margin-bottom: 14px;
}

#form_status .success h3 {
  color: #fff;
  margin-bottom: 10px;
}

/* -----------------------------------------------------------------------------

# Shop Page Styles

----------------------------------------------------------------------------- */
.product-filters {
  margin-bottom: 40px;
}

.product-filters ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.product-filters ul li {
	display: inline-block;    font-weight: 700;    font-size: 15px;    margin: 5px;    border: 2px solid rgb(22,25,24);    color: #323232;    cursor: pointer;    padding: 8px 10px;    border-radius: 25px;
}

.product-filters ul li.active {
  border: 2px solid #D4003B;
  background-color: #D4003B;
  color: #fff;
}

.single-product-item {
	margin-bottom: 0px;
}.single-busca-item {  
	margin-bottom: 0px;
}  
.car-product-item {  
	margin-bottom: 0px;
}

.product-image {
  padding: 30px;
  padding-bottom: 0;
}

.product-image img {
  width: 100%;  width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
  }    
  
  
.car-image {  padding: 0;  padding-bottom: 0;}
.car-text {  padding: 0.5rem 1.5rem 0.5rem 1.5rem;}
.car-text span{	color: #999;}

.car-text h5{	color: #999;	line-height: 1.5rem!important;}
.car-text h3{	line-height: 1.5rem!important;	margin: 0 0 0.5rem 0!important;}
.car-text .icon{	width: 16px!important;    float: left;	margin: 2px 4px 0 0;}
.icon-geral{	width: 16px!important;	margin: 2px 4px 0 0;	color: #fff;}
.car-text .datas{	margin-left: 5px;}	

.car-image img {width: 100%;  border-radius: 1rem;}

@media only screen and (max-width:991px){	 
	.busca .car-image img {  width: 40%;  border-radius: 0.5rem; float: inline-start; display: flex;}	
	.busca .single-product-item h3 {font-size: 12px; min-height: 0;}
	.busca .single-product-item {
        display: grid !important;
        grid-template-columns: 40% 60% !important; /* Força 40% imagem / 60% texto */
        align-items: start;
    }
	.busca .car-text h3{margin: 0 0 0 0 !important;line-height: 14px !important;}
	.busca .car-text h5{font-size:1rem;}
	.busca .car-text b{font-size: 0.7rem;}
	.busca .car-text .city{ font-size: 0.7rem;}
	.busca .car-text{ padding: 0.5rem 1.25rem 0.5rem 1.25rem;}
	.car-product-price small{font-size: 60% !important;}
}


.car-text-painel span{	color: #999;}

.car-text-painel h5{	color: #999;	line-height: 1.5rem!important;}
.car-text-painel h3{	line-height: 1.5rem!important;	margin: 0 0 0.5rem 0!important;}
.car-text-painel .icon{	width: 16px!important;    float: left;	margin: 2px 4px 0 0;}
.car-text-painel .datas{	margin-left: 5px;}	
  
  

.single-product-item h3 {  font-size: 20px;  font-weight: 600;  margin: 10px;  line-height: 1.5rem !important;  min-height: 42px; }   
  .car-product-item h3 {  font-size: 20px;  font-weight: 600;  min-height: 42px;}
  .single-busca-item h3 {  font-size: 20px;  font-weight: 600;  min-height: 42px;}  
  .single-product-item p {  /*margin: 15px;*/}
  .car-product-item p {  margin-bottom: 0px;  line-height: 1.5;}
  .single-busca-item p {  margin-bottom: 0px;  line-height: 1.5;}

p.product-price {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

p.product-price span {
  display: block;
  opacity: 0.8;
  font-size: 15px;
  font-weight: 400;
}
  
p.car-product-price {  font-family: 'Poppins', sans-serif;  font-size: 1.25rem!important;  font-weight: 700;  margin: 1rem 0px 1rem 0px;position: relative; top: 25%;}
p.car-product-price span {  display: block;  opacity: 0.8;  font-size: 15px!important;  font-weight: 400;}
h3.car-product-price {  font-family: 'Poppins', sans-serif;  font-size: 1.25rem!important;  font-weight: 700;  margin: 5px 0px 10px 0px!important; position: relative;min-height: 0px!important;}

a.cart-btn {
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  background-color: #D4003B;
  color: #fff;
  padding: 10px 20px;  
  width: 100%;
}

a.cart-btn i {
  margin-right: 5px;
}


a.propostas-principal-btn {
    display: inline-block;
    background-color: #D4003B;
    color: #fff;
    padding: 10px 20px;
    width: 100%;
	border-radius:1rem;
}
@media only screen and (max-width: 520px) {
    a.propostas-principal-btn {
        font-size: 0.5rem;
        line-height: 0.5rem;
        padding: 10px 5px !important;
        
    }
}

a.menu-principal-btn {
    display: inline-block;
    background-color: #262827!important;
    color: #fff;
    padding: 10px 20px;
    width: 100%;
}
@media only screen and (max-width: 520px) {
    a.menu-principal-btn {
        font-size: 0.65rem;
        line-height: 0.5rem;
        padding: 10px 5px !important;
		border-radius: 0.75rem;
    }
	
	.mp{
		font-size: 18px !important;
        line-height: 1.2rem;
	}
}

.single-product-img img {
  border-radius: 1rem;
}.single-product-img {  background: none;}    

.single-product-content h3 {
  font-size: 22px;
  font-weight: 600;
}

p.single-product-pricing span {
  font-size: 18px;
  display: block;
  opacity: 0.8;
  margin-bottom: 10px;
  font-weight: 400;
}

.single-product-content p {
  font-size: 15px;
  color: #555;
  line-height: 18px;
}

.single-product-content p.single-product-pricing {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgb(22,25,24);
  line-height: inherit;
}
	

.single-product-form a.cart-btn {
  margin-bottom: 15px;
}

.single-product-content h4 {
  font-size: 20px;
  font-weight: 600;
}

ul.product-share {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.product-share li {
  display: inline-block;
}

ul.product-share li a {
  display: block;
  color: rgb(22,25,24);
  margin-right: 10px;
}

.single-product-content {
  margin-left: 30px;
}

table.cart-table {
  border: 1px solid #f9f9f9;
  width: 100%;
}

thead {
  border-bottom: 1px solid #eee;
}

tr.table-head-row th {
  border-right: 1px solid #efefef;
  padding: 15px;
  font-weight: 500;
  text-align: center;
}

tr.table-head-row th:last-child {
  border-right: none;
}

.cart-table-wrap tbody tr td {
  text-align: center;
}

td.product-image img {
  max-width: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-bottom: 0;
}

.cart-table-wrap tbody tr td {
  border: 1px solid #efefef;
  padding: 20px 0;
  color: rgb(22,25,24);
}

thead.cart-table-head tr {
  background-color: #efefef;
}

td.product-quantity input {
  margin-bottom: 0;
}

td.product-remove a {
  color: rgb(22,25,24);
}

.total-section table.total-table {
  border: 1px solid #efefef;
  width: 100%;
}

tr.table-total-row {
  background-color: #efefef;
}

tr.table-total-row th {
  font-weight: 500;
  font-size: 15px;
  padding: 15px;
}

table.total-table tbody tr.total-data td {
  border: 1px solid #efefef;
  padding: 19px 15px;
}

tr.total-data td strong {
  margin-right: 32px;
}

.cart-buttons {
  margin-top: 30px;
}

.cart-buttons a:first-child {
  margin-right: 20px;
}

.coupon-section {
  margin-top: 50px;
}

.coupon-section h3 {
  font-size: 20px;
  font-weight: 500;
}

.coupon-form-wrap form p input[type=text] {
  border: 1px solid #ddd;
  color: rgb(22,25,24);
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  font-size: 15px;
}

.card.single-accordion {
  margin-bottom: 15px;
  border-bottom: 1px solid #EFEFEF !important;
}

.card.single-accordion .card-header {
  background-color: #fff;
  border: none;
  padding: 0;
}

.card.single-accordion:last-child {
  margin-bottom: 0;
}

.card.single-accordion .card-header h5 button {
  color: rgb(22,25,24);
  font-size: 15px;
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px;
  text-decoration: none;
  border: none;
  background-color: #EFEFEF;
  position: relative;
  padding-left: 50px;
  font-weight: 600;
}

.card.single-accordion {
  border: 1px solid #F9F9F9;
}

.billing-address-form {
  padding: 20px;
}

.billing-address-form form p input {
  border: 1px solid #ddd;
  padding: 15px;
  width: 100%;
  border-radius: 3px;
}

.billing-address-form form p textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid #ddd;
  padding: 15px;
  height: 120px;
  resize: none;
}

.shipping-address-form p, .card-details p {
  margin: 0;
}

.card.single-accordion .card-header h5 button:before {
  position: absolute;
  left: 20px;
  top: 50%;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 22px;
  margin-top: -11px;
  color: #D4003B;
}

.billing-address-form form p:last-child {
  margin-bottom: 0;
}

table.order-details {
  border: 1px solid #efefef;
}

table.order-details thead tr th {
  background-color: #efefef;
  padding: 18px;
  font-size: 15px;
  font-weight: 500;
}

table.order-details tbody td {
  border: 1px solid #efefef;
  padding: 15px;
}

.order-details-wrap > a {
  margin-top: 30px;
}

.card.single-accordion {
  border: 1px solid #eeeeee;
  width: 100%;
}

.single-product-item {
	-webkit-box-shadow: 0 0 20px #e4e4e4;    box-shadow: 0 0 20px #e4e4e4;    padding-bottom: 0;    border-radius: 1rem;    background: #fff;
	
}	

.car-product-item {	/* -webkit-box-shadow: 0 0 20px #e4e4e4; */    /* box-shadow: 0 0 20px #e4e4e4; */    padding-bottom: 0rem;    border-radius: 1rem;    background: #fff;	min-height: 450px;	}	

.single-busca-item {	/* -webkit-box-shadow: 0 0 20px #e4e4e4; */    /* box-shadow: 0 0 20px #e4e4e4; */    padding-bottom: 0rem;    border-radius: 1rem;    background: #fff;	min-height: 450px;}

/* -----------------------------------------------------------------------------

# 404 Page Styles

----------------------------------------------------------------------------- */
.error-text i {
  font-size: 90px;
  margin-bottom: 30px;
}

.error-text h1 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 10px;
}

.error-text p {
  font-size: 15px;
  margin-bottom: 30px;
}

.full-height-section {
  display: table;
  width: 100%;
}

.full-height-tablecell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

#compras table {
  border-collapse: collapse;
}

#compras tbody > tr:nth-of-type(odd) {
  background-color:#D6D6D6;
}

 @media only screen and (max-width: 767px){
	.w-100-mobile { 
		width: 100%;
	}
} 

.pin-propostas{	
	margin: 1rem 0.5rem 1rem 1rem;
	z-index: 10;
	top: 1px;
}

.pin-propostas-recebidas{
	border-radius: 5rem;
	font-weight: 700;
	font-size: 1rem;
	background-color: #D4003B;
	text-align: center;
	color: white;
	padding: 0.25rem 0.75rem 0.25rem 0.75rem;
	float: left;
	margin-right:3px;
	width: 30px;
    height: 30px;
	animation: pin-propostas-recebidas 5s infinite;
}

@keyframes pin-propostas-recebidas { 
 0% { background-color: #D4003B; }
 10% { background-color: #262827; }
 15% { background-color: #D4003B; }
 20% { background-color: #262827; }
 25% {  background-color: #D4003B; }
 35% { background-color: #262827; }
 40% { background-color: #D4003B; }
 45% {  background-color: #262827; }
 50% { background-color: #D4003B; }
 60% { background-color: #262827; }
 65% { background-color: #D4003B; }
 70% { background-color: #262827; }
 75% {  background-color: #D4003B; }
 85% { background-color: #262827; }
 90% { background-color: #D4003B; }
 95% { background-color: #262827; }
 100% { background-color: #D4003B; }
}




.pin-propostas-efetuadas{
	border-radius: 5rem;
	font-weight: 400;
	font-size: .8rem;
	background-color: #262827;
	text-align: center;
	color: white;
	padding: 0.25rem 0.75rem 0.25rem 0.75rem;
	float: left;
	margin-right:3px;
	width: 27px;
    height: 27px;
}
.pin-propostas-financeira{
	border-radius: 5rem;
	font-weight: 400;
	font-size: .8rem;
	background-color: #00A884;
	text-align: center;
	color: white;
	padding: 0.25rem 0.75rem 0.25rem 0.75rem;
	float: left;
	width: 27px;
    height: 27px;
}

.pin-proposta-negada{
	border-radius: 5rem;
	font-weight: 400;
	font-size: .8rem;
	background-color: #D4003B;
	text-align: center;
	color: white;
	padding: 0.25rem 0.75rem 0.25rem 0.75rem;
	float: left;
	margin-right:3px;
	z-index: 40;
}

.pin-proposta-aceita {
    border-radius: 5rem;
    font-weight: 700;
    font-size: 1rem;
    background-color: #D4003B;
    text-align: center;
    color: white;
    padding: 0.50rem 0.75rem 0.25rem 0.75rem;
    float: left;
    margin-right: 3px;
    width: 37px;
    height: 37px;
}

input[type=checkbox]  {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.form-check-label{
	margin-left: 10px;
    margin-top: 2px;
}

.pin-destaque{
	margin: 1rem 0.5rem 1rem 1rem;
	z-index: 10;
}

.pin-destaque-in{
	border-radius: 5rem;
	font-weight: 400;
	font-size: .8rem;
	background-color: #D4003B;
	text-align: center;
	color: white;
	padding: 0.25rem 0.6rem 0.25rem 0.6rem;
	float: left;
	margin-right:3px;
	z-index: 40;
}

.botao-Whatsapp {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  padding: 0.6em 1.2em 0.5em 1.2em;
  border-radius: 50px;
  background: #40c351;
  border: 1px solid #40c351;
  transition: all 0.2s ease-in;
}

.botao-Whatsapp span { 
  position: relative;
  margin-left: 35px;
  font-weight: bold; 
}
.botao-Whatsapp > svg {
  
  height: 30px;
  position: absolute;
  padding: 0px;
  margin-top: -4px;
}
.botao-Whatsapp:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5,
             inset -4px -4px 12px #ffffff;
}
.botao-Whatsapp:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.botao-Whatsapp:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #40c351;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.botao-Whatsapp:hover {
  color: #40c351;
  border: 1px solid #2e2e2e;
}
.botao-Whatsapp:hover:before {
  top: -35%;
  background-color: #40c351;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.botao-Whatsapp:hover:after {
  top: -45%;
  background-color: #2e2e2e;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}





.botao-Whatsapp-propostas {
	display: inline-block;
	position: relative;
	overflow: hidden;
	z-index: 1;
	text-decoration: none;
	color: #ffffff;
	font-size: 1rem;
	padding: 0.4em 0.6em 0.2em 0.6em;
	border-radius: 50px;
	background: #40c351;
	border: 1px solid #40c351;
	transition: all 0.2s ease-in;
	margin-left: 1rem;
}
.botao-Whatsapp-propostas span { 
  position: relative;
}

.botao-Whatsapp-propostas img {
	width: 22px;
}

.botao-Whatsapp-propostas:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5,
             inset -4px -4px 12px #ffffff;
}
.botao-Whatsapp-propostas:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.botao-Whatsapp-propostas:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #40c351;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
.botao-Whatsapp-propostas:hover {
  color: #40c351;
  border: 1px solid #2e2e2e;
}
.botao-Whatsapp-propostas:hover:before {
  top: -35%;
  background-color: #40c351;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.botao-Whatsapp-propostas:hover:after {
  top: -45%;
  background-color: #2e2e2e;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button-marcas{
	background:none!important;
	border:none!important;
	width:100%;	
}

.image-marcas{
    -webkit-filter:grayscale(100%);
}
.image-marcas:hover{
    -webkit-filter:grayscale(0%);
    transition: 1s;
}
.float-end{
	float: right!important;
}

.float-start{
	float: left!important;
}

.me-1{
	margin-left:1rem!important;
}

.ms-1{
	margin-right:1rem!important;
}



.img-owl img{
	border: none;
    width: 94px;
	height:70px;
    border-radius: 0.75rem;
    margin-top: 5px;
	object-fit: cover;
	
}

.img-owl button{
	border: none !important;
    margin: 0;
    padding: 0;
}


.login-with-google-btn {
  transition: background-color .3s, box-shadow .3s;    
  padding: 12px 42px 12px 42px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);  
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
  width: 100%;
  display:block;
  text-align: center;
  background-color:#F7F7F7;
  }
  
.login-with-google-btn:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 2px 4px rgba(0, 0, 0, .25);
  }
  
.login-with-google-btn:active {
    background-color: #eeeeee;
  }
  
.login-with-google-btn:focus {
    outline: none;
    box-shadow: 
      0 -1px 0 rgba(0, 0, 0, .04),
      0 2px 4px rgba(0, 0, 0, .25),
      0 0 0 3px #c8dafc;
  }
  
.login-with-google-btn:disabled {
    filter: grayscale(100%);
    background-color: #ebebeb;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .04), 0 1px 1px rgba(0, 0, 0, .25);
    cursor: not-allowed;
  }

/* === range theme and appearance === */
input[type="range"] {
	font-size: 1.5rem;
	width: 12.5em;
}

input[type="range"] {
	color: #ef233c;
	--thumb-height: 1.125em;
	--track-height: 0.125em;
	--track-color: rgba(0, 0, 0, 0.2);
	--brightness-hover: 180%;
	--brightness-down: 80%;
	--clip-edges: 0.125em;
}																

@media (prefers-color-scheme: dark) {																
	input[type="range"] {
		color: #D4003B;
		--track-color: rgb(105, 105, 119);
	}

	input[type="range"].win10-thumb {
		color: #3a86ff;
	}
}

/* === range commons === */
input[type="range"] {
	position: relative;
	background: #fff0;
	overflow: hidden;
}

input[type="range"]:active {
	cursor: grabbing;
}

input[type="range"]:disabled {
	filter: grayscale(1);
	opacity: 0.3;
	cursor: not-allowed;
}

/* === WebKit specific styles === */
input[type="range"],
input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	transition: all ease 100ms;
	height: var(--thumb-height);
}

input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
	position: relative;
}

input[type="range"]::-webkit-slider-thumb {
	--thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
	--clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
	--clip-bottom: calc(var(--thumb-height) - var(--clip-top));
	--clip-further: calc(100% + 1px);
	--box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0
		100vmax currentColor;

	width: var(--thumb-width, var(--thumb-height));
	background: linear-gradient(currentColor 0 0) scroll no-repeat left center /
		50% calc(var(--track-height) + 1px);
	background-color: currentColor;
	box-shadow: var(--box-fill);
	border-radius: var(--thumb-width, var(--thumb-height));

	filter: brightness(100%);
	clip-path: polygon(
		100% -1px,
		var(--clip-edges) -1px,
		0 var(--clip-top),
		-100vmax var(--clip-top),
		-100vmax var(--clip-bottom),
		0 var(--clip-bottom),
		var(--clip-edges) 100%,
		var(--clip-further) var(--clip-further)
	);
}

input[type="range"]:hover::-webkit-slider-thumb {
	filter: brightness(var(--brightness-hover));
	cursor: grab;
}

input[type="range"]:active::-webkit-slider-thumb {
	filter: brightness(var(--brightness-down));
	cursor: grabbing;
}

input[type="range"]::-webkit-slider-runnable-track {
	background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center /
		100% calc(var(--track-height) + 1px);
}

input[type="range"]:disabled::-webkit-slider-thumb {
	cursor: not-allowed;
}

/* === Firefox specific styles === */
input[type="range"],
input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb {
	appearance: none;
	transition: all ease 100ms;
	height: var(--thumb-height);
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
	background: #fff0;
}

input[type="range"]::-moz-range-thumb {
	background: currentColor;
	border: 0;
	width: var(--thumb-width, var(--thumb-height));
	border-radius: var(--thumb-width, var(--thumb-height));
	cursor: grab;
}

input[type="range"]:active::-moz-range-thumb {
	cursor: grabbing;
}

input[type="range"]::-moz-range-track {
	width: 100%;
	background: var(--track-color);
}

input[type="range"]::-moz-range-progress {
	appearance: none;
	background: currentColor;
	transition-delay: 30ms;
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-progress {
	height: calc(var(--track-height) + 1px);
	border-radius: var(--track-height);
}

input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
	filter: brightness(100%);
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:hover::-moz-range-progress {
	filter: brightness(var(--brightness-hover));
}

input[type="range"]:active::-moz-range-thumb,
input[type="range"]:active::-moz-range-progress {
	filter: brightness(var(--brightness-down));
}

input[type="range"]:disabled::-moz-range-thumb {
	cursor: not-allowed;
}

	
.star-rating {
  font-size: 0;
  white-space: nowrap;
  display: inline-block;
  /* width: 250px; remove this */
  height: 50px;
  overflow: hidden;
  position: relative;
  background: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSIjREREREREIiBwb2ludHM9IjEwLDAgMTMuMDksNi41ODMgMjAsNy42MzkgMTUsMTIuNzY0IDE2LjE4LDIwIDEwLDE2LjU4MyAzLjgyLDIwIDUsMTIuNzY0IDAsNy42MzkgNi45MSw2LjU4MyAiLz48L3N2Zz4=');
  background-size: contain;
}
.star-rating i {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  /* width: 20%; remove this */
  z-index: 1;
  background: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMjBweCIgaGVpZ2h0PSIyMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiB4bWw6c3BhY2U9InByZXNlcnZlIj48cG9seWdvbiBmaWxsPSIjRkZERjg4IiBwb2ludHM9IjEwLDAgMTMuMDksNi41ODMgMjAsNy42MzkgMTUsMTIuNzY0IDE2LjE4LDIwIDEwLDE2LjU4MyAzLjgyLDIwIDUsMTIuNzY0IDAsNy42MzkgNi45MSw2LjU4MyAiLz48L3N2Zz4=');
  background-size: contain;
}
.star-rating input {
  -moz-appearance: none;
  -webkit-appearance: none;
  opacity: 0;
  display: inline-block;
  /* width: 20%; remove this */
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 2;
  position: relative;
}
.star-rating input:hover + i,
.star-rating input:checked + i {
  opacity: 1;
}
.star-rating i ~ i {
  width: 40%;
}
.star-rating i ~ i ~ i {
  width: 60%;
}
.star-rating i ~ i ~ i ~ i {
  width: 80%;
}
.star-rating i ~ i ~ i ~ i ~ i {
  width: 100%;
}
.star-rating::after,
.star-rating::before {
  height: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
}

.star-rating.star-5 {width: 250px;}
.star-rating.star-5 input,
.star-rating.star-5 i {width: 20%;}
.star-rating.star-5 i ~ i {width: 40%;}
.star-rating.star-5 i ~ i ~ i {width: 60%;}
.star-rating.star-5 i ~ i ~ i ~ i {width: 80%;}
.star-rating.star-5 i ~ i ~ i ~ i ~i {width: 100%;}

.star-rating.star-3 {width: 150px;}
.star-rating.star-3 input,
.star-rating.star-3 i {width: 33.33%;}
.star-rating.star-3 i ~ i {width: 66.66%;}
.star-rating.star-3 i ~ i ~ i {width: 100%;}


.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 260px;
  background: #D4003B;
  z-index: 9970;
  transition: all 0.5s ease;
}
.sidebar.close{
  width: 48px;
}
.sidebar .logo-details{
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
}
.sidebar .logo-details i{
  font-size: 30px;
  color: #fff;
  height: 50px;
  min-width: 50px;
  text-align: center;
  line-height: 50px;
}
.sidebar .logo-details .logo_name{
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
  transition-delay: 0.1s;
}
.sidebar.close .logo-details .logo_name{
  transition-delay: 0s;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links{
  height: 100%;
  padding: 110px 0 150px 0;
  overflow: auto;
}
.sidebar.close .nav-links{
  overflow: visible;
}
.sidebar .nav-links::-webkit-scrollbar{
  display: none;
}
.sidebar .nav-links li{
  position: relative;
  list-style: none;
  transition: all 0.4s ease;
}
.sidebar .nav-links li:hover{
  background: #161918;
}
.sidebar .nav-links li .iocn-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar.close .nav-links li .iocn-link{
  display: block
}
.sidebar .nav-links li i{
  height: 50px;
  min-width: 50px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar .nav-links li.showMenu i.arrow{
  transform: rotate(-180deg);
}
.sidebar.close .nav-links i.arrow{
  display: none;
}
.sidebar .nav-links li a{
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sidebar .nav-links li a .link_name{
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: all 0.4s ease;
}
.sidebar.close .nav-links li a .link_name{
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li .sub-menu{
  padding: 6px 6px 14px 50px;
  margin-top: -10px;
  background: #262827;
  display: none;
}
.sidebar .nav-links li.showMenu .sub-menu{
  display: block;
}
.sidebar .nav-links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  padding: 5px 0;
  white-space: nowrap;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidebar .nav-links li .sub-menu a:hover{
  opacity: 1;
}

.sidebar.close .nav-links li .sub-menu{
  position: absolute;
  left: 100%;
  top: -10px;
  margin-top: 0;
  padding: 10px 20px;
  border-radius: 0 6px 6px 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: 0s;
}
.sidebar.close .nav-links li:hover .sub-menu{
  top: 0;
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}
.sidebar .nav-links li .sub-menu .link_name{
  display: none;
}
.sidebar.close .nav-links li .sub-menu .link_name{
  font-size: 18px;
  opacity: 1;
  display: block;
}
.sidebar .nav-links li .sub-menu.blank{
  opacity: 1;
  pointer-events: auto;
  padding: 3px 20px 6px 16px;
  opacity: 0;
  pointer-events: none;
}
.sidebar .nav-links li:hover .sub-menu.blank{
  top: 50%;
  transform: translateY(-50%);
}
.sidebar .profile-details{
  position: fixed;
  bottom: 0;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #161918;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details{
  background: none;
}
.sidebar.close .profile-details{
  width: 78px;
}
.sidebar .profile-details .profile-content{
  display: flex;
  align-items: center;
}
.sidebar .profile-details img{
  height: 32px;
  width: 32px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 8px;
  transition: all 0.5s ease;
}
.sidebar.close .profile-details img{
  padding: 0px;
}
.sidebar .profile-details .profile_name,
.sidebar .profile-details .job{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  line-height:1.25;
}
.sidebar.close .profile-details i,
.sidebar.close .profile-details .profile_name,
.sidebar.close .profile-details .job{
  display: none;
}
.sidebar .profile-details .job{
  font-size: 12px;
}


.home-section{
	position: fixed;
    z-index: 9990;
    bottom: 4rem;
    background: #D4003B;
    border-radius: 50%;
    right: 0px;
    transition: all 0.5s ease;
    padding: 8px;
}

.home-content{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.home-section .home-content .bx-expand,
.home-section .home-content .text{
  color: #fff;
  font-size: 32px;
}
.home-section .home-content .bx-expand{
  cursor: pointer;
}
.home-section .home-content .text{
  font-size: 26px;
  font-weight: 600;
}

.close{
	opacity: 1!important;
	text-shadow: none!important;
}

@media screen and (max-width: 1070px){
	.sidebar{
		display: none;
	}
	.home-section{
		display: none;
	}
}

.dropdown-menu-inferior {
    font-size: 1.15rem !important;
    bottom: -10px !important;
    border-radius: 0 !important;
    background-clip: unset !important;
    border: none !important;
    background-color: rgb(22, 25, 24) !important;
}

.dropdown-item-inferior {
    padding: 1.25rem 2rem 1rem 2rem!important;
	color: white!important;
}

.flip-card {
  background-color: transparent;
  perspective: 1000px; /* Remova isso se não quiser o efeito 3D */
}

/* Este contêiner é necessário para posicionar a parte frontal e traseira */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Faz um flip horizontal quando você move o mouse sobre o contêiner da caixa flip */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

.flip-card-back {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden; 
  transform: rotateY(180deg);
}

.flip-card .flipped {
	transform: rotateY( 180deg );
}

.owl-carousel .owl-item{
	border-radius: 1rem!important;	
}

.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
    --bs-offcanvas-zindex: 1045;
    --bs-offcanvas-width: 400px;
    --bs-offcanvas-height: 75vh;
    --bs-offcanvas-padding-x: 1rem;
    --bs-offcanvas-padding-y: 1rem;
    --bs-offcanvas-color: var(--bs-body-color);
    --bs-offcanvas-bg: var(--bs-body-bg);
    --bs-offcanvas-border-width: var(--bs-border-width);
    --bs-offcanvas-border-color: var(--bs-border-color-translucent);
    --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
    --bs-offcanvas-transition: transform 0.3sease-in-out;
    --bs-offcanvas-title-line-height: 1.5;
}


.offcanvas-veiculos {
  position: fixed;
  bottom: 0;
  z-index: 10001!important;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: #E4E4E4!important;
  visibility: hidden;
  background-color: rgb(22,25,24)!important;  
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}

.offcanvas-veiculos li{	
	list-style-type: none;
    padding: 0px!important;
    width: 100%;
	text-align: left!important;
}

.offcanvas-veiculos h3 {  
  display: block;  
  text-align: left;  
 margin: 0.5rem 0rem 0.5rem 0.6rem;
}

.offcanvas-veiculos li a {
  color: #E4E4E4;
  font-weight: 600;
  font-size: 13px;
   padding: 10px!important;
}      

@media (max-width: 575.98px) {
  .offcanvas-sm {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}
@media (max-width: 575.98px) {
  .offcanvas-sm.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-sm.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-sm.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-sm.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}
@media (min-width: 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-sm .offcanvas-header {
    display: none;
  }
  .offcanvas-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 767.98px) {
  .offcanvas-md {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}
@media (max-width: 767.98px) {
  .offcanvas-md.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-md.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-md.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-md.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-md .offcanvas-header {
    display: none;
  }
  .offcanvas-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .offcanvas-lg {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .offcanvas-lg.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-lg.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-lg.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-lg.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-lg .offcanvas-header {
    display: none;
  }
  .offcanvas-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1199.98px) {
  .offcanvas-xl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}
@media (max-width: 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xl .offcanvas-header {
    display: none;
  }
  .offcanvas-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

@media (max-width: 1399.98px) {
  .offcanvas-xxl {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    background-clip: padding-box;
    outline: 0;
    transition: var(--bs-offcanvas-transition);
  }
}
@media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}
@media (max-width: 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    top: 0;
    left: 0;
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(-100%);
  }
  .offcanvas-xxl.offcanvas-end {
    top: 0;
    right: 0;
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateX(100%);
  }
  .offcanvas-xxl.offcanvas-top {
    top: 0;
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(-100%);
  }
  .offcanvas-xxl.offcanvas-bottom {
    right: 0;
    left: 0;
    height: var(--bs-offcanvas-height);
    max-height: 100%;
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    transform: translateY(100%);
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }
  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}
@media (min-width: 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: transparent !important;
  }
  .offcanvas-xxl .offcanvas-header {
    display: none;
  }
  .offcanvas-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    background-color: transparent !important;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 10001!important;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  color: black;
  visibility: hidden;
  background-color: white;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;

}

@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}
.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}
.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}
.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}
.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}
.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9995;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.85;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-left: auto;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: var(--bs-offcanvas-title-line-height);
}

.offcanvas-body {
  flex-grow: 1;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  overflow-y: auto;
  overflow-x: hidden;
}

.offcanvas-body ul{
	padding-left: 0rem;
}

.offcanvas-body ul .on{
	background-color:rgb(22,25,24);
}

.offcanvas-body ul .on a{
	color: white;
}

.offcanvas-body ul .on h3{
	color: white;
	padding-bottom:5px;
	border-bottom: 1px solid white;
}

.offcanvas-body ul .on li{
	padding: 4px 8px;
}

.offcanvas-body li{	
	list-style-type: none;
	padding: 8px 8px;
}

.offcanvas-body .active{	
	background-color:#f7f7f7;
}


.offcanvas-body li a{
	color:#343a40;
	padding: 5px;
    text-decoration: none;
	font-size: 14px;
	font-weight:600;
	width: 100%;
	display:table;
}

.offcanvas-body li a:hover{	
	color: #D4003B;
	transition: none;
}



.offcanvas-body li a i{
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
    float: left;
}



/* Header - já está certo, mas garanta o will-change para performance */
.header-mobile {
    background-color: #D4003B;
    height: 95px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10000;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

/* Classe para o Header sumir (para cima) */
.header-hidden {
    transform: translateY(-100%);
}

.header-mobile .busca-mobile{
	border-radius: 10rem;
	width:100%;
	border: none;
	height: 30px;
	float:left;
	font-weight: 500;
	background-color: #FFFFFF;
}



.header-mobile .busca-icon {
  padding-left: 28px;
  background-size: 16px;  
  background-image: url("../../assets/img/icons/search.svg");
  background-position: 8px 7px;
  background-repeat: no-repeat;
}

.header-mobile .back{
	padding-left: 6px;
    padding-right: 12px;
    padding-top: 3px;
}

.header-mobile .menu{
	padding-left: 0px;
}

.header-mobile .menu i{
	font-size: 22px;
	color: white;
	padding-top:4px;
}

.header-mobile .search{
	padding-right: 0px;
}

.header-mobile .keys{
	color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.header-mobile .filter{
	padding-left: 2px;
}

.header-mobile .filtrar{
	color: white;
    font-weight: 600;
    font-size: 1rem;
}



.select2-container--open {
    z-index: 9999999
}

.filtro-pc{
	width:100%;
	background-color: #D4003B;
    position: fixed;
    top: 72px;
    z-index: 9990;
    padding: 5px;
}

.filtro-pc a{
	color: white;
    font-weight: 600;
    font-size: 1rem; 
}

.filtro-pc:hover{
	color: white;
}
	
.header-filtro .title{	
	color: #D4003B;
	font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 1;
    padding-bottom: 6px;
    text-transform: capitalize;
    visibility: visible;
    width: 100%;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
}

.header-filtro .title a{	
	color: #D4003B!important;
}

.header-filtro a:hover{
	color: #D4003B!important;
}

.header-filtro li a{
	padding: 0!important;
}


.header-filtro .form-control {
    font-size: 1rem;
}

.header-filtro .select2 {
    font-size: 1rem;
}

/*Principal*/
.principal .car-text img{
	width:15px!important; display:inline;
}

.principal .pin-destaque-in {
	padding: 0.25rem 0.55rem 0.25rem 0.55rem;
}

.principal .car-product-item .car-text .marca img {
	width:30px!important; 
	max-width: none!important;
	margin-top: -6px;
}

.principal .car-product-item {
    /*min-height: 548px;*/
}

.principal h2{
	font-size: 40px;
    line-height: 32px;
}

@media only screen and (max-width:991px){	   
	.principal h2{
		font-size: 28px;
        line-height: 28px;
	}
	
	.principal h3{
		font-size: 24px;
	}
	
	.principal .car-text {
		padding: 1rem;
	}
	
	.principal .car-product-item{
		min-height: 0;
	}
	
	.principal .car-product-item .car-text h3{
		font-size: 12px;
		line-height: 12px !important;
        min-height: 28px;
		margin: 0 !important;
	}
	
	.principal .car-product-item .car-text h5{
		font-size: 12px;
		line-height: 10px !important;
		min-height: 20px;
	}
	
	.principal .car-product-item .car-text p{
		font-size: 10px;
		line-height: 10px !important;
	}
	
	.principal .car-product-item .car-text .city p{
		font-size: 10px;
		line-height: 10px !important;
		min-height: 10px;
	}
	
	
	.principal .car-product-item .car-text .car-product-price{
		font-size: 13px;
		line-height: 12px !important;
	}
	
	.principal .car-product-item .car-text img{
		width:8px!important; display:inline;
	}
	
	.principal .car-product-item .car-text .marca img {
		width:25px!important; 
		margin-top: -5px!important; 
		max-width: none!important;
	}
	
	.principal .img-fill{
		height: 120px;
		width:100%;
	}
	
	.principal .pin-destaque-in {
		font-size: .75rem;
	}
	
	
}

@media only screen and (max-width:570px){	   
	.principal h2{
		font-size: 20px;
		line-height: 20px;
	}
	
	
	.principal h3{
		font-size: 20px;
	}
	
	.principal .car-text {
		padding: 1rem;
	}
	
	.principal .car-product-item{
		min-height: 0;
	}
	
	.principal .car-product-item .car-text h3{
		font-size: 10px;
		line-height: 10px !important;
		min-height: 20px;
		margin: 0 !important;
	}
	
	.principal .car-product-item .car-text h5{
		font-size: 10px;
		line-height: 10px !important;
		min-height: 20px;
	}
	
	.principal .car-product-item .car-text p{
		font-size: 8px;
		line-height: 10px !important;
	}
	
	.principal .car-product-item .car-text .city p{
		font-size: 0.65rem;
		line-height: 10px !important;
		min-height: 0px;
		letter-spacing: -0.5px;
	}
	
	
	.principal .car-product-item .car-text .car-product-price{
		font-size: 12px!important;
		line-height: 12px !important;
	}
	
	.principal .car-product-item .car-text img{
		width:8px!important; display:inline;
	}
	
	.principal .car-product-item .car-text .marca img {
		width:20px!important; 
		max-width: none!important;
		margin-top: 0px;
	}
	
	.principal .img-fill{
		height: 92px;
		width:100%;
	}
	
	.principal .pin-destaque {
		margin: 0.5rem 0.5rem 0.5rem 0.5rem;
		z-index: 10;
	}
	
	.principal .pin-destaque-in {
		font-size: .5rem;
	}
	
	.principal .single-product-item p{
		font-size: 9px !important;
		line-height: 10px !important;
	}
	
	
	.principal .single-product-item h3 {
		font-size: 18px !important;
		font-weight: 700 !important;
		margin: 10px !important;
		line-height: 1.5rem !important;
		min-height: 0 !important;
	}
	
	.principal  .single-product-item .p-3{
        padding: 0.75rem !important;
    }
	
    .principal .product-image {
        padding: 10px !important;
        padding-bottom: 0 !important;
    }
	
	.principal .product-image img {
		margin-bottom: 0 !important;
	}
	
	.principal .news-text-box {
		padding: 10px !important;
	}
	
	.principal .news-text-box h3{
		font-size: 9px !important;
		line-height: 10px !important;
	}
	
	.principal .news-text-box p {
		font-size: 8px !important;
		line-height: 10px !important;
		margin: 8px 0 0 0 !important;
	}
	
	.principal .latest-news-bg {
		height: 86px !important;
	}
	
	.principal p.blog-meta span {
		margin-right: 15px !important;
		font-size: 8px !important;
	}
	
	.principal a.read-more-btn {
		margin-top: 0!important;
		font-size: 12px !important;
	}
	
}

.principal .single-logo-item{ 
	background: white;
    border-radius: 100%;
    padding: 5px;
    box-shadow: 1px 0px 4px #BBB;
	margin: 2px;
	min-width: 60px;
    min-height: 60px;
    max-width: 80px;
    max-height: 80px;
}

.principal .single-logo-item img{ 
	max-width: 95%;
}


/*Principal*/

.st-btn {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: opacity 0.2s ease-in, top 0.2s ease-in;
    -ms-transition: opacity 0.2s ease-in, top 0.2s ease-in;
    -o-transition: opacity 0.2s ease-in, top 0.2s ease-in;
    -webkit-transition: opacity 0.2sease-in, top 0.2sease-in;
    transition: opacity 0.2sease-in, top 0.2sease-in;
    -moz-border-radius: 1rem;
    -webkit-border-radius: 1rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    margin-right: 8px;
    padding: 0 10px;
    position: relative;
    text-align: center;
    top: 0;
    vertical-align: top;
    white-space: nowrap;
	background-color: #eee;
    color: black;
}


.offcanvas .profile-details{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #161918;
  padding: 12px 0;
  transition: all 0.5s ease;
}
.offcanvas.close .profile-details{
  background: none;
}
.offcanvas.close .profile-details{
  width: 78px;
}
.offcanvas .profile-details .profile-content{
  display: flex;
  align-items: center;
  float: left;
}
.offcanvas .profile-details img{
  height: 32px;
  width: 32px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 14px 0 8px;
  transition: all 0.5s ease;
}
.offcanvas.close .profile-details img{
  padding: 0px;
}
.offcanvas .profile-details .profile_name,
.offcanvas .profile-details .job{
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  line-height:1.25;
}
.offcanvas.close .profile-details i,
.offcanvas.close .profile-details .profile_name,
.offcanvas.close .profile-details .job{
  display: none;
}
.offcanvas .profile-details .job{
  font-size: 12px;
}

.owl-carousel{
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}


/*Mockup celular*/
.device-container {
            position: relative;
            width: 340px; 
            height: 680px; 
        }

        .smartphone-mockup {
            width: 340px;
            height: 680px;
            border: 10px solid #222;
            border-radius: 40px;
            background: #000;
            padding: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 1;
        }

        .smartphone-mockup::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 20px;
            background: #222;
            border-radius: 0 0 10px 10px;
            z-index: 10;
        }

        .screen {
			width: 100%;
			height: 100%;
			background: #fff;
			border-radius: 20px;
			overflow: hidden; 
			position: relative;
			cursor: grab; 
			
			/* PROPRIEDADES PARA IMPEDIR A SELEÇÃO AZUL AO ARRASTAR */
			user-select: none;           /* Padrão */
			-webkit-user-select: none;   /* Chrome, Safari, Edge, Opera */
			-moz-user-select: none;      /* Firefox */
			-ms-user-select: none;       /* Internet Explorer */
			
		}
        
        .screen:active {
             cursor: grabbing; 
        }
		
		.carousel-item {
			transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
		}

        .carousel-item img {
            height: 624px; 
            object-fit: cover; 
            pointer-events: none; 
        }

        /* ESTILO DA MÃO */
        #hand-swipe {
            position: absolute;
            top: 40%;
            left: 0%; 
            transform: translateX(-50%);
            width: 650px; 
            height: 650px;
            background-image: url('hand.png'); 
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0; 
            z-index: 100; 
            pointer-events: none; 
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); 
        }
		
        
        .do-swipe {
            animation: swipe-animation 0.9s ease-in-out; 
        }

        /* ANIMAÇÃO DA MÃO */
        @keyframes swipe-animation {
            0% { opacity: 0; transform: translateX(60px) scale(0.9); }
            20% { opacity: 1; transform: translateX(40px) scale(1); }
            80% { opacity: 1; transform: translateX(-40px) scale(1); }
            100% { opacity: 0; transform: translateX(-60px) scale(0.9); }
        }
/*Mockup celular*/



.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Mantém proporção padrão do YouTube */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.div-propostas {
  display: flex;
  align-items: stretch; /* ambos terão mesma altura */
  gap: 15px; /* opcional - distância entre os blocos */
}



.botao-ver-todas {
  display: contents;
  align-items: center; /* centraliza verticalmente o texto */
  justify-content: center; /* centraliza horizontalmente */
  background: #f9f9f9;
  border-radius: 12px;
  padding: 15px;
  font-weight: bold;
  color: #000;
  width: 160px; /* define uma largura fixa */
}

.produto-menu{
    margin-bottom: 15px;
}

.produto-menu h3, .h3 {
	font-size: 1.7rem;
}


.image-perfil.image-perfil-circle {
    border-radius:50%;
}
.image-perfil:not(.image-perfil-empty) {
    background-image: none !important;
}
.image-perfil {
    position: relative;
    display: inline-block;   
	vertical-align: top;
    background-repeat: no-repeat;
    background-size: cover;
	border: 2px solid white;
}

.image-perfil .image-perfil-wrapper {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.offcanvas-footer{
	padding: 1rem 1rem;
	border-top: 1px solid #dee2e6;
}

/* 1. Remove o outline padrão (borda pontilhada/azul) que aparece após o clique/focus */
.verVeiculo,
[data-bs-toggle="offcanvas"] {
    outline: none !important;
}

/* 2. Força a remoção do estilo quando o link está em foco (estado "selecionado") */
.verVeiculo:focus,
[data-bs-toggle="offcanvas"]:focus {
    outline: none !important;
    box-shadow: none !important; /* Remove sombras de foco do Bootstrap, se houver */
    /* Se houver uma cor de fundo ou borda sendo aplicada por sua CSS, adicione aqui: */
    /* border-color: initial !important; */ 
    /* background-color: initial !important; */
}

/* Correção de estilo para remover borda azul/contorno após o clique/foco */
[data-bs-toggle="offcanvas"]:focus {
    outline: none !important;
    box-shadow: none !important; 
}


body.modal-open {
    /* Sobrescreve a compensação de padding */
    padding-right: 0 !important;
}

.modal{
    /* Sobrescreve a compensação de padding */
    padding-right: 0 !important;
}

/* Estilizando o elemento flutuante (neste exemplo, um emoji grande) */
.flutuante {
	font-size: 5rem; /* Deixa o elemento bem visível */
	cursor: pointer;
	
	/* 1. Aplicando a animação */
	animation-name: flutuar;
	animation-duration: 4s; /* O tempo que leva para um ciclo completo (subir e descer) */
	animation-timing-function: ease-in-out; /* Controla a velocidade (suave no início e no fim) */
	animation-iteration-count: infinite; /* Faz a animação se repetir para sempre */
	/* Você pode combinar as 4 linhas acima em uma só: animation: flutuar 4s ease-in-out infinite; */
}

.flutuante.pausar {
	animation-play-state: paused; /* Esta propriedade pausa a animação */
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); /* Efeito de destaque ao pausar */
}

/* 2. Definindo a animação com Keyframes */
@keyframes flutuar {
	/* Estado inicial: Posição normal (0 pixels de movimento no eixo Y) */
	0% {
		transform: translateY(0);
	}
	
	/* Ponto intermediário: Elemento no ponto mais alto (20 pixels para cima) */
	50% {
		transform: translateY(-20px); /* O valor negativo move o elemento para cima */
	}
	
	/* Estado final: Volta para a posição inicial */
	100% {
		transform: translateY(0);
	}
}

.banner-item{
	height: 450px;
	object-fit: cover;
    background-size: cover;
    background-position: center;
	background-repeat: no-repeat;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media only screen and (max-width:991px){	 
	.banner-item{
		height: 320px;
	}
}

@media only screen and (max-width:768px){	 
	.banner-item{
		height: 195px;
	}
}

.text-scroller {
    /* Inicialmente alinhado no topo */
    transform: translateY(0); 
    margin-top:1px;
    /* === A CHAVE É AQUI: APLICAÇÃO DA ANIMAÇÃO === */
    /* animation: [nome] [duração] [repetição] [tipo]; */
    animation: text-scroll 8s infinite ease-in-out; 
    /* Você pode ajustar o 8s para mudar a velocidade total do ciclo */
}

/* 1. CONTÊINER PAI: Usa Flexbox para colocar o texto fixo e o rolante na mesma linha */
.search-title-container {
    display: flex;
    align-items: center; /* Alinha os itens verticalmente no centro */
    gap: 7px; /* Espaço entre "Procure por:" e o texto rolante */
}

/* 2. TEXTO FIXO: Garante que o H4 não tenha margens desnecessárias que atrapalhem o alinhamento */
.search-title-container .title-fixed {
    margin: 0; 
    /* Adicione qualquer estilo de fonte que você queira para o "Procure por:" */
    font-weight: bold;
    /* (Mantenha o tamanho da fonte padrão do H4) */
}

/* 3. CONTÊINER DE ROLAGEM: Ajusta a altura da "janela" */
.scrolling-text-wrapper {
    /* HERDA o tamanho da fonte do H4, garantindo que o 1.2em seja baseado no H4 */
    font-size: inherit; 
    
    /* A altura da janela deve ser baseada no line-height do parágrafo */
    height: 1.4em; 
    overflow: hidden; 
    display: inline-block; 
}

/* 4. TEXTO ROLANTE: Garante que os parágrafos tenham a mesma altura */
.text-scroller p {
    margin: 0;
    font-weight: bold;
	font-size: 1.4em;
	font-family: 'Poppins', sans-serif !important;
    color: rgb(22, 25, 24);
	line-height: 1.01em!important;
}


.list-group-item-primary {
    color: #D4003B!important;
    background-color: #FFE6ED!important;
}

.list-group-item-secondary {
    color: #D4003B!important;
    background-color: #FFF9FB!important;
}

.text-primary{
	color: #D4003B!important;
}

.notificacao-badge-class {
    width: 10px;
    height: 10px;
    top: 4px;
    padding: 0;
    color: white !important;
    transform: translate(-50%, -50%);
    padding: 0.2rem 0 0 0;
    text-align: center;
    font-size: 0.35em;
}

.car-carousel-products-single {
    width: 100%;
    display: block;
}

.car-carousel-products-single .car-logo-item {
    max-width: 33.3333%;
}

@media (max-width: 1210px) {
  .car-carousel-products-single .car-logo-item {
		max-width: 40%;
	}
}

@media only screen and (max-width:991px){	
	.car-carousel-products-single .car-logo-item {
		max-width: 50%;
	}
}

@media (max-width: 767px) {
  .car-carousel-products-single .car-logo-item {
		max-width: 100%;
	}
}

.btn-menu-header{
	width: 32px;
    height: 32px;
    float: right;
    margin-top: 18px;
    padding: 6px;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    background-color: #D4003B;
    color: black;	
}

.btn-menu-header span{display: block; background: #fff; height: 3px;  margin-top: 3px;color: rgb(22,25,24);background-color: rgb(22,25,24);}


.instagram-in { 
	height: 553px;
}

@media only screen and (max-width: 1199px){
	.instagram-in { 
		height: 785px;
	}
} 	

@media only screen and (max-width: 991px){
	.instagram-in { 
		height: 625px;
	}
}

@media only screen and (max-width: 767px){
	.instagram-in { 
		height: 410px;
	}
} 

/* Container onde os cards ficam empilhados */
.tinder-stack {
    position: relative;
    height: 515px;
    width: 420px;
    max-width: 100%; /* Garante que não quebre em telas pequenas */
    margin: 20px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: #fff;
    
    /* Centralização Mágica */
    display: flex;
    align-items: center;
    justify-content: center;
}

.tinder-img{
	height: 245px;
}

#loading-match {
    width: 60px; /* Ou o tamanho que preferir */
    height: auto;
    position: absolute;
    /* Não precisa de margens, o Flexbox acima já centraliza */
    z-index: 1; 
}




@media only screen and (max-width: 767px){
	.tinder-stack { 
		height: 458px;
		width: 340px;
	}
	
	.tinder-img{
		height: 185px;
	}
} 

/* Efeito de saída com Fade - Melhorado para Mobile */
.swipe-left { 
	transform: translate3d(-1000px, 0, 0) rotate(-30deg) !important; 
	opacity: 0 !important; 
	pointer-events: none !important; /* Impede travar se clicar enquanto some */
	transition: all 0.6s ease-out !important;
}

.swipe-right { 
	transform: translate3d(1000px, 0, 0) rotate(30deg) !important; 
	opacity: 0 !important; 
	pointer-events: none !important;
	transition: all 0.6s ease-out !important;
}

.tinder-card {
	position: absolute;
	width: 100%;
	border-radius: 15px;
	background: white;
	cursor: grab;
	transition: transform 0.1s ease-out, opacity 0.3s;
	user-select: none;
	display: none;
	z-index: 10;
	
	/* AJUSTE CHAVE PARA MOBILE */
	-webkit-user-drag: none;
	will-change: transform, opacity;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform-style: preserve-3d; /* Ajuda na fluidez do iOS */
	
	touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch;
}

/* Bloqueia a imagem de ser "arrastável" ou capturar o toque */
.tinder-card img {	
	pointer-events: none !important;
    -webkit-user-drag: none !important;
    user-drag: none !important;
    touch-action: none !important;
}

.tinder-btn{
	width: 65px;
    height: 65px;
    background-color: #f5f5f9 !important;
    border-color: white !important;
    box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 10px;
}


.tinder-btn:hover{
    background-color: #EEEEEE !important;
    border-color: #f5f5f9 !important;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 10px;
}


/* Garante que o link em volta da imagem também não interfira */
.verVeiculo, .trigger-offcanvas {
    -webkit-user-drag: none !important;
    user-drag: none !important;
}

.btn-social {
    border: 1px solid #D8D8D8 !important;
    background-color: white;
    color: #000;
    font-weight: 700;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    margin-bottom: 0 !important;
    font-size: 1rem !important;
}

.reset-swipe {
    transform: translate3d(0, -1000px, 0) rotate(10deg) !important;
    opacity: 0 !important;
    transition: all 0.6s cubic-bezier(0.55, 0.055, 0.675, 0.19) !important;
}

/* Customização do Slider para o padrão Chave na Chave */
.noUi-target{
    height: 6px;
    border: none;
    background: #e9ecef; /* Cor da barra (cinza claro) */
    box-shadow: none;
    margin-bottom: 20px;
}

/* Cor da barra de preenchimento (entre as bolinhas) */
.noUi-target .noUi-connect {
    background: #dc3545; /* Vermelho padrão */
}

/* Estilo das Bolinhas (Handles) */
.noUi-target .noUi-handle {
    width: 28px !important;
    height: 28px !important;
    margin: 3px;
    right: -17px !important;
    top: -14px !important;
    background: #D4003B!important;
    border: 2px solid #fff;
    border-radius: 50%; /* Deixa redondo */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s;
}

/* Remove os risquinhos chatos que vêm por padrão na bolinha do noUiSlider */
.noUi-target .noUi-handle:before,
.noUi-target .noUi-handle:after {
    display: none;
}

/* Efeito de clique na bolinha */
.noUi-target .noUi-handle:active {
    transform: scale(1.2);
}

/* Garante que o slider apareça e seja vermelho */
#slider-distancia, #slider-ano, #slider-preco {
    height: 8px;
    margin-bottom: 30px;
}
.noUi-connect { background: #dc3545 !important; }
.noUi-handle { background: #dc3545 !important; border-radius: 50%; border: 2px solid #fff; }


.loja-logo-item {
    padding: 12px!important;
	max-width: 110px!important;
    max-height: 110px!important;
	overflow: hidden; /* Corta o que sair do círculo */
	width: 110px;  /* Defina um tamanho fixo para manter o círculo */
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 50%; /* 50% garante o círculo perfeito */
	padding: 0px !important;
}

.loja-logo-item img {
    width: 100%;
    height: 100%;
	max-width: 100%!important;
    border-radius: 50%; /* Importante para o encaixe */
    object-fit: cover;  /* O "pulo do gato" para não distorcer */
}

@media (max-width: 800px) {
	.loja-logo-item {
		width: 68px;
		height: 68px;
	}
}


.link-underline-primary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}


/* editor fotos */

/* 1. Visibilidade e trava de scroll do body */
.editor-visible { opacity: 1 !important; pointer-events: auto !important; }
body.editor-open { overflow: hidden !important; }

/* 2. Esconder lixo e Círculo */
.tui-image-editor-header, .tui-image-editor-controls-logo,
[data-icontype="circle"], [data-icontype="triangle"] {
	display: none !important;
}

/* 3. Ajuste de altura dinâmica */
#tui-image-editor {
	height: calc(100vh - 65px) !important;
}

.tui-image-editor {
	margin-bottom: 50px !important;
	padding: 20px !important;
}

/* 4. RESPONSIVIDADE DOS ÍCONES (O segredo) */
@media (max-width: 800px) {
	/* Ajusta o tamanho dos itens no menu para serem clicáveis */
	.tui-image-editor-container .tui-image-editor-item {
		display: inline-block !important;
		flex: 0 0 auto !important;
		padding: 0 8px !important;
	}

	/* Barra de ajuda (Undo/Redo) no topo - centralizada e pequena */
	.tui-image-editor-help-menu {
		width: 100% !important;
		justify-content: center !important;
		height: 40px !important;
		background-color: rgba(0,0,0,0.3) !important;
	}

	/* Ajusta os submenus (onde fica o slider de tamanho e cores) */
	.tui-image-editor-container .tui-image-editor-submenu {
		height: auto !important;
		padding: 8px 0 !important;
	}
	
	.tui-image-editor-container .tui-image-editor-menu > .tui-image-editor-item, .tui-image-editor-container .tui-image-editor-help-menu > .tui-image-editor-item {
		margin: 5px 0px!important;
	}
}

/* Cor de destaque (seu padrão) */
.tui-image-editor-container .tui-image-editor-menu > .tui-image-editor-item.active {
	background-color: #D4003B !important;
}

/* Limpeza de conflitos com ícones externos */
.tui-image-editor-button div, .tui-image-editor-button span {
	animation: none !important;
	background-image: none !important;
}

.tui-image-editor-container .tui-image-editor-submenu .tui-image-editor-submenu-item .tui-image-editor-button.apply label, .tui-image-editor-container .tui-image-editor-submenu .tui-image-editor-submenu-item .tui-image-editor-button.cancel label {
	vertical-align: 0px!important;
}

.tui-image-editor-container .svg_ic-menu {
	width: 20px!important;
	height: 20px!important;
}

.tui-image-editor-container .tui-image-editor-icpartition {
	height: 18px!important;
}

.tui-image-editor-container.bottom .tui-image-editor-submenu > div {
	padding-bottom: 0px!important;
}

.tui-image-editor-container .tui-image-editor-submenu {
	height: auto !important;
}
	
	/* Força o container do slider a aceitar cliques/toques */
.tui-image-editor-submenu .tui-image-editor-submenu-item,
.tui-image-editor-range-wrap {
    pointer-events: auto !important;
    touch-action: none !important; /* Essencial para mobile não confundir com scroll */
}

/* Garante que o input do slider seja a camada mais alta */
.tui-image-editor-range-wrap input[type="range"] {
    position: relative !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    touch-action: none !important;
    cursor: pointer !important;
}

/* Centraliza o conjunto do range para não ficar quebrado à esquerda */
.tui-image-editor-newline {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

.tui-image-editor-container .tui-image-editor-submenu .tui-image-editor-submenu-item .tui-image-editor-newline {
    display: none !important;
}

/* Alvo: O botão de confirmar (check) dentro do submenu de Crop */
.tui-image-editor-submenu-item .tie-crop-button {
    display: block !important;
}

/* Caso precise forçar a visibilidade da label dele também */
.tui-image-editor-submenu-item .tie-crop-button{
    display: block !important;
    color: #fff !important; /* Cor branca para a label */
}

.tie-shape-color-button{
    display: none !important;
}

.tui-image-editor-partition{
	display: none !important;
}

.tui-image-editor-container .tui-image-editor-submenu .tui-image-editor-submenu-item li {
    margin-top: 5px !important;
}

.tui-image-editor-container .tui-image-editor-submenu .tui-image-editor-submenu-item .tui-image-editor-button.preset {
    margin: 0 9px 5px 5px !important;
}

.tui-image-editor-container .tui-image-editor-controls {
    position: fixed !important;
    will-change: transform;
}

.tui-image-editor-container .tui-image-editor-submenu {
    position: fixed !important;
    bottom: 64px !important;
	will-change: transform;
}

/* --- FIX SAFARI: SCROLL VS INTERAÇÃO --- */

/* 1. Garante que o container principal permita scroll vertical no Mobile */
.tui-image-editor-container {
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
}

/* 2. Quando em modo de SCROLL (allow-scroll ativo) */
/* Desativamos a interação APENAS na camada de desenho superior */
#tui-image-editor.allow-scroll .tui-image-editor-canvas-container .upper-canvas {
    pointer-events: none !important;
    touch-action: pan-y !important;
}

/* 3. Quando em modo de EDIÇÃO (allow-scroll removido) */
/* Travamos o scroll para o desenho funcionar e garantimos pointer-events */
#tui-image-editor:not(.allow-scroll) .tui-image-editor-canvas-container .upper-canvas {
    pointer-events: auto !important;
    touch-action: none !important; /* Essencial para desenhar no Safari */
    display: block !important;
}

/* 4. IMPORTANTE: Garante que a imagem de fundo nunca bloqueie o toque */
.tui-image-editor-canvas-container .lower-canvas {
    pointer-events: none !important;
}

/* 5. Fix para os botões do menu sempre funcionarem */
.tui-image-editor-item, .tui-image-editor-button {
    pointer-events: auto !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent;
}

/* Camada invisível para o Safari entender o scroll */
#tui-image-editor.allow-scroll .tui-image-editor-canvas-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none; /* Deixa o toque passar para o fundo (body) */
}

/* Força o container a aceitar o gesto de arrastar do iOS */
.tui-image-editor-container, 
#tui-image-editor,
.tui-image-editor-canvas-container {
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
}

/* Quando estiver editando, removemos qualquer bloqueio */
#tui-image-editor:not(.allow-scroll) .tui-image-editor-canvas-container .upper-canvas {
    pointer-events: auto !important;
    touch-action: none !important;
    z-index: 20;
}

/* Quando permitir scroll, o canvas superior fica "fantasma" */
#tui-image-editor.allow-scroll .upper-canvas {
    pointer-events: none !important;
    touch-action: auto !important; /* Deixa o navegador decidir o scroll */
}

/* Quando estiver editando, o canvas captura TUDO e trava o scroll */
#tui-image-editor:not(.allow-scroll) .upper-canvas {
    pointer-events: auto !important;
    touch-action: none !important; /* Bloqueia o scroll para o desenho sair */
}

/* Garante que o container aceite o movimento de arrasto do iOS */
.tui-image-editor-container {
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch !important;
}

/* Importante: O canvas de baixo NUNCA deve receber toque */
.lower-canvas {
    pointer-events: none !important;
}

#editor-full-container {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; /* Isso força a altura correta no Safari Mobile */
    z-index: 9999999 !important;
    background: #000;
}

#editor-full-container label {
    margin-bottom: 0rem!important;
}

#editor-full-container.editor-visible {
    display: flex !important; /* Ajuda a conter o editor internamente */
    flex-direction: column;
}

#editor-wrapper-filerobot {
    width: 100%;
    flex-grow: 1; /* Faz o editor ocupar o espaço que sobrar, sem estourar */
    height: 100%; 
    position: relative;
}

/* Força o Safari a respeitar o limite da tela */
body.editor-open {
    overflow: hidden !important;
    position: fixed; /* Impede que a página de fundo role e empurre o editor */
    width: 100%;
}

/* Força os botões do Filerobot a ficarem no topo da pilha de cliques */
.filerobot-image-editor-root, 
.filerobot-image-editor-header, 
.filerobot-image-editor-top-bar {
    z-index: 99999999 !important;
    pointer-events: auto !important;
}

/* Força QUALQUER modal do Filerobot a ficar na frente do seu fundo preto */
.SfxModal-Wrapper, 
.SfxModal-Overlay, 
.SfxModal-Container {
    z-index: 99999999 !important;
    display: flex !important; /* Garante que o flex do modal funcione */
}

/* Garante que o fundo preto do seu container não bloqueie o clique do modal */
#editor-full-container {
    z-index: 99999997 !important; 
}

.filerobot-image-editor-header-buttons button {
    padding: 0 12px !important;
    min-width: 80px !important;
}

/* Força a cor do Botão Salvar */
.filerobot-image-editor-save-button, 
button[color="primary"], 
.SfxButton-root[color="primary"] {
    background-color: #D4003B !important;
    background: #D4003B !important;
    color: #fff !important;
}

/* Força a cor dos ícones ativos e estados de seleção */
.filerobot-image-editor-root [class*="active"],
.filerobot-image-editor-root [class*="selected"],
.filerobot-image-editor-root [style*="color: rgb(134, 58, 255)"],
.filerobot-image-editor-root [style*="background-color: rgb(134, 58, 255)"] {
    color: #D4003B !important;
    background-color: transparent; /* para ícones */
}

/* Seletor específico para o ícone do Retângulo e abas */
.filerobot-image-editor-tabs-item.active,
.filerobot-image-editor-tool-item.active svg,
[class*="SfxAnnotation-Rect"].active {
    fill: #D4003B !important;
    color: #D4003B !important;
}

/* Cor da linha de seleção e sliders */
input[type=range]::-webkit-slider-thumb {
    background: #D4003B !important;
}

/* Troca o Amarelo do Ícone de Alerta pelo seu Vermelho */
.SfxModal-Wrapper svg path[fill="rgba(255, 172, 74, 1)"] {
    fill: #D4003B !important;
}

/* Troca a cor do botão de confirmação do alerta (que costuma ser laranja/amarelo) */
button[color="warning-primary"], 
.SfxButton-root[color="warning-primary"] {
    background-color: #D4003B !important;
    background: #D4003B !important;
    color: #fff !important;
}

/* Ajuste fino no texto do modal para garantir que não fique "PT-PT" */
.SfxModalTitle-LabelSecondary {
    font-size: 14px !important;
    color: #555 !important;
}


/* Força os menus suspensos (Zoom, Presets, etc) a ficarem na frente do fundo preto */
#SfxPopper, 
.SfxPopper-wrapper, 
.SfxPopper-root {
    z-index: 99999999 !important;
}

/* Garante que o menu interno do popper também seja visível no tema Dark */
.SfxMenu-root {
    background-color: #1A1A1A !important;
    border: 1px solid #333 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
}

/* Efeito de hover nos itens do menu */
.SfxMenuItem-root:hover {
    background-color: #333333 !important;
}

	
/* fim editor fotos */


/* Linha de quem já foi contatado */
.linha-contatada {
    background-color: rgba(40, 167, 69, 0.1) !important; /* Um verde bem suave */
}
/* Estilo do botão quando já clicado */
.btn-check-contato.atendido {
    display: none; /* Esconde o botão após o clique, se preferir */
}

#listaFavoritos tr {
    transition: background-color 0.5s ease;
}


/* carrossel index */
/* 1. ESTRUTURA GERAL (SEUS ESTILOS ORIGINAIS) */
.chave-section {
    width: 100%;
    padding: 40px 0;
    background-color: #f4f7f9;
    overflow: hidden;
}

.chave-title {
    margin-bottom: 20px;
    font-family: sans-serif;
    color: #445a66;
    font-size: 1.2rem;
    font-weight: bold;
}

/* 2. VIEWPORT E TRACK (UNIFICADOS) */
.chave-carousel-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0px 15px 0px; /* Mantive seu padding original */
    display: block;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.chave-carousel-viewport::-webkit-scrollbar {
    display: none;
}

.chave-carousel-track {
    display: flex;
    /*gap: 12px;*/
    width: max-content;
	max-width: 100%; /* Adicione esta linha */
    justify-content: flex-start; 
}

/* 3. OS CARDS (O QUE MUDOU PARA FUNCIONAR O DATA-ITEMS) */
.chave-card-item {
    scroll-snap-align: start;
    flex: 0 0 180px; /* Mobile continua 140px */
	padding-right: 15px;
    width: 180px;
    box-sizing: border-box;
    pointer-events: auto;
}

/* Seus estilos internos (Sombras, Cores, etc) */
.chave-card-content {
    background: #fff;
    height: 130px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-bottom: 4px solid transparent;
    transition: 0.3s;
    text-align: center;
    pointer-events: none;
	
}

.chave-card-content h6 {
    position: relative;
}


.chave-card-content h6:after {
    position: absolute;
    content: '';
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 50px;
    height: 2px;
    background-color: #D4003B;
    margin: 0 auto;
}

.chave-card-item:hover .chave-card-content {
    border-bottom-color: #D4003B;
}

.chave-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.chave-servicos .chave-card-item p {
		font-weight: 700;
}

@media screen and (max-width: 992px) {
	.chave-index-principal .chave-card-item{
		flex: 0 0 50%!important;
		width: 50%!important;
	}
	
	.chave-marcas .chave-card-item {
        flex: 0 0 92px !important;
        width: 92px !important;
    }
	
	.chave-no-right{
		padding-right: 0!important;
		padding-left: 0!important;
	}
	
	.chave-card-item {
		padding-left: 10px;
		padding-right: 0px;
	}
}

@media screen and (max-width: 500px) {
		
	.chave-card-item {
		flex: 0 0 150px; /* Mobile continua 140px */
		width: 150px;
	}
	
	.chave-servicos .chave-card-item{
		flex: 0 0 145px!important;
		width: 145px!important;
	}
	
	.chave-servicos .chave-card-item p {
		font-size: 0.85rem;
		line-height: 14px;
	}
	
	.chave-index-principal .chave-card-item{
		flex: 0 0 100%!important;
		width: 100%!important;
	}
	
	.chave-marcas .chave-card-item {
        flex: 0 0 72px !important;
        width: 72px !important;
    }
}

/* 4. AJUSTE PARA DESKTOP (PC) - CORRIGIDO PARA 1 OU MAIS CARDS */
@media screen and (min-width: 992px) {
    
    /* O Track só ocupa 100% se o container tiver data-items="4" 
       MAS usamos 'width: table' para ele não esticar cards sozinhos */
    .chave-container[data-items="4"] .chave-carousel-track {
        display: flex;
        width: 100% !important;
        max-width: 100% !important;
        /* Impede que um único card estique para preencher o vazio */
        justify-content: flex-start; 
    }

    .chave-container[data-items="4"] .chave-card-item {
        /* Define que o card ocupa 25% da tela, mas tem um limite máximo */
        flex: 0 0 calc(30% - 9px) !important;
        width: calc(30% - 9px) !important;
        max-width: calc(30% - 9px) !important;
        min-width: 300px; /* Evita que o card fique esmagado em telas menores */
    }

    /* Ajuste específico para quando houver APENAS 1 card no container de 4 */
    /* Isso impede o card de "Destaques" de ficar gigante se for o único */
    .chave-container[data-items="4"] .chave-card-item:only-child {
        /* max-width: 300px !important;  Ou a largura ideal que você quer para 1 card */
    }
	
	
	.chave-container[data-items="5"] .chave-carousel-track {
        display: flex;
        width: 100% !important;
        max-width: 100% !important;
        /* Impede que um único card estique para preencher o vazio */
        justify-content: flex-start; 
    }

    .chave-container[data-items="5"] .chave-card-item {
        /* Define que o card ocupa 25% da tela, mas tem um limite máximo */
        flex: 0 0 calc(20% - 9px) !important;
        width: calc(20% - 9px) !important;
        max-width: calc(20% - 9px) !important;
        min-width: 300px; /* Evita que o card fique esmagado em telas menores */
    }

    /* Ajuste específico para quando houver APENAS 1 card no container de 4 */
    /* Isso impede o card de "Destaques" de ficar gigante se for o único */
    .chave-container[data-items="5"] .chave-card-item:only-child {
        max-width: 300px !important; /* Ou a largura ideal que você quer para 1 card */
    }	

    .chave-container:not([data-items]) .chave-card-item {
        flex: 0 0 180px;
        width: 180px;
        max-width: 180px;
    }
	
	.chave-marcas .chave-card-item {
        flex: 0 0 130px !important;
        width: 130px !important;
		max-width: 130px!important;
    }
}

/* 5. ESTADOS DE DRAG E BULLETS (SEUS ORIGINAIS) */
.chave-carousel-viewport.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.chave-carousel-viewport.dragging a {
    pointer-events: none;
}

.chave-bullets-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.chave-dot {
    width: 8px;
    height: 8px;
    background: #d1dce3;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.chave-dot.active {
    width: 24px;
    background: #D4003B;
    border-radius: 10px;
}

/* fim carrossel index */

/* Progress */
.profile-progress-card {
    padding: 30px 28px;
	min-height: 450px;
    max-height: 450px;
	border: none;
}

@media screen and (max-width: 1140px) {
	.profile-progress-card {
		margin-top: 3rem;
		margin-bottom: 1rem;
		min-height: auto;
		max-height: auto;
		border: none;
	}
}

.progress-bar {
    height: 12px;
    background: #eee7f7;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 16px;
}

.check-item .icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--success-soft);
    color: var(--success);
    font-size: 12px;
    flex-shrink: 0;
	margin: 3px;
}

.check-item.pending .icon {
    background: rgba(62, 108, 240, 0.08);
    color: var(--primary);
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary) 0%, #a252ea 100%);
}

.progress-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text);
    font-weight: 600;
}

.progress-number {
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Progress */
