#banner-top img {
	width: 100%;
}

#banner-top .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none; /* Evita que interfira na navegação ao clicar */
}

#banner-top .owl-nav .owl-prev,
#banner-top .owl-nav .owl-next {
	background-color: transparent; /* Deixa o fundo transparente */
	color: #fff;
	border: 2px solid #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-size: 18px;
	cursor: pointer;
	pointer-events: all; /* Ativa a interação do mouse */
	transition: background-color 0.3s ease, color 0.3s ease;
}

#banner-top .owl-nav .owl-prev:hover,
#banner-top .owl-nav .owl-next:hover {
	background-color: #fff;
	color: #1c274c; /* Cor de destaque ao passar o mouse */
}

#banner-top .owl-nav .owl-prev {
	left: 10px; /* Posiciona o botão "prev" à esquerda */
}

#banner-top .owl-nav .owl-next {
	right: 10px; /* Posiciona o botão "next" à direita */
}

#banner-top .owl-dots {
	text-align: center;
}

#banner-top .owl-dots .owl-dot {
	width: 30px;
	height: 30px;
	margin: 0 5px;
	background: transparent;
	border: 2px solid #ffffff;
	border-radius: 50%;
	display: inline-block;
}

#banner-top .owl-dots .owl-dot.active {
	border-color: #1c274c;
}

#banner-top .owl-stage-outer {
	position: relative;
}

#banner-top .owl-controls {
	position: absolute;

	width: 100%;
	top: 90%;
}

/* Estilização básica do botão no banner */
#banner-top .banner-button {
	display: inline-block;
	background-color: #1c274c;
	color: white;
	padding: 15px 80px;
	border-radius: 25px;
	text-decoration: none;
	font-size: 16px;
	position: absolute;
	bottom: 200px;
	left: 30%;
	transform: translateX(-50%);
	transition: background-color 0.3s ease;
}

#banner-top .banner-button:hover {
	background-color: #e21d85;
	color: #fff;
}

/* Garantir que o item do banner seja posicionado corretamente */
#banner-top .item {
	position: relative;
}

/* Benefícios */
#beneficios {
	margin: 30px 0;
}

#beneficios .beneficios-itens {
	border: 1px solid #000;
	border-radius: 10px;

	padding: 15px 20px;

	align-items: center;
	display: flex;
	justify-content: space-between;
}

#beneficios .beneficio-descricao h3 {
	font-size: 20px;
}

#beneficios .beneficio-descricao h4 {
	font-size: 15px;
}

#beneficios .beneficio-card {
	display: flex;
	height: 60px;
	flex: 1 1 30%; /* Flexível: ocupa 30%, mas se adapta ao espaço */
	max-width: 30%; /* Não ocupa mais que 30% da largura */
	min-width: 250px; /* Largura mínima para manter o layout */

	gap: 20px;
	align-items: center;
}

/* Estilizando o container do banner para utilizar Flexbox */

/* Estilizando o container do banner para usar Flexbox */
#banner-center-home .container h3 {
	margin: 0 0 7px 0;
	text-align: center;
}

#banner-center-home .banner-container {
	font-family: "Italiana";
	text-transform: uppercase;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	flex-wrap: wrap; /* Permite que os banners quebrem linha em telas menores */
}

#banner-center-home .banner-item {
	flex: 0 1 33.3%; /* Cada banner ocupa cerca de 30% da largura disponível */
	text-align: center;
	position: relative; /* Necessário para posicionar o título sobre a imagem */
}

/* Banner Content para organizar o título e a imagem */
#banner-center-home .banner-content {
	position: relative;
}

#banner-center-home .banner-content img {
	width: 100%;
	height: auto;
	display: block;
}

/* Estilizando o título H3 */
#banner-center-home .banner-content h3 {
	position: absolute;
	top: 50%; /* Centraliza verticalmente */
	left: 50%; /* Centraliza horizontalmente */
	transform: translate(-50%, -50%); /* Ajuste para centralização perfeita */
	color: #fff; /* Cor do texto */
	font-size: 50px;
	font-weight: 600;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para destacar o texto */
	margin: 0;
	padding: 10px;
}

#novidades,
#banner-center-home,
#banner-center-bottom,
#beneficios,
#banner-top,
#mais_vendidos {
	background-color: #fff !important;
}

#novidades h3 {
	text-align: center;
	margin: 30px 0 35px 0;
}

.carrossel_novidades .infos {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	height: 100px;
}

.carrossel_novidades .preco {
	font-size: 18px;
}

.carrossel_novidades strong {
	font-size: 20px;
	font-weight: 400px;
}

