@import url('https://fonts.googleapis.com/css2?family=Dosis');

:root {
	--theme-color: #FEC345;
	--theme-font: 'Dosis';
}

body {
	background: #F6F3EA;
	font-family: var(--theme-font);
}

/* Telefones em paisagem e abaixo */
@media (max-width: 480px) {
	.menu-desktop {
		display: none;
	}
}

/* Telefones em paisagem a tablet em retrato */
@media (max-width: 768px) {
	.menu-desktop {
		display: none;
	}
}

/* Tablet em retrato a paisagem e desktop */
@media (min-width: 768px) and (max-width: 1200px) {
	.menu-desktop {
		display: block;
	}

	.menu-mobile {
		display: none;
	}
}

/* Desktop grande */
@media (min-width: 1200px) {

	.menu-mobile {
		display: none;
	}
}

header {
	background-size: cover;
	padding: 10px;
	margin-bottom: 20px;
	text-align: center;
	color: #fff;
}

header p {
	font-size: 1em;
	color: #fff;
	font-weight: bold;
	padding: 10px;
}

.logo {
	margin-bottom: 5px;
	border-radius: 5px;
	width: 90px;
	height: 90px;
	object-fit: cover;
}

nav {
	padding: 5px;
    background: #fff;
    border-bottom: 1px #3D3D3D;
    margin-top: -20px !important;
    margin-bottom: 10px;
    border: 1px solid #dddddd;
}

.nav-tabs > li, .nav-pills > li {
    float:none;
    display:inline-block;
    *display:inline; /* ie7 fix */
     zoom:1; /* hasLayout ie7 trigger */
}

.nav-tabs, .nav-pills {
    text-align:center;
}

.nav > li > a {
	color: #3D3D3D;
	text-transform: uppercase;
	font-weight: bold;
}

.nav>li>a:focus {
    text-decoration: none;
    background-color: #fff !important;
    transition: 1s;
}

.dropdown-menu {
	position: relative;
	border: 0px;
	box-shadow: none;
	text-align: center;
	transition: visibility 0s, opacity 0.5s linear;
}

.dropdown-menu > li {
	padding: 5px;
	border-bottom: 1px #3D3D3D;
}

section {
	min-height: 350px;
}

.corpo {
	background: #fff;
	border: 1px solid #dddddd;
    border-radius: 3px;
}

.title {
	font-family: var(--theme-font);
	font-weight: bold;
	margin-bottom: 20px;
}

.categoria {
	text-align: center;
	padding: 5px;
	border-radius: 3px;
}

.categoria h3 {
	font-family: var(--theme-font) !important;	
}

.categoria:hover {
	box-shadow:0px 13px 21px -5px rgba(0, 0, 0, 0.3);
	transition: 0.4s;
}

.link-categoria a {	
	text-decoration: none;
	color: #000;
	font-weight: bold;
}

.link-categoria a img {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	width: 725px;
	height: 125px;
	object-fit: cover;
}

.produto {
	text-align: center;
	min-height: 250px;
	display: block;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 3px;
	background: #fff;
	padding: 20px;
}

.produto:hover {
	box-shadow:0px 13px 21px -5px rgba(0, 0, 0, 0.3);
	transition: 0.4s;
}

.produto img {
	width: 200px;
	height: 200px;
	object-fit: cover;	
	border-radius: 6px;
}

.produto-detalhe {
	text-align: center;	
	display: block;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 3px;
	background: #fff;
	padding: 20px;
}

.produto-detalhe img {
	width: 280px;
	height: 150px;
}

.frm-rep-pedido {
	padding: 20px;
}

.badge {
	background: #000 !important;
}

.btn {
	color: #fff;
	font-weight: bold;
}

.btn:hover {
	box-shadow:0px 13px 21px -5px rgba(0, 0, 0, 0.3);
	transition: 0.4s;
}

.btn-black {
	background: #000;
	border-radius: 3px;
}

.btn-outline {
	background: transparent;
	border: 2px solid;
	border-radius: 3px;
	border-color: #000;
	color: #000;
}

.btn-outline:hover {	
	color: #000; 
}

.btn-cart {
	background: #000000;
    font-size: 2em;
    padding: 10px;    
    border-radius: 50%;
    width: 70px;
    height: 70px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    text-align: center;
    opacity: 0.80;
    color: #fafafa;
    -webkit-box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.75);
	box-shadow: 2px 2px 8px 0px rgba(0,0,0,0.75);
	z-index: 100000;
}

.animate {
 	-webkit-animation: bounce .3s 2 alternate;
 	-moz-animation: bounce .3s 2 alternate;
	animation: bounce .3s 2 alternate;
}

.upper {
	text-transform: uppercase;
}

@-webkit-keyframes bounce {
  to { -webkit-transform: scale(1.2); }
}
@-moz-keyframes bounce {
  to { -moz-transform: scale(1.2); }
}
@keyframes bounce {
  to { transform: scale(1.2); }
}

.btn-cart span {
	position: absolute;
    top: -15px;
    right: 0px;
    background: #CC0000;
    font-size: 15px;
    padding: 5px;
    width: 30px;
    border-radius: 30px;
}

.btn-cart i {
	position: relative;
	top: 5px;
	margin-left: auto;
}

.btn-cart:hover {
	color: #fff;
}

#lbPix {
	display: none;
}

hr {
	border: dashed 1px;
}

footer {
	bottom: 0;
	width: 100%;
	margin-top: 20px;
	min-height: 100px;
	background: #444;
	background-size: contain;
	padding: 20px;
	text-align: center;
	color: #fff;
}

.social-icons {
	padding: 20px;
}

.social-icons a {
	color: #fff;
	padding: 10px;
	font-size: 1.5em;
}