/* ------------ Desenvolvido por Pitico Studio Design - julho 2022  ------------ */
/* -------------------------- www.piticostudio.com.br -------------------------- */


/* ---------------------------------------------------------- */
/* ----------------------- ITENS GERAIS ----------------------*/
/* ---------------------------------------------------------- */

/* fonts Títulos e Subtítulos */
@font-face { font-family: "Mellinda Lopez"; src: url(../fonts/mellinda-lopez.ttf) format("truetype"); font-weight: 400; }
@font-face { font-family: "Mellinda Lopez Italic"; src: url(../fonts/mellinda-lopez-italic.ttf) format("truetype"); font-weight: 400; }
/* fonts Texto corrido */
@font-face { font-family: "Titillium Web ExtraLight"; src: url(../fonts/titilliumweb-extralight.ttf) format("truetype"); font-weight: 200; }
@font-face { font-family: "Titillium Web ExtraLightItalic"; src: url(../fonts/titilliumweb-extralightitalic.ttf) format("truetype"); font-weight: 200; }
@font-face { font-family: "Titillium Web Light"; src: url(../fonts/titilliumweb-light.ttf) format("truetype"); font-weight: 300; }
@font-face { font-family: "Titillium Web LightItalic"; src: url(../fonts/titilliumweb-lightitalic.ttf) format("truetype"); font-weight: 300; }
@font-face { font-family: "Titillium Web Regular"; src: url(../fonts/titilliumweb-regular.ttf) format("truetype"); font-weight: 400; }
@font-face { font-family: "Titillium Web Italic"; src: url(../fonts/titilliumweb-italic.ttf) format("truetype"); font-weight: 400; }
@font-face { font-family: "Titillium Web SemiBold"; src: url(../fonts/titilliumweb-semibold.ttf) format("truetype"); font-weight: 600; }
@font-face { font-family: "Titillium Web SemiBoldItalic"; src: url(../fonts/titilliumweb-semibolditalic.ttf) format("truetype"); font-weight: 700; }
@font-face { font-family: "Titillium Web Bold"; src: url(../fonts/titilliumweb-bold.ttf) format("truetype"); font-weight: 700; }
@font-face { font-family: "Titillium Web Black"; src: url(../fonts/titilliumweb-black.ttf) format("truetype"); font-weight: 900; }
/* itens genéricos */
a:hover, li:hover a, p:hover a { text-decoration: none; }
li { list-style: none; }
ul { padding: 0; }
* { font-family: "Titillium Web Regular"; color: var(--fourth-color); }
/* cores */
:root { 
    /* 1ª cor padrão */
    --first-color:#942482;
    --first-color-hover:#6f1a61;
    /* 2ª cor padrão */
    --second-color:#f05075;
    --second-color-hover:#c74664;
    /* 3ª cor padrão */
    --third-color:#203c76;
    --third-color-hover:#182c55;
    /* 4ª cor padrão */
    --fourth-color:#313466;
    --fourth-color-hover:#26284b;
}
/* imagem bg index */
.mainWrapper {
    background-image: url(../images/logos/acrylicline_icone.svg);
    background-repeat: no-repeat;
    background-position: 100% 100%; 
    background-attachment: fixed;
}
/* degradês */
.degrade {
    background: rgb(148,36,130);
    background: linear-gradient(90deg, rgba(148,36,130,1) 0%, rgba(240,80,117,1) 50%, rgba(32,60,118,1) 100%);
}
/* botões */
/* botão primario */
.btn-primary {
    color: #fff;
    background-color: var(--second-color);
    border: 1px solid var(--second-color);
}  
.btn-primary:hover {
    color: #fff;
    background-color: var(--second-color-hover);
    border: 1px solid var(--second-color-hover);
    transition: all 0.5s;
}
.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background-color: var(--second-color-hover);
    border: 1px solid var(--second-color-hover);
    box-shadow: none;
}
.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: var(--second-color-hover);
    border: 1px solid var(--second-color-hover);
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--second-color-hover);
    border: 1px solid var(--second-color-hover);
}
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}
/* botão primario */
.btn-secondary {
    color: #fff;
    background-color: var(--first-color);
    border-color: var(--first-color);
}
.btn-secondary:hover {
    color: #fff;
    background-color: var(--first-color-hover);
    border-color: var(--first-color-hover);
}
.btn-secondary:focus,
.btn-secondary.focus {
    color: #fff;
    background-color: var(--first-color-hover);
    border-color: var(--first-color-hover);
    box-shadow: none
}
.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: var(--first-color-hover);
    border-color: var(--first-color-hover);
}
.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: var(--first-color-hover);
    border-color: var(--first-color-hover);
}
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}

/* títulos */
.sectionTitle { 
    text-align: center;
    display: flex;
    justify-content: center;
}
.sectionTitle h2 {
    font-family: "Mellinda Lopez";
    text-transform: lowercase;
    font-size: 2.5rem;
    letter-spacing: 0.030rem;
    color: var(--fourth-color);
    max-width: 60%;
}
.sectionTitle h2::after {
    content: "";
    height: 7px;
    display: block;
    background: linear-gradient(90deg, rgba(148,36,130,1) 0%, rgba(240,80,117,1) 50%, rgba(32,60,118,1) 100%);
    width: 100%;
    margin-top: 5px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    border-radius: 0.5rem;
}
@media(max-width: 425.98px){
    .sectionTitle h2 {
        font-size: 1.9rem;
        max-width: 100%;
    }
}
/* ---------------------------------------------------------- */
/* -------------------------- NAVBAR -------------------------*/
/* ---------------------------------------------------------- */

#navPrincipal.navbar_fixed  {
    position: fixed;
    width: 100%;
    top: -70px;
    left: 0;
    right: 0;
    transform: translateY(70px);
    transition: transform 500ms ease, background 500ms ease;
    -webkit-transition: transform 500ms ease, background 500ms ease;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 30;
}
/* .header__logo {
    width: 200px;
} */
@media(max-width:991.98px){
    .header__logo {
        width: 200px;
    }
}
.header__menu {
	text-align: right;
	padding: 0;
}
.header__menu ul li {
	list-style: none;
	display: inline-block;
	padding: 0 0.3rem;
	position: relative;
}
@media(min-width:1199.98px) {
    .header__menu ul li {
        padding: 0 0.6rem;
    }
}
.header__menu ul li.active a:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.header__menu ul li:hover a:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.header__menu ul li:last-child {
	margin-right: 0;
}
.header__menu ul li a {
	font-size: 17px;
	color: var(--fourth-color);
	display: block;
	font-weight: 600;
	position: relative;
	padding: 3px 0;
}
.header__menu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
    background: linear-gradient(90deg, rgba(240,80,117,1) 0%, rgba(148,36,130,1) 100%);
	content: "";
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

/* dropdown */
.header__menu ul li:hover .dropdown {
	top: 35px;
	opacity: 1;
	visibility: visible;
}
.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 56px;
	min-width: 160px;
	background: #f9f9f9;
	text-align: left;
	padding: 5px;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	border-radius: 0 0 0.5rem 0.5rem;
	-webkit-box-shadow: 0px 11px 20px -2px rgba(0,0,0,0.44); 
	box-shadow: 0px 11px 20px -2px rgba(0,0,0,0.44);
}
.header__menu ul li .dropdown li {
	display: block;
	margin-right: 0;
    border-radius: 0.5rem;
}
.header__menu ul li .dropdown li a {
	font-size: 14px;
	color: var(--fourth-color);
	font-weight: 400;
	padding: 3px 7px;
	text-transform: capitalize;
}
.header__menu ul li .dropdown li:hover {
    background-color: var(--fourth-color);
    border-radius: 0.5rem;
    transition: all 0.5s;
    color: #fff;
    cursor: pointer
}
.header__menu ul li .dropdown li:hover a {
    color: #fff;
    transition: all 0.5s;
}
.header__menu ul li .dropdown li a:after {
	display: none;
}
/* cat-dropdown */
.header__menu .dropdown .cat-dropdown li a {
	font-size: 14px;
	color: var(--fourth-color) !important;
	font-weight: 400;
	padding: 3px 7px;
	text-transform: capitalize;
}
.header__menu .dropdown .cat-dropdown li:hover {
    background-color: var(--fourth-color);
    border-radius: 0.5rem;
    transition: all 0.5s;
}
.header__menu .dropdown .cat-dropdown li:hover a {
    color: #fff !important;
    transition: all 0.5s;
}
.header__menu .dropdown li:hover .cat-dropdown {
	opacity: 1;
	visibility: visible;
    z-index: 11;
}
.header__menu .dropdown .cat-dropdown {
    position: absolute;
	left: 135px;
	top: 0;
	min-width: 160px;
	background: #f9f9f9;
	text-align: left;
	padding: 5px;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	border-radius: 0 0 0.5rem 0.5rem;
	-webkit-box-shadow: 0px 11px 20px -2px rgba(0,0,0,0.44); 
	box-shadow: 0px 11px 20px -2px rgba(0,0,0,0.44);
}
.header__nav__option {
	text-align: right;
	padding: 0;
    font-size: 15px;
}
.header__nav__option a {
	display: inline-block;
	margin-right: 26px;
	position: relative;
}
.header__nav__option a span {
    color: var(--fourth-color);
    font-size: 11px;
    position: absolute;
    right: -9px;
    top: -6px;
}
.header__nav__option a:last-child {
	margin-right: 0;
}
.offcanvas-menu-wrapper {
	display: none;
}
.canvas__open {
	display: none;
}
@media only screen and (max-width: 991.98px) {
	.canvas__open {
		display: block;
		font-size: 22px;
		color: #111111;
		height: 35px;
		width: 35px;
		line-height: 35px;
		text-align: center;
		border: 1px solid #111111;
		border-radius: 2px;
		cursor: pointer;
		position: absolute;
		right: 20px;
		top: 0px;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		width: 300px;
		height: 100%;
		background: #ffffff;
		padding: 50px 20px 30px 30px;
		display: block;
		z-index: 99;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
	}
	.offcanvas-menu-wrapper.active {
		opacity: 1;
		left: 0;
	}
	.offcanvas__menu {
		display: none;
	}
	.slicknav_btn {
		display: none;
	}
	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 20px;
	}
	.slicknav_nav ul {
		margin: 0 0 0 7px;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 7px 0;
		margin: 0;
		color: var(--fourth-color);
		font-weight: 600;
	}
	.slicknav_nav .slicknav_arrow {
		color: #111111;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #111111;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #111111;
	}
	.slicknav_nav {
		display: block !important;
	}
	.offcanvas__option {
		text-align: center;
		margin-bottom: 30px;
	}
	.offcanvas__links {
		display: inline-block;
		margin-right: 25px;
	}
	.offcanvas__links a {
		color: #111111;
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 2px;
		margin-right: 16px;
		display: inline-block;
		font-weight: 600;
	}
	.offcanvas__links a:last-child {
		margin-right: 0;
	}
	.offcanvas__top__hover {
		display: inline-block;
		position: relative;
	}
	.offcanvas__top__hover:hover ul {
		top: 24px;
		opacity: 1;
		visibility: visible;
	}
	.offcanvas__top__hover span {
		color: #111111;
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 2px;
		display: inline-block;
		cursor: pointer;
		font-weight: 600;
	}
	.offcanvas__top__hover span i {
		font-size: 20px;
		position: relative;
		top: 3px;
		right: 2px;
	}
	.offcanvas__top__hover ul {
		background: #111111;
		display: inline-block;
		padding: 2px 0;
		position: absolute;
		left: 0;
		top: 44px;
		opacity: 0;
		visibility: hidden;
		z-index: 3;
		-webkit-transition: all, 0.3s;
		-o-transition: all, 0.3s;
		transition: all, 0.3s;
	}
	.offcanvas__top__hover ul li {
		list-style: none;
		font-size: 13px;
		color: #ffffff;
		padding: 2px 15px;
		cursor: pointer;
	}
	.offcanvas__nav__option {
		text-align: center;
		margin-bottom: 25px;
	}
	.offcanvas__nav__option a {
		display: inline-block;
		margin-right: 26px;
		position: relative;
	}
	.offcanvas__nav__option a span {
		color: #0d0d0d;
		font-size: 11px;
		position: absolute;
	    right: -8px;
		top: -6px;
	}
	.offcanvas__nav__option a:last-child {
		margin-right: 0;
	}
	.offcanvas__nav__option .price {
		font-size: 15px;
		color: #111111;
		font-weight: 700;
		display: inline-block;
		margin-left: -20px;
		position: relative;
		top: 3px;
	}
	.offcanvas__text p {
		color: #111111;
		margin-bottom: 0;
	}
	.header__top {
		display: none;
	}
	.header .container {
		position: relative;
	}
	.header__menu {
		display: none;
	}
	.header__nav__option {
		display: none;
	}
}

/* ---------------------------------------------------------- */
/* -------------------------- NAVBAR -------------------------*/
/* ---------------------------------------------------------- */
.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #21252991;
	z-index: 99999;
}
.search-model-form {
	padding: 30px 20px 15px 20px;
    background-color: #fff;
    border-radius: 0.5rem;
}
.search-model-form h5  {
    font-size: 2.5rem;
    text-align: center;
    padding: 0;
    margin: 0 0 1rem 0;
}
.search-model-form input {
    width: 500px;
    font-size: 40px;
    border: none;
    background: 0 0;
    color: var(--fourth-color);
    line-height: 4.1rem;
    background-color: #f1f1f1;
    border-radius: 0.5rem;
    padding: 7px 15px;
    border:1px solid transparent;
}
.search-model-form input:focus {
    outline: none;
    border:1px solid var(--fourth-color);
    transition: all 0.5s;
}
.search-model-form input::placeholder {
    font-weight: 200;
    opacity: 0.7;
    color: var(--fourth-color);
} 
.search-close-switch {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 28px;
    line-height: 28px;
    top: 240px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.search-close-switch i {
	color: var(--fourth-color) !important;
}
@media(max-width:425.98px) {
    .search-model-form {
        width: 90%;
    }
    .search-model-form input {
        font-size: 18px;
        line-height: 2.7rem;
        padding: 3px 15px;
        width: 100%;
    }
    .search-model-form h5 {
        font-size: 1.8rem;
    }
}

/* ---------------------------------------------------------- */
/* ---------------------- LINHA COLORIDA ---------------------*/
/* ---------------------------------------------------------- */
.customTop {
    padding-top: 8px;
    background: rgb(148,36,130);
    background: linear-gradient(90deg, rgba(148,36,130,1) 0%, rgba(240,80,117,1) 50%, rgba(32,60,118,1) 100%);
}


/* ---------------------------------------------------------- */
/* ------------------- AREA INSTITUCIONAL --------------------*/
/* ---------------------------------------------------------- */
#institucionalArea {
    background-image: url(../images/institucional/institucional-image.png);
    background-position: center left;
    background-size: 60%;
    background-repeat: no-repeat;
    height: 450px;
    overflow: hidden;
}
#institucionalArea .institucionalBg {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 71%);
}
#institucionalArea .institucionalContent {
    height: 450px;
    display:flex;
    justify-content: center;
    align-items: center;
}
#institucionalArea .institucionalContent h1 {
    text-transform: uppercase;
    font-weight: 100;
    font-size: 3.1rem;
    line-height: 4.1rem;
    margin: 0;
}
.modal-content {
    border:1px solid transparent;
}
@media (max-width: 991.98px) {
    #institucionalArea {
        background-size: 70%;
        height: 300px;
    }
    #institucionalArea .institucionalContent {
        height: 300px;
        display:flex;
        justify-content: center;
        align-items: center;
    }
    #institucionalArea .institucionalContent h1 {
        text-transform: uppercase;
        font-weight: 100;
        text-align: center;
        font-size: 2.7rem;
        line-height: 2.5rem;
        margin: 0;
    }
}