.carrossel_novidades .item {
	position: relative;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	height: 580px;
	opacity: 0.5; /* Itens não selecionados */
	transition: opacity 0.3s ease-in-out;
}

.carrossel_novidades .item.selected {
	opacity: 1; /* Item selecionado tem opacidade total */
}

.carrossel_novidades .owl-item.active:nth-of-type(1) .tamanhos {
	display: flex;
}

.carrossel_novidades .owl-item:hover .tamanhos {
	display: flex;
}

.carrossel_novidades .owl-item.selected .tamanhos {
	display: flex; /* Mostra os tamanhos apenas no item selecionado */
}

.carrossel_novidades .item:hover {
	opacity: 1;
}

.carrossel_novidades .owl-item.selected .item {
	opacity: 1; /* Opacidade total para o item selecionado */
}

.carrossel_novidades .tamanhos {
	display: none;
	position: absolute;
	bottom: 100px;
	width: 100%;
	justify-content: center;
	margin-top: 10px;
	text-align: center;
}

.carrossel_novidades .tamanhos .tamanho {
	display: inline-block;
	background-color: #e0e0e0;
	color: #141414;
	margin: 0 5px;

	padding: 10px 15px;
	vertical-align: bottom;

	font-size: 20px;
	font-weight: 400;
	text-decoration: none;
	font-style: normal;
	border-radius: 3px;
}

.carrossel_novidades .tamanhos .tamanho:hover {
	background-color: #666;
	text-decoration: none;
	color: white;
}

.carrossel_novidades .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none; /* Para evitar que interfira em cliques */
}

.carrossel_novidades .owl-nav .owl-prev,
.carrossel_novidades .owl-nav .owl-next {
	color: #000;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 36px;
	font-size: 18px;
	cursor: pointer;
	pointer-events: all; /* Para permitir a interação com cliques */
	transition: background-color 0.3s ease, color 0.3s ease;
}

.carrossel_novidades .owl-nav .owl-prev:hover,
.carrossel_novidades .owl-nav .owl-next:hover {
	color: #fff;
}

.carrossel_novidades .owl-nav .owl-prev {
	left: 10px;
}

.carrossel_novidades .owl-nav .owl-next {
	right: 10px;
}

.carrossel_novidades .owl-nav.disabled {
	display: none; /* Esconde os botões se a navegação não estiver disponível */
}

#novidades .novidade-verTudo {
	display: flex;
	align-items: center;
	margin: 50px 0;
	justify-content: space-between;
}

#novidades .novidade-verTudo a {
	color: #000;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
}

#novidades .novidade-verTudo .verTudo-linha {
	width: 85%;
	height: 1px;
	background-color: #000;
}

#mais_vendidos h3 {
	text-align: center;
	margin: 30px 0 35px 0;
}

.carrossel_mais_vendidos .infos {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	height: 100px;
}

.carrossel_mais_vendidos .preco {
	font-size: 18px;
}

.carrossel_mais_vendidos strong {
	font-size: 20px;
	font-weight: 400px;
}

.carrossel_mais_vendidos .item {
	position: relative;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	height: 580px;
	opacity: 1; /* Itens não selecionados */
	transition: opacity 0.3s ease-in-out;
}

.carrossel_mais_vendidos .item.selected {
	opacity: 1; /* Item selecionado tem opacidade total */
}

.carrossel_mais_vendidos .owl-item.active:nth-of-type(1) .tamanhos {
	display: flex;
}

.carrossel_mais_vendidos .owl-item.active:nth-of-type(1) .tamanhos,
.carrossel_mais_vendidos .owl-item:hover .tamanhos {
	opacity: 1; /* Fica visível com transição */
	visibility: visible; /* Agora está visível */
}

.carrossel_mais_vendidos .owl-item.selected .tamanhos {
	display: flex; /* Mostra os tamanhos apenas no item selecionado */
}

.carrossel_mais_vendidos .item:hover {
	opacity: 1;
}

.carrossel_mais_vendidos .owl-item.selected .item {
	opacity: 1; /* Opacidade total para o item selecionado */
}

.carrossel_mais_vendidos .tamanhos {
	position: absolute;
	bottom: 100px;
	width: 100%;
	justify-content: center;
	margin-top: 10px;
	text-align: center;
	opacity: 0; /* Inicialmente invisível */
	visibility: hidden; /* Não afeta o layout */
	transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out; /* Suave */
}

.carrossel_mais_vendidos .tamanhos .tamanho {
	display: inline-block;
	background-color: #e0e0e0;
	color: #141414;
	margin: 0 5px;
	padding: 10px 15px;
	vertical-align: bottom;
	font-size: 20px;
	font-weight: 400;
	text-decoration: none;
	border-radius: 3px;
	transition: background-color 0.3s ease, color 0.3s ease; /* Suave para hover */
}

.carrossel_mais_vendidos .tamanhos .tamanho:hover {
	background-color: #666;
	text-decoration: none;
	color: white;
}

.carrossel_mais_vendidos .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none; /* Para evitar que interfira em cliques */
}

.carrossel_mais_vendidos .owl-nav .owl-prev,
.carrossel_mais_vendidos .owl-nav .owl-next {
	color: #000;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 36px;
	font-size: 18px;
	cursor: pointer;
	pointer-events: all; /* Para permitir a interação com cliques */
	transition: background-color 0.3s ease, color 0.3s ease;
}

.carrossel_mais_vendidos .owl-nav .owl-prev:hover,
.carrossel_mais_vendidos .owl-nav .owl-next:hover {
	color: #fff;
}

.carrossel_mais_vendidos .owl-nav .owl-prev {
	left: 10px;
}

.carrossel_mais_vendidos .owl-nav .owl-next {
	right: 10px;
}

.carrossel_mais_vendidos .owl-nav.disabled {
	display: none; /* Esconde os botões se a navegação não estiver disponível */
}

#mais_vendidos .mais_vendidos-verTudo {
	display: flex;
	align-items: center;
	margin: 50px 0;
	justify-content: space-between;
}

#mais_vendidos .mais_vendidos-verTudo a {
	color: #000;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
}

#mais_vendidos .mais_vendidos-verTudo .verTudo-linha {
	width: 85%;
	height: 1px;
	background-color: #000;
}

/* Banner principal bottom */
#banner-center-bottom .container h3 {
	margin: 0 0 7px 0;
	text-align: center;
}

#banner-center-bottom .banner-container {
	text-transform: uppercase;
	padding: 20px 0;

	width: 100%;
	height: 580px;
}

#banner-center-bottom .banner-item {
	flex: 0 1 33.3%; /* Cada banner ocupa cerca de 30% da largura disponível */
	text-align: center;
	position: relative; /* Necessário para posicionar o título sobre a imagem */
}

/* Banner Content para organizar o título e a imagem */
#banner-center-bottom .banner-content {
	position: relative;
}

#banner-center-bottom .banner-content img {
	width: 100%;
	height: auto;
	display: block;
}

#banner-center-bottom .banner-button {
	display: inline-block;
	background-color: transparent;
	color: white;
	padding: 15px 60px;
	border-radius: 25px;
	border: 1px solid white;
	text-decoration: none;
	font-size: 16px;
	position: absolute;
	bottom: 80px;
	left: 23%;
	transform: translateX(-50%);
	transition: background-color 0.3s ease;
}

#banner-center-bottom .banner-button:hover {
	background-color: #e21d85;
	border-color: #e21d85;
	color: #fff;
}

#sobre-nos {
	margin-top: 20px;
}

#sobre-nos .container {
	display: flex;
	justify-content: space-between;
}

#sobre-nos .container > div {
	flex: 1 1 45%;
}

#sobre-nos .container > div {
	min-width: 300px;
	max-width: 48%;
}

#sobre-nos img {
	height: 100%;
	width: 100%;
}

#sobre-nos .banner-sobre-nos {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 600px !important;
	height: 560px !important;
}

#sobre-nos .sobre-nos > span {
	font-size: 14px;
	font-weight: 700;
}

#sobre-nos h3 {
	font-size: 38px;
	font-weight: 700;
	margin: 0 0 30px 0;
}

#sobre-nos .sobre-nos p {
	text-align: justify;
	font-size: 15px;
	line-height: 30px;
	color: #000;
}

@media (max-width: 1024px) {
	.links-social {
		flex-direction: column;
		height: 250px;
	}

	footer .cell-none {
		flex-direction: column;
		height: 650px;
	}

	footer .card {
		width: 315px;
		text-align: center;
	}

	footer .links-ajuda-a,
	footer .links-social-links li a {
		font-size: 18px !important;
	}
}

@media (max-width: 900px) {
	.beneficios-itens {
		flex-direction: column;
	}

	#beneficios .container {
		width: 70%;
	}
}

@media (max-width: 768px) {
	#sobre-nos .container {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	#beneficios .container {
		width: 100%;
	}

	#canais-oficiais .container {
		width: 80%;
	}

	.banner-container {
		flex-direction: column;
	}
}
