/* Estilos globais */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.top-bar {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  padding: 5px;
  text-align: center;
}
/* Estilo para o header desktop */
.navbar-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}
.navbar-desktop .navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-desktop .navbar-brand img {
  max-height: 60px;
  transition: max-height 0.4s ease;
}

.scrolled .navbar-desktop .navbar-brand img{
	max-height: 40px;
}

/* Menu Hamburguer na versão desktop */
.navbar-desktop .navbar-toggler {
    border: none;
    color: #fff;
    font-weight: 500;
    font-size: 15.8px;
    text-decoration: none !important;
    padding: 11px 18px;
    border-radius: 8px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
    background: none;
    cursor: pointer;
    top: 10px;
    margin-top: 5px;
	text-transform: uppercase;
	margin-left: 20px;
	margin-right: 20px;
}

.navbar-desktop .navbar-toggler:hover { 
	color:#337ab7;
}

/* Input de pesquisa */
.navbar-desktop .search-container {
  flex-grow: 1;
  position: relative;
  margin: 0 20px;
}
.navbar-desktop .search-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 50px;
}
.navbar-desktop .search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
}
.navbar-desktop .icon-container {
  display: flex;
  align-items: center;
}

.navbar-desktop .icon-container .nav-link {
    color: #ffffff;
    font-size: 14px;
    padding: 0 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.navbar-desktop .icon-container .nav-link:hover {  
	color: #1477cc;
}

/* Estilo para o header mobile */
.navbar-mobile {
  padding: 10px;
  display: none;
  position: relative;
}
/* Menu Hamburguer à esquerda no mobile */
.navbar-mobile .navbar-toggler {
  position: absolute;
  left: 10px;
  top: 10px;
  border: none;
  font-size: 24px;
  color: #fff;
  background: none;
}
/* Centralizar logo no mobile */
.navbar-mobile .navbar-brand {
  display: flex;
  justify-content: center;
  width: 100%;
}
/* Carrinho de compras à direita no mobile */
.navbar-mobile .icon-container {
  position: absolute;
  right: 10px;
  top: 0px;
}
.navbar-mobile .icon-container .nav-link {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
}
/* Barra de busca abaixo da logo */
.navbar-mobile .search-container {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.navbar-mobile .search-container .search-input {
  width: 90%;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 10px;
}
/* Estilos para o menu lateral */

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 1000;

    /* Custom scrollbar styling for Firefox */
    scrollbar-width: thin;
    scrollbar-color: #888 #e0e0e0;
}

/* Custom scrollbar for Webkit browsers */
.sidebar-menu::-webkit-scrollbar {
    width: 8px; /* Increased width for a more prominent appearance */
}

.sidebar-menu::-webkit-scrollbar-track {
    background: #f0f0f0; /* Light background for track */
    border-radius: 10px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background-color: #888; /* Slightly darker thumb */
    border-radius: 10px;
    border: 2px solid #f0f0f0; /* Adds subtle spacing around thumb */
}

.sidebar-menu::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker shade on hover for better visibility */
}



.sidebar-menu.active {
  left: 0; /* Menu visível */
}
.sidebar-header {
  padding: 15px;
  background-color: #000000;
  font-size: 13px;
  border-bottom: 1px solid #000000;
  position: sticky;
  top: 0;
  z-index: 10;
  color: #fff;
}
.sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu ul li {
    padding: 12px;
    border-bottom: 1px solid #e7e7e7;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.1s ease, color 0.1s ease;
    font-weight: 500;
    text-transform: uppercase;
}

.sidebar-menu ul li a{
	color: #191919;
	transition: color 0.1s ease;
	display: block;
}

.sidebar-menu ul li:hover {
  background-color: #1477cc;
  color: #fff;
}

.sidebar-menu ul li:hover a{
  color: #fff;
}

.close-btn {
  position: absolute;
  top: 2px;
  right: 15px;
  cursor: pointer;
  font-size: 32px;
}
/* Overlay para clicar fora do menu */
.menu-overlay {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
    display: none;
    backdrop-filter: blur(4px);
}
.menu-overlay.active {
  display: block;
}

.owl-carousel .item img {
    width: 100%;
    height: auto;
    display: block;
}

.container-fluid{ padding: 0 !important; }

.navbar-mobile{ margin-bottom: 20px; }

.custom-btn {
    background-color: #1477cc;
    color: #fff;
    border: none;
}

.custom-btn:hover {
    background-color: #000; /* Cor de hover opcional */
	color: #fff;
}


.product-area .box-home-cards{
	margin-bottom: 48px;
	padding-bottom: 48px;
}

.product-area .box-home-cards .single-product-wrap{ 
	background-color: #fff;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 10px;
}

.product-image > a img {
    width: auto;
    max-width: 100%;
    max-height: 100%; /* Limita a altura da imagem ao contêiner */
    object-fit: contain; /* Mantém a proporção da imagem */
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.whatsapp-button i {
    margin-right: 8px;
    font-size: 18px;
}

.whatsapp-button:hover {
    background-color: #1DA851;
	color: aliceblue;
}

.whatsapp-button:active {
    background-color: #128C7E;
	color: aliceblue;
}


.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 6px 10px 6px;
	padding-top: 10px;
	padding-right: 6px;
	padding-bottom: 10px;
	padding-left: 6px;
    list-style: none;
    background-color: transparent;
	border-bottom: 1px solid #e1e1e1;
	margin-bottom: 1rem;
	margin-top: 20px;
}

.breadcrumb li a {
    color:#000;
}

.breadcrumb li strong{
    color:#1477cc;
	font-weight: 500;
}

.btn-primary {
	background-color: #1477cc;
	color: #ffffff;
	border-color: #1477cc;
}

.btn-primary:hover, .btn-primary:active {
	background-color: #000000 !important;
	border-color: #000000 !important;
	color: #ffffff !important;
}

@media (max-width: 768px) {
    .owl-carousel .item img {
        height: auto; /* Ajusta proporcionalmente no mobile */
    }
}


@media (max-width: 425px) {
  .top-bar {
    display: none;
  }
}
/* Responsividade: Esconde/Mostra os headers conforme o tamanho */
@media (max-width: 768px) {
  .navbar-desktop {
    display: none; /* Esconde o header desktop em telas menores */
  }
  .navbar-mobile {
    display: block; /* Mostra o header mobile em telas menores */
  }
  .carousel-control-prev, .carousel-control-next {
    display: none; /* Esconde as setas no mobile */
  }
  .carousel-indicators {
    bottom: -14%;
  }
}