@media (max-width: 767.98px) {
    #institucionalArea {
        background-size: 70%;
        height: 300px;
    }
    #institucionalArea .institucionalContent {
        height: 300px;
        display:flex;
        justify-content: center;
        align-items: center;
    }
    #institucionalArea .institucionalContent h1 {
        text-transform: uppercase;
        font-weight: 100;
        text-align: center;
        font-size: 1.1rem;
        line-height: 1.5rem;
        margin: 0;
    }
}
@media (min-width: 426px) and (max-width: 768px) {
    #institucionalArea .institucionalContent h1 {
        text-transform: uppercase;
        font-weight: 100;
        text-align: center;
        font-size: 2.1rem;
        line-height: 2.5rem;
        margin: 0;
    }
}

/* ---------------------------------------------------------- */
/* ------------------------- BANNER --------------------------*/
/* ---------------------------------------------------------- */
#bannerArea {
    position: relative;
    border-bottom: 1px solid #e9e9e9;
    border-top: 1px solid #e9e9e9;
}
#bannerArea .owl-nav .owl-prev i,
#bannerArea .owl-nav .owl-next i {
    color: var(--first-color);
    line-height: 0;
    font-size: 2rem;
}
#bannerArea .owl-nav .owl-prev:hover,
#bannerArea .owl-nav .owl-next:hover {
    transition: all 0.5s;
    opacity: 1;
}
#bannerArea .owl-nav .owl-prev,
#bannerArea .owl-nav .owl-next {
    opacity: 0.7;
    position: absolute;
    top: 50%;
}
#bannerArea .owl-nav .owl-prev {
    left: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 15px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
}
#bannerArea .owl-nav .owl-next {
    right: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 15px;
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

/* ---------------------------------------------------------- */
/* ------------------------ LINHAS ---------------------------*/
/* ---------------------------------------------------------- */
#linhasArea .linhaWrapper {
    border-radius: 0.7rem;
    overflow: hidden;
    position: relative;
}
#linhasArea .linhaWrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #203c76c7;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#linhasArea .linhaWrapper .overlay h4 {
    color: #fff;
}
#linhasArea .linhaWrapper:hover .overlay {
    opacity: 1;
    transition: all 0.5s;
}
#linhasArea .linhaWrapper img {
    max-width: 100%;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
#linhasArea .linhaWrapper:hover img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* ---------------------------------------------------------- */
/* ----------------------- BREADCRUMB ------------------------*/
/* ---------------------------------------------------------- */
#breadrumbArea .breadcrumb {
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    padding: 2rem 0;
}
#breadrumbArea .breadcrumb .breadcrumb-item,
#breadrumbArea .breadcrumb .breadcrumb-item a,
#breadrumbArea .breadcrumb .breadcrumb-item:before {
    color: var(--fourth-color);
}

/* ---------------------------------------------------------- */
/* -------------------- GRID DE PRODUTOS ----------------------*/
/* ---------------------------------------------------------- */
#pArea .pWrapper {
    box-shadow: 0;
    transition: 0.5s;
    border-radius: 0.7rem;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
}
#pArea .pWrapper:hover {
    -webkit-box-shadow: 0px 12px 14px -1px rgba(102,102,102,0.45); 
    box-shadow: 0px 12px 14px -1px rgba(102,102,102,0.45);
    border: 1px solid #e4e4e4;
}
#pArea .pWrapper .imgWrapper {
    overflow: hidden;
    border-radius: 0.7rem;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    border: 1px solid #dddddd;
}
#pArea .pWrapper .imgWrapper img {
    max-width: 100%;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
#pArea .pWrapper:hover img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}
#pArea .pWrapper:hover .imgWrapper{
    border-radius: 0 0 0 0;
    border: 1px solid #fff;
}
#pArea .pWrapper .infoWrapper {
    padding: 15px 0 15px 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;   
    min-height: 90px;      
} 
#pArea .pWrapper .infoWrapper h5 {
    margin-bottom: 0.2rem;
    font-size: 1.07rem;
    color:#5c5c5c;
}
#pArea .pWrapper .infoWrapper h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.25rem;
    height: 25px;
    transition: 0.5s;
}
#pArea .pWrapper .infoWrapper h3 a {
    color: #313466c2;
    font-weight: 500;
}
#pArea .pWrapper .infoWrapper:hover h3 a {
    color: #313466;
    transition: 0.5s;
}
#pArea .pWrapper:hover .infoWrapper {
    padding: 15px 15px 15px 15px;
}
#pArea .pWrapper .cartWrapper {
    opacity: 1;
    display: none;
}
#pArea .pWrapper:hover .cartWrapper {
    opacity: 1;
    transition: all 0.5s;   
    position: absolute;
    bottom: 5.3rem;
    width: 98%;
    display: block;
    transform: translate(1.2%, 0);
    animation: myAnim 0.5s ease-in-out 0s 1 reverse backwards;
}
@media(min-width: 768px) and (max-width:992px) {
    .pWrapper {
        -webkit-box-shadow: 0px 12px 14px -1px rgba(102,102,102,0.45) !important; 
        box-shadow: 0px 12px 14px -1px rgba(102,102,102,0.45) !important; 
        border: none !important; 
    }
    .pWrapper .imgWrapper {
        border: none !important;
    }
    .cartWrapper {
        opacity: 1 !important;  
        position: absolute !important; 
        bottom: 5.3rem !important; 
        width: 98% !important; 
        display: block !important; 
        transform: translate(1.2%, 0) !important; 
        animation: myAnim 0.5s ease-in-out 0s 1 reverse backwards !important; 
    }
    .infoWrapper {
        padding: 15px 15px 15px 15px !important; 
    }
    .cartWrapper .btn-primary {
        border-radius: 0.5rem 0.5rem 0 0 !important;
    }
    .cartSpinner {
        opacity: 1 !important;
        transition: all 0.5s !important;  
        position: absolute !important;
        bottom: 8rem !important;
        right: 0.25rem !important;
        width: 15% !important;
        display: block !important;
        animation: myAnim 0.5s ease-in-out 0s 1 reverse backwards !important;
    }
    .produtoSpinner {
        flex-direction: column-reverse !important;
    }
    .btn-primary i {
        color: #fff!important;
    }
    .produtoSpinner input {
        min-width: 2.5rem !important;
        border-top: 1px solid var(--second-color) !important;
        border-bottom: 1px solid var(--second-color) !important;
        width: 100% !important;
        padding: 0 !important;
        font-size: 0.9rem !important;
    }
    .produtoSpinner input:focus {
        box-shadow: none!important;
        border:1px solid #fff!important;
    }
    .produtoSpinner button {
        padding: 0!important;
        background-color: var(--second-color)!important;
    }
    .produtoSpinner button i {
        color: #fff !important;
    }
    .produtoSpinner button {
        background-color: var(--second-color-hover);
        transition: all 0.5s;
    }
    .produtoSpinner .btn-decrement {
        border-radius: 0 0 0.5rem 0.5rem!important;
    } 
    .produtoSpinner .btn-increment { 
        border-radius: 0.5rem 0.5rem  0 0 !important;
    } 
    #indProdArea .info-wtpp {
        padding: 0.7rem 0rem !important;
    }
    #indProdArea .indProd-cart-wrapper .produtoSpinner input {
        height: calc(1.5em + 1rem + 2px) !important;
    }
    #indProdArea .indProd-cart-wrapper .produtoSpinner {
        flex-wrap: nowrap;
        flex-direction: row !important;
    }
    #indProdArea .indProd-cart-wrapper .produtoSpinner .btn-decrement {
        border-radius: 0.5rem 0 0 0.5rem !important;
    }
    #indProdArea .indProd-cart-wrapper .produtoSpinner .btn-increment {
        border-radius:  0 0.5rem 0.5rem 0 !important;
    }
}
@media(max-width: 767.98px) {
    .pWrapper {
        -webkit-box-shadow: 0px 12px 14px -1px rgba(102,102,102,0.45) !important; 
        box-shadow: 0px 12px 14px -1px rgba(102,102,102,0.45) !important; 
        border: none !important; 
    }
    .pWrapper .imgWrapper {
        border: none !important;
    }
    .cartWrapper {
        opacity: 1 !important;  
        position: absolute !important; 
        bottom: 5.3rem !important; 
        width: 98% !important; 
        display: block !important; 
        transform: translate(1.2%, 0) !important; 
        animation: myAnim 0.5s ease-in-out 0s 1 reverse backwards !important; 
    }
    .infoWrapper {
        padding: 15px 15px 15px 15px !important; 
    }
    .cartWrapper .btn-primary {
        border-radius: 0.5rem 0.5rem 0 0 !important;
    }
    .cartSpinner {
        opacity: 1 !important;
        transition: all 0.5s !important;  
        position: absolute !important;
        bottom: 8rem !important;
        right: 0.25rem !important;
        width: 15% !important;
        display: block !important;
        animation: myAnim 0.5s ease-in-out 0s 1 reverse backwards !important;
    }
    .produtoSpinner {
        flex-direction: column-reverse !important;
    }
    .btn-primary i {
        color: #fff!important;
    }
    .produtoSpinner input {
        min-width: 2.5rem !important;
        border-top: 1px solid var(--second-color) !important;
        border-bottom: 1px solid var(--second-color) !important;
        width: 100% !important;
        padding: 0 !important;
        font-size: 0.9rem !important;
    }
    .produtoSpinner input:focus {
        box-shadow: none!important;
        border:1px solid #fff!important;
    }
    .produtoSpinner button {
        padding: 0!important;
        background-color: var(--second-color)!important;
    }
    .produtoSpinner button i {
        color: #fff !important;
    }
    .produtoSpinner button {
        background-color: var(--second-color-hover);
        transition: all 0.5s;
    }
    .produtoSpinner .btn-decrement {
        border-radius: 0 0 0.5rem 0.5rem!important;
    } 
    .produtoSpinner .btn-increment { 
        border-radius: 0.5rem 0.5rem  0 0 !important;
    } 
    #indProdArea .info-wtpp {
        padding: 0.7rem 0rem !important;
    }
    #indProdArea .indProd-cart-wrapper .produtoSpinner input {
        height: calc(1.5em + 1rem + 2px) !important;
    }
    #indProdArea .indProd-cart-wrapper .produtoSpinner {
        flex-wrap: nowrap;
        flex-direction: row !important;
    }
    #indProdArea .indProd-cart-wrapper .produtoSpinner .btn-decrement {
        border-radius: 0.5rem 0 0 0.5rem !important;
    }
    #indProdArea .indProd-cart-wrapper .produtoSpinner .btn-increment {
        border-radius:  0 0.5rem 0.5rem 0 !important;
    }

}
#pArea .pWrapper:hover .cartWrapper .btn-primary {
    border-radius: 0.5rem 0.5rem 0 0 ;
}
#pArea .pWrapper:hover .cartWrapper .btn-primary i {
    color: #fff;
}
#pArea .pWrapper .cartSpinner {
    opacity: 0;
    display: none;
}
#pArea .pWrapper:hover .cartSpinner {
    opacity: 1;
    transition: all 0.5s;   
    position: absolute;
    bottom: 8rem;
    right: 0.25rem;
    width: 15%;
    display: block;
    animation: myAnim 0.5s ease-in-out 0s 1 reverse backwards;
}
#pArea .pWrapper:hover .cartSpinner .produtoSpinner {
    flex-direction: column-reverse;
}
#pArea .pWrapper:hover .cartSpinner .produtoSpinner input {
    min-width: 2.5rem;
    border-top: 1px solid var(--second-color);
    border-bottom: 1px solid var(--second-color);
    width: 100% !important;
    padding: 0;
    font-size: 0.9rem;
}
#pArea .pWrapper:hover .cartSpinner .produtoSpinner input:focus {
    box-shadow: none;
    border:1px solid #fff;
}
#pArea .pWrapper:hover .cartSpinner .produtoSpinner button {
    padding: 0;
    background-color: var(--second-color);
} 
#pArea .pWrapper:hover .cartSpinner .produtoSpinner button i {
    color: #fff !important;
}
#pArea .pWrapper:hover .cartSpinner .produtoSpinner button:hover {
    background-color: var(--second-color-hover);
    transition: all 0.5s;
}
#pArea .pWrapper:hover .cartSpinner .produtoSpinner .btn-decrement {
    border-radius: 0 0 0.5rem 0.5rem;
} 
#pArea .pWrapper:hover .cartSpinner .produtoSpinner .btn-increment { 
    border-radius: 0.5rem 0.5rem 0 0;
} 
@keyframes myAnim {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
#pArea .lateralContent {
    background-color:#f8f9fa;
    border-radius: 0 0.7rem 0.7rem 0;
    min-height: 105vh;
    padding: 1.5rem;
}
#pArea .lateralContent h6 {
    margin-bottom: 0.35rem;
} 
#pArea .lateralContent h6 i {
    /* border:1px solid red; */
    font-size: 0.8rem;
}
#pArea .lateralContent h6 a {
    color: #313466;
    font-size: 0.8rem;
    font-weight: 600;
}
#pArea .lateralContent h6:hover a {
    color: var(--first-color-hover);
    transition: all 0.5s;
}

/* ---------------------------------------------------------- */
/* ------------------ PRODUTO INDIVIDUAL ---------------------*/
/* ---------------------------------------------------------- */
#indProdArea .indProd-img-wrapper {
    border-radius: 0.7rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dddddd;
}
#indProdArea .indProd-img-wrapper img {
    width: 100%
}
#indProdArea .indProd-img-wrapper .imG:hover {
    cursor: zoom-in;
}
#indProdArea .indProd-info-wrapper h2 {
    font-weight: 600;
}
#indProdArea .indProd-info-wrapper h4 {
    margin: 0;
    font-size: 1.3rem;
}
#indProdArea .indProd-cart-wrapper {
    display: flex;
    justify-content: space-between;
}
#indProdArea .indProd-cart-wrapper .produtoSpinner {
    width: 47%;
}
#indProdArea .indProd-cart-wrapper .produtoSpinner button {
    background-color: var(--second-color);
    color: #fff;
}
#indProdArea .indProd-cart-wrapper .produtoSpinner button i {
    color: #fff !important;
}
#indProdArea .indProd-cart-wrapper .produtoSpinner button:hover {
    background-color: var(--second-color-hover);
    transition: all 0.5s;
}
#indProdArea .indProd-cart-wrapper .produtoSpinner button:focus,
#indProdArea .indProd-cart-wrapper .produtoSpinner input:focus {
    box-shadow: none;
}
#indProdArea .indProd-cart-wrapper .produtoSpinner input:focus {
    border:1px solid #ced4da;
}
#indProdArea .indProd-cart-wrapper .produtoSpinner .btn-decrement {
    border-radius: 0.5rem 0 0 0.5rem;
} 
#indProdArea .indProd-cart-wrapper .produtoSpinner .btn-increment { 
    border-radius: 0 0.5rem 0.5rem 0;
} 
#indProdArea .indProd-cart-wrapper .btn-primary {
    width: 47%;
    border-radius: 0.5rem;
}
#indProdArea .indProd-cart-wrapper .btn-primary i {
    color: #fff !important;
}
#indProdArea .info-wtpp {
    border: 1px solid var(--first-color);
    background-color: var(--first-color);
    padding: 0.7rem 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    line-height: 0;
    vertical-align: middle;
    justify-content: center;
    font-size: 1.17rem;
    color: #fff;
}
#indProdArea .info-wtpp i {
    margin-right: 0.5rem;
    font-size: 0.95rem;
    color: #fff !important;
}
#indProdArea .info-wtpp:hover {
    border: 1px solid var(--first-color-hover);
    background-color: var(--first-color-hover);
    transition: all 0.5s;
}
#indProdArea .indProd-thumb-wrapper h4 {
    margin-bottom: 0.9rem;
}
#indProdArea .indProd-thumb-wrapper .indProd-thumb-content {
    display: flex;
}
#indProdArea .indProd-thumb-wrapper .item-thumb {
    border-radius: 0.5rem;
    overflow: hidden;
    width: 25%;
    margin-right: 0.5rem;
    border:1px solid #ced4da;
}
#indProdArea .indProd-thumb-wrapper .item-thumb:hover {
    cursor: pointer;
    border: 1px solid var(--first-color);
    transition: all 0.5s;
}
#indProdArea .indProd-thumb-wrapper .item-thumb:last-child {
    margin-right: 0;
}
#indProdArea .indProdColors {
    margin: 1.7rem 0;
    display: flex;
    align-items: center;
    vertical-align: middle;
}
#indProdArea .indProdColors p {
    margin-bottom: 0;
    margin-right: 1rem;
}
#indProdArea .indProdColors span {
    padding: 0px 12px;
    margin-right: 11px;
    border-radius: 30%;
    line-height: 0;
    height: 25px;
    width: 25px;
}

/* ---------------------------------------------------------- */
/* --------------------- SOCIAL MÍDIA ------------------------*/
/* ---------------------------------------------------------- */
#instafeed .item {
    height: 275px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.4rem;
    border: 1px solid #ededed;
}
#instafeed .item img {
    min-width: 350px;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}
#instafeed .item:hover img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* ---------------------------------------------------------- */
/* --------------------- CATALOGO AREA -----------------------*/
/* ---------------------------------------------------------- */
#catalogoArea .form-group {
    margin: 0;
}
#catalogoArea .form-control {
    border-radius: 0.5rem;
    margin: 0;
    padding: 0.375rem 1.2rem;
    height: calc(2.1rem + 0.75rem + 2px);
    position: relative;
}
#catalogoArea .form-control::placeholder {
    color: #b7b7b7;
}
#catalogoArea .form-control:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}
#catalogoArea .form-group button {
    border-radius: 0 0.5rem 0.5rem 0;
    position: absolute;
    top: 4px;
    right: 4px;
    height: calc(2.1rem + 0.75rem + 2px);
}
@media(max-width: 425.98px){
    #catalogoArea h3 {
        font-size: 1.35rem;
    }
}
@media(min-width:426px) and (max-width: 991.98px){
    #catalogoArea h3 {
        font-size: 1.6rem;
    }
}

/* ---------------------------------------------------------- */
/* ------------------------ CONTATO --------------------------*/
/* ---------------------------------------------------------- */
#contatoArea .sendWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#contatoArea .sendWrapper i {
    color: #fff !important;
}
@media(max-width: 991.98px) {
    #contatoArea .sendWrapper {
        flex-direction: column;
    }
    #contatoArea .sendWrapper button {
        margin-top: 13px;
        width: 100%;
    }
}
#contatoArea .contatoContent h5 {
    margin:0;
}
#contatoArea .contatoContent p a {
    color: var(--fourth-color);
}
#contatoArea .form-group {
    margin: 0;
}
#contatoArea .form-control:not(textarea) {
    height: calc(2.1rem + 0.75rem + 2px);
}
#contatoArea textarea,
#contatoArea .form-control {
    padding: 0.375rem 1.2rem;
    border-radius: 0.5rem;
    resize: none;
}
#contatoArea .form-control::placeholder {
    color: #b7b7b7;
}
#contatoArea .form-control:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}
#contatoArea button {
    border-radius: 0.5rem;
    height: calc(2.1rem + 0.75rem + 2px);
    min-width: 20%;
}
.bootstrap-filestyle input {
    padding: 0 !important;
    border-bottom: 0 !important;
    width: 100% !important;
}
.bootstrap-filestyle {
    flex-direction: column-reverse !important; 
}
.bootstrap-filestyle label {
    background-color: var(--second-color) !important;
    font-size: 16px !important;
    padding: 12px 60px !important;
    cursor: pointer !important;
    font-weight: 200 !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    height: calc(2.1rem + 0.75rem + 2px);
}
.bootstrap-filestyle .icon-span-filestyle,
.bootstrap-filestyle .buttonText {
    color: #fff;
}
.bootstrap-filestyle label:hover {
    background-color: var(--second-color-hover) !important;
    border-color:  var(--second-color-hover)!important;
}
.bootstrap-filestyle label:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5) !important; 
}
.bootstrap-filestyle label:disabled {
    background-color: var(--second-color-hover) !important; 
    border-color: var(--second-color-hover) !important;
}
.bootstrap-filestyle .input-group-btn:not(:first-child) > .btn {
    border-radius: 0.5rem !important;
}

/* ---------------------------------------------------------- */
/* ----------------------- CARRINHO --------------------------*/
/* ---------------------------------------------------------- */
#cartArea .cartBody .cartCol,
#cartArea .cartTop .cartCol {
    display: flex;
    align-items: center;
    justify-content: center;
}  
#cartArea .cartBody .cartCol h5,
#cartArea .cartTop .cartCol p {
    margin-bottom: 0;
}
#cartArea .cartTop {
    background-color: var(--second-color);
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}
#cartArea .cartTop .cartCol:nth-child(2) {
    border-left: 1px solid #fff;
}
#cartArea .cartTop .cartCol {
    min-height: 60px;
}
#cartArea .cartTop .cartCol p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}
#cartArea .cartBody {
    border-left: 1px solid rgb(210, 210, 210);
    border-right: 1px solid rgb(210, 210, 210);
    border-bottom: 1px solid rgb(210, 210, 210);
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}
#cartArea .cartBody .cartRow {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgb(210, 210, 210);
}
#cartArea .cartBody .cartRow:last-child {
    border: none;
}
#cartArea .cartBody .cartCol .linha {
    width: 85%;
}
#cartArea .cartBody .cartCol {
    position: relative;
}
#cartArea .cartBody .cartCol a i {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: var(--third-color);
}
#cartArea .cartBody .cartCol a:hover i {
    color:var(--third-color-hover);
    transition: all 0.5s;
}
#cartArea .cartBody .cartCol h5 a {
    font-size: 1.2rem;
    color: var(--third-color);
}
#cartArea .cartBody .cartCol img {
    width: 50%;
    border:1px solid rgb(210, 210, 210);
    border-radius: 0.25rem;
}
#cartArea .cartBody .cartCol .produtoSpinner input:focus {
    box-shadow: none;
}
#cartArea .cartBody .cartCol .produtoSpinner button {
    padding: 0;
    background-color: var(--second-color);
}
#cartArea .cartBody .cartCol .produtoSpinner button i {
    color: #fff !important;
}
#cartArea .cartBody .cartCol .produtoSpinner button:hover {
    background-color: var(--second-color-hover);
    transition: all 0.5s;
}
#cartArea .cartBody .cartCol .produtoSpinner .btn-decrement {
    border-radius: 0.5rem 0 0 0.5rem;
} 
#cartArea .cartBody .cartCol .produtoSpinner .btn-increment { 
    border-radius: 0 0.5rem 0.5rem 0;
} 

@media(min-width: 1199.98px) {
    #cartArea .cartBody .cartCol .linha {
        width: 75%;
    }
}
@media(max-width: 1199.98px) {
    #cartArea .cartBody .cartCol img {
        width: 85%;
    }
}
@media(max-width: 767.98px) {
    #cartArea .cartBody .cartCol .produtoSpinner {
        margin-top: 10px;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row !important;
    }
    #cartArea .cartBody .cartCol .produtoSpinner input {
        border-top:1px solid #ced4da !important;
        border-bottom:1px solid #ced4da !important;
    }
    #cartArea .cartBody .cartCol .produtoSpinner .btn-increment {
        border-radius: 0 0.5rem 0.5rem 0 !important;
    }
    #cartArea .cartBody .cartCol .produtoSpinner .btn-decrement {
        border-radius:  0.5rem 0 0 0.5rem  !important;
    }
    #cartArea .warningCart h2 {
        font-size: 1.5rem;  
    }
    #cartArea .warningCart h5 {
        font-size: 0.85rem;
    }

}
@media(max-width: 375px) {
    #cartArea .cartBody .cartCol {
        display: flex;
        align-items: start;
    }
    #cartArea .cartTop,
    #cartArea .cartBody {
        padding: 0;
    }
    #cartArea .cartTop .cartCol p {
        font-size: 1rem;
    }
    #cartArea .cartBody .cartCol h5 {
        line-height: 0.90rem;
        margin-bottom: 10px;
    }
    #cartArea .cartBody .cartCol h5 a {
        font-size: 1rem;
    }
    #cartArea .cartBody .cartCol a i {
        position: absolute;
        top: 7px;
        right: 3px;
        font-size: 1rem;
    }
    #cartArea .warningCart h2 {
        font-size: 1.2rem;  
    }
    #cartArea .cartBody .cartCol .produtoSpinner {
        margin-top: 10px;
        display: flex !important;
        flex-wrap: inherit !important;
    }
    #cartArea .cartBody .cartCol .produtoSpinner {
        margin-top: 10px;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row !important;
    }
    #cartArea .cartBody .cartCol .produtoSpinner input {
        border-top:1px solid #ced4da !important;
        border-bottom:1px solid #ced4da !important;
    }
    #cartArea .cartBody .cartCol .produtoSpinner .btn-increment {
        border-radius: 0 0.5rem 0.5rem 0 !important;
    }
    #cartArea .cartBody .cartCol .produtoSpinner .btn-decrement {
        border-radius:  0.5rem 0 0 0.5rem  !important;
    }
}
#cartArea .ajaxbox {
    display: contents;
}
#cartArea .cartEnd {
    margin-top: 60px;
}
#cartArea .cartEnd .form-group {
    margin: 0;
}
#cartArea .cartEnd .form-control:focus {
    box-shadow: none;
    border:1px solid var(--second-color);
}
#cartArea .cartEnd .btn-primary,
#cartArea .cartEnd .form-control {
    height: calc(2.1rem + 0.75rem + 2px);
    padding: 0.375rem 1.2rem;
    border-radius: 0.5rem;
}
.cartEnd input[type="password"] {
    position: relative;
 }
.cartEnd .fa-eye-slash,
.cartEnd .fa-eye {
    position: absolute;
    top: 20px;
    right: 20px;
    color: gray;
    cursor: pointer;
}

/* ---------------------------------------------------------- */
/* -------------- REPRESENTANTES/ONDECOMPRAR -----------------*/
/* ---------------------------------------------------------- */
#loginArea .loginWrapper {
    border:1px solid #f1f1f1;
    border-radius: 0.5rem;
    padding: 3rem;
    background-color: #f8f9fa;
}
#loginArea .loginWrapper .form-control {
    border-radius: 0.5rem;
    padding: 0.375rem 1.2rem;
    height: calc(2.1rem + 0.75rem + 2px);
}
#loginArea .loginWrapper .form-control::placeholder {
    color: #b7b7b7;
}
#loginArea .loginWrapper .form-control:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}
#loginArea .loginWrapper  .form-group {
    position: relative;
}
#loginArea .loginWrapper .fa-eye-slash,
#loginArea .loginWrapper .fa-eye {
    position: absolute;
    top: 16px;
    right: 20px;
    color: gray;
    cursor: pointer;
}
#loginArea .loginWrapper button {
    border-radius: 0.5rem;
    padding: 0.375rem 1.2rem;
    height: calc(2.1rem + 0.75rem + 2px);
}


/* ---------------------------------------------------------- */
/* -------------- REPRESENTANTES/ONDECOMPRAR -----------------*/
/* ---------------------------------------------------------- */
#representantes {
    margin: 2rem 0;
}
#representantes .form-control {
    height: calc(2.1rem + 0.75rem + 2px);
}
#representantes .form-control {
    padding: 0.375rem 1.2rem;
    border-radius: 0.5rem;
}
#representantes .form-control::placeholder {
    color: #b7b7b7;
}
#representantes .form-control:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}
#ondeComprarArea .lojaWrapper,
#representanteArea .representanteWrapper {
    border: 1px solid #efefef;
    padding: 1rem;
    border-radius: 0.4rem;
    -webkit-box-shadow: 0px 12px 14px -1px rgba(102,102,102,0.45); 
    box-shadow: 0px 12px 14px -1px rgba(102,102,102,0.45); 
    min-height: 25vh;
    overflow: hidden;
}
#ondeComprarArea .lojaWrapper h6,
#representanteArea .representanteWrapper h6 {
    margin:0;
    display: block;
    width: 100%;
    text-transform: capitalize;
}
#ondeComprarArea .infoContent .titulo,
#representanteArea .infoContent .titulo {
    min-height: 7vh;
    display: flex;
    align-items: center;
    background-color:#ededed;
    border-radius: 0.4rem 0.4rem 0 0;
    padding: 0 0.5rem;
    margin-bottom: 0.4rem;
}
#ondeComprarArea .infoContent .contato .endereco {
    min-height: 50px;
}
#ondeComprarArea .infoContent .contato .estado {
    text-transform: uppercase !important;
}
#ondeComprarArea .infoContent .contato hr {
    margin-top: 0.25rem;
    margin-bottom: 0.45rem;
    border: 0;
    border-top: 1px solid #afafaf;
}
#ondeComprarArea .infoContent .contato p,
#representanteArea .infoContent .contato p {
    margin-bottom: 0.015rem;
    text-transform: capitalize !important;
}
#ondeComprarArea .form-group {
    position: relative;
}
#ondeComprarArea .form-control {
    margin: 0;
    padding: 0.375rem 1.2rem;
    height: calc(2.1rem + 0.75rem + 2px);
    border-radius: 0.5rem;
}

/* -- ONDECOMPRAR -- */
#ondeComprarArea .form-control::placeholder {
    color: #b7b7b7;
    font-weight: 100;
}
#ondeComprarArea .form-control:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}
#ondeComprarArea button {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 15%;
    border-radius: 0 0.5rem 0.5rem 0;
    height: calc(2.1rem + 0.75rem + 2px);
}

/* ---------------------------------------------------------- */
/* ------------------------- BLOG ----------------------------*/
/* ---------------------------------------------------------- */
#blogArea .postContent {
    border: 1px solid #efefef;
    padding: 1rem;
    border-radius: 0.4rem;
    -webkit-box-shadow: 0px 12px 14px -1px rgba(102,102,102,0.45); 
    box-shadow: 0px 12px 14px -1px rgba(102,102,102,0.45); 
    min-height: 400px;
    overflow: hidden;
}
#blogArea .postContent .postTitle {
    min-height: 2.5rem;
}
#blogArea .postContent .postTitle h6 {
    margin-bottom: 0;
}
#blogArea .postContent .postImg {
    overflow: hidden;
    max-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#blogArea .postContent .postImg .overlayPost {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #203c76c7;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#blogArea .postContent .postImg .overlayPost i {
    color: #fff;
    font-size: 1.8rem;
}
#blogArea .postContent .postImg:hover .overlayPost {
    opacity: 1;
    transition: all 0.5s;
}
#blogArea .postContent .postImg img {
    width: 100%;
}
#blogArea .postContent .postSummary {
   text-align: justify;
   min-height: 70px;
}
#blogArea .postContent .postSummary  a p {
    line-height: 1.2rem;
}
#blogArea .postContent .btn-primary {
    border-radius: 0.5rem;
}
#blogArea .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 1.3rem;
    margin-left: -1px;
    line-height: 0;
    color: #fff;
    background-color:#203c76;
    border: 1px solid #fff;
    height: 3rem;
    display: flex;
    align-items: center;
}
#blogArea .page-link span {
    color: #fff;
}
#blogArea .page-link:hover {
    color: #fff;
    background-color:#182c55;
    border: 1px solid  #fff;
    transition: all 0.5s;
}

/* ---------------------------------------------------------- */
/* ---------------------- ÁREA PEDIDOS -----------------------*/
/* ---------------------------------------------------------- */
#pedidoArea .cabecalhoPedido,
#pedidoArea .cabecalho {
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 0.75rem  0.95rem;
    background-color: #f8f9fa;
}
#pedidoArea .cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#pedidoArea .capsula {
    padding: 0.75rem 0 0 0.95rem;
}
#pedidoArea .entrepriseInfo {
    margin: 0.75rem 0 0 0;
}
#pedidoArea .entrepriseInfo li {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 0.95rem  0.95rem;
}
#pedidoArea .entrepriseInfo li:not(li:last-child) {
    margin-bottom: 0.45rem;
}
#pedidoArea .corpoPedido {
    border:1px solid #f1f1f1;
}
#pedidoArea .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 1.3rem;
    margin-left: -1px;
    line-height: 0;
    color: #fff;
    background-color:#203c76;
    border: 1px solid #fff;
    height: 3rem;
    display: flex;
    align-items: center;
}
#pedidoArea .page-link span {
    color: #fff;
}
#pedidoArea .page-link:hover {
    color: #fff;
    background-color:#182c55;
    border: 1px solid  #fff;
    transition: all 0.5s;
}
        
#pedidoArea .form-control {
    border-radius: 0.5rem;
    padding: 0.375rem 1.2rem;
    height: calc(2.1rem + 0.75rem + 2px);
}
#pedidoArea .form-control::placeholder {
    color: #b7b7b7;
}
#pedidoArea .form-control:focus {
    box-shadow: none;
    border: 1px solid #ced4da;
}
#pedidoArea .form-group {
    position: relative;
}
#pedidoArea .fa-eye-slash,
#pedidoArea .fa-eye {
    position: absolute;
    top: 16px;
    right: 20px;
    color: gray;
    cursor: pointer;
}
#pedidoArea form button {
    border-radius: 0.5rem;
    padding: 0.375rem 1.2rem;
    height: calc(2.1rem + 0.75rem + 2px);
}


/* ---------------------------------------------------------- */
/* ---------------------- POST BLOG --------------------------*/
/* ---------------------------------------------------------- */
#postBlog .lateralMenu {
    padding: 1.8rem;
    background-color: #efefef;
    border-radius: 0.7rem;
    min-height: 80vh;
}
#postBlog .lateralMenu ul li a {
    color: #313466;
}
#postBlog .lateralMenu ul {
    margin: 0;
}
#postBlog .lateralMenu ul li:after {
    content:" ";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #b9b9b9;
    margin-top: 5px;
    margin-bottom: 10px;
}
#postBlog .lateralMenu ul li:last-child:after {
    height: 0px;
}
#postBlog .postContent {
    border: 1px solid #efefef;
    padding: 1.5rem;
    border-radius: 0.7rem 0.7rem 0 0;
}
#postBlog .postContent .titlePostWrapper h4 {
    margin: 0;
}
#postBlog .postContent .imgPostWrapper {
    overflow: hidden;
    max-height: 385px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 1rem 0;
}
#postBlog .postContent .imgPostWrapper img {
    width: 100%;
}
#postBlog .blogNavWrapper {
    border: 1px solid #efefef;
    padding: 1.5rem;
    border-radius:0 0 0.7rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#postBlog .blogNavWrapper .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-size: 14px;
    font-weight: 100;
    min-width: 134px;
    letter-spacing: 0.05rem;
}
#postBlog .blogNavWrapper .btn-primary i {
    color: #fff;
}


/* ---------------------------------------------------------- */
/* ----------------------- EVENTOS ---------------------------*/
/* ---------------------------------------------------------- */
#eventosArea .eventoContent {
    overflow: hidden;
    max-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 0.7rem;
    border: 1px solid #ebebeb;
}
#eventosArea .eventoContent img {
    width: 100%;
}
#eventosArea .eventoContent .overlayEvento {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #203c76c7;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#eventosArea .eventoContent .overlayEvento i {
    font-size: 1.9rem;
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    border:6px solid #fff;
}
#eventosArea .eventoContent:hover .overlayEvento {
    opacity: 1;
    transition: all 0.5s;
}
#eventosArea .eventosAviso {
    background-color: #313466;
    padding: 3rem;
    border-radius: 0.7rem;
    text-align: center;
}
#eventosArea .eventosAviso h4 {
    color: #fff;
    margin: 0;
}

/* ---------------------------------------------------------- */
/* -------------------------- 404 ----------------------------*/
/* ---------------------------------------------------------- */
#QzQ .qzqWrapper {
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#QzQ .qzqWrapper h1 {
    font-size: 9rem;
    margin: 0;
}
#QzQ .qzqWrapper a {
    color: #942482;
}

/* ---------------------------------------------------------- */
/* ------------------------ FOOTER ---------------------------*/
/* ---------------------------------------------------------- */
.wtppBtn {
    background-color: green;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 100px;
    right: 100px;
    border-radius: 50%;
    -webkit-box-shadow: 0px 19px 34px -4px rgba(0,0,0,0.41); 
    box-shadow: 0px 19px 34px -4px rgba(0,0,0,0.41);
    z-index: 5;
}
.wtppBtn:hover {
    background-color: #015201;
    transition: all 0.5s;
    box-shadow: none;
}
.wtppBtn i {
    font-size: 2.5rem;
    color: #fff;
}
.warningCart {
    background-color: var(--third-color);
    padding: 30px;
    border-radius: 0.5rem;
    text-align: center;
}
.warningCart h2 {
    font-weight: 600;
    margin-bottom: 1.3rem;
    letter-spacing: 1px;
}
.warningCart h2,
.warningCart h5,
.warningCart a {
    color: #fff;
}
.warningCart a {
    text-transform: uppercase;
}
.warningCart a:hover {
    opacity: 0.5;
    transition: all 0.5s;
}
#areaFooter {
    background-color: var(--third-color);
}
#areaFooter p,
#areaFooter a,
#areaFooter h5,
#areaFooter ul,
#areaFooter ul li {
    margin: 0;
}
#areaFooter p,
#areaFooter a,
#areaFooter h5,
#areaFooter ul,
#areaFooter ul li,
#areaFooter p a,
#areaFooter a i,
#areaFooter ul li a {
    color: #ffffff85;
}
#areaFooter p a img {
    opacity: 0.6;
}
#areaFooter .brand {
    display: flex;
    align-items: center;
    justify-content: end;
}
#areaFooter h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1rem;
    letter-spacing: 0.1rem;
}
#areaFooter ul li i {
    color: #fff !important;
    font-size: 0.8rem;
    margin-right: 0.3rem;
}
#areaFooter a:hover i,
#areaFooter a:hover p,
#areaFooter li:hover a {
    color: #fff;
    transition: 0.5s;
}
#areaFooter .newsletter p {
    line-height: 1.2rem;
    font-size: 0.9rem;
}
#areaFooter .newsletter .form-group {
    margin-bottom: 0;
}
#areaFooter .newsletter .form-group .form-control {
    border-radius: 0;
    background-color: transparent;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid #ffffff85;
    padding: 0.35rem 0;
    color: #ffffff85;
    font-weight: 200;
}
#areaFooter .newsletter .form-group .form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid #fff;
    transition: all 0.5s;
    color: #fff;
}
#areaFooter .newsletter .form-group .form-control::placeholder {
    color: #ffffff85;
}
#areaFooter .newsletter .btn-primary:focus {
    box-shadow: none;
}
#areaFooter .newsletter .btn-primary {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    color: #ffffff85;
    position: absolute;
    right: 0;
    bottom: 5px;
    height: 100%;
    padding: 5px 15px;
}
#areaFooter .newsletter .btn-primary:hover {
    color: #fff;
}


/* ---------------------------------------------------------- */
/* ----------------------- BOX COOKIES -----------------------*/
/* ---------------------------------------------------------- */


.box-cookies.hide {
    display: none !important;
}
.box-cookies {
    z-index: 998;
    width: 380px;
    min-height: 20px;
    padding:30px;
    background: #e9e9e9;
    position: fixed;
    overflow: hidden;
    bottom: 65px;
    right: 65px;
    border-radius: 10px;
}
.box-cookies .btn-cookies {
    font-size: 15px;
    text-transform: uppercase;
}
.box-cookies p {
    margin:0;
    padding:0;
    color: #000;
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 10px;
}
.box-cookies a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}
.box-cookies a:hover {
    color: var(--first-color);
    cursor: pointer;
}
.box-cookies .btn-cookies {
    color:#fff;
    border:none;
    display:inline-block;
    font-family:OpenSans,arial,sans-serif;
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-top:25px;
    background: var(--first-color);
    border:2px solid var(--first-color);
    box-sizing:border-box;
    padding:15px 24px;
    text-align:center;
    transition:background .3s;
    border-radius: 7px;
    width: 100%;
}
.box-cookies .btn-cookies:hover {
    cursor:pointer;
    color: var(--first-color-hover);
    border: 2px solid var(--first-color-hover);
    background: transparent;
    transition: all 0.5s;
}
@media screen and (max-width: 600px) {
    .box-cookies {
        flex-direction: column;
        width: 100%;
        bottom: 0px;
        right: 0px;
    }
}

/* ---------------------------------------------------------- */
/* ---------------------- AJUSTE NOVO SM ---------------------*/
/* ---------------------------------------------------------- */
.social-wrapper {
    max-height: 57vh;
    overflow: hidden;
}
@media(max-width:1199px){
    .social-wrapper {
        max-height: 61vh;
        overflow: hidden;
    }
}
@media(max-width:991.98px){
    .social-wrapper {
        max-height: 48vh;
        overflow: hidden;
    }
}
@media(max-width:767.98px){ 
    .social-wrapper {
        max-height: 37vh;
        overflow: hidden;
    }
}
@media(max-width:575.98px){ 
    .social-wrapper {
        max-height: 35vh;
        overflow: hidden;
    }
}
@media(max-width:575.98px){
    .social-wrapper {
        max-height: 27vh;
        overflow: hidden;
    }
}
@media(max-width:375.98px){
    .social-wrapper {
        max-height: 24vh;
        overflow: hidden;
    }
}


.identity-wrapper {
    background-color: #f8f9fa !important;
    padding: 2em 1.5rem;
    border-radius: 0.5rem;
}
.identity-wrapper h3 a {
    color: var(--first-color);
}
.identity-wrapper h3 a:hover {
    color: var(--first-color-hover);
    transition: all 0.5rem;
}


.mvs-wrapper {
    background-color: #f8f9fa !important;
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 15vh;
}
.mvs-icon {
    width: 110px;
    overflow: hidden;
    margin: 1.5rem;
    border-radius: 0.5rem;
}
.mvs-icon img {
    width: 100%;
}
.mvs-content {
    width: 80%;
}
.mvs-content p {
    margin:0;
}
@media(max-width: 767.98px){
    .mvs-icon {
        display: none;
    }
}


/* ajustes */
.err_busca h1 {
    margin: 0;
    padding: 3.5rem 0;
}
.err_busca::before,
.err_busca::after {
    content: '';
    display: block;
    height: 2px;
    background-color: var(--fourth-color);
}