#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 {
	background-color: var(--azulClaro);
	color: var(--azul);

	border-radius: 30px;

	padding: 1rem 2rem;
	min-height: 213px;

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

#beneficios .beneficio-card>div>img {
	color: pink;
}

#beneficios .beneficio-image {
	width: 64px;
	height: 64px;
	min-width: 64px;
	border: 2px solid var(--azul);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#beneficios .beneficio-image img,
#beneficios .beneficio-image svg {
	width: 32px;
	height: 32px;
}

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

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

#beneficios .beneficio-card {
	display: flex;
	justify-content: center;
	height: 60px;
	flex: 1 1 22%;
	max-width: 24%;
	min-width: 220px;

	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 */
	display: block;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Italiana';
	font-size: 50px;
	font-weight: 400;
}

/* 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 .container {
	width: 90%;
}

#novidades .grid-novidades {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

@media (min-width: 1440px) {
	#novidades .grid-novidades {
		grid-template-columns: repeat(5, 1fr);
	}
}

#novidades .grid-novidades .item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid #BCEAF6;
	background: #fff;
}

#novidades .grid-novidades .item .infos {
	max-width: 90%;
	margin: 1.5rem auto 0 auto;
}

#novidades .grid-novidades .item .buttons-product {
	height: 57px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #BCEAF6;
}

#novidades .grid-novidades .item .novidades-thumb a img {
	width: 100%;
	height: 400px;
	object-fit: contain;
}

#novidades .grid-novidades .item .buttons-product a {
	font-size: 2rem;
	color: #FF197E;
	font-weight: 700;
	text-decoration: none;
}

#novidades .grid-novidades .item .buttons-product a img {
	height: 35px;
	margin-left: 1rem;
}

#novidades .grid-novidades .item .infos > strong {
	font-size: 2.2rem;
	color: #ccc;
	font-weight: 500;
}

#novidades .grid-novidades .item .infos .infos_value {
	display: flex;
	margin: 2rem 0;
	justify-content: center;
}

#novidades .grid-novidades .item .novidades-thumb {
	position: relative;
}

#novidades .grid-novidades .item .novidades-thumb .btn-favorito {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 50%;
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FF197E;
	transition: all 0.3s ease;
	z-index: 2;
}

#novidades .grid-novidades .item .novidades-thumb .btn-favorito i {
	font-size: 18px;
}

#novidades .grid-novidades .item .novidades-thumb .btn-favorito:hover {
	background: #FF197E;
	color: #fff;
	transform: scale(1.05);
}

#novidades .grid-novidades .item .novidades-thumb .btn-favorito.favorito-ativo {
	color: #fff;
}


#novidades .grid-novidades .item .infos .preco .promocional {
	font-size: 2rem;
	font-weight: 800;
	margin: 0;
	padding: 0;
	color: #FF197E;
}

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

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

.carrossel_novidades .infos strong {
	color: #999;
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 400;
}

.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;
}

.carrossel_novidades .owl-stage-outer .owl-stage .owl-item {
	/* width: 280px !important; */
	height: 600px;
}

.carrossel_novidades .owl-nav {
	display: flex !important;
}

.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: #fff;
	font-size: 20px;
	background-color: var(--azulBebe);
	padding: 10px 25px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: .3s;
}

#novidades .novidade-verTudo a:hover {
	transition: .3s;
	scale: 1.05;
}

#novidades .novidade-verTudo .verTudo-linha {
	width: 65%;
	height: 1px;
	background-color: var(--azulBebe);
}

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

.carrossel_mais_vendidos .item {
	position: relative;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	height: auto;
	min-height: 620px;
	display: flex;
	flex-direction: column;
}

.carrossel_mais_vendidos .thumb img {
	width: 100%;
	height: 360px;
	object-fit: cover;
	display: block;
}

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

.carrossel_mais_vendidos .infos strong {
	color: #999;
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: 400;
}

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

.carrossel_mais_vendidos .owl-stage-outer .owl-stage .owl-item {
	height: auto;
}

.carrossel_mais_vendidos .tamanhos {
	position: absolute;
	bottom: 110px;
	width: 100%;
	display: flex;
	justify-content: center;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.carrossel_mais_vendidos .item:hover .tamanhos {
	opacity: 1;
	visibility: visible;
}

.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;
}

.carrossel_mais_vendidos .tamanhos .tamanho:hover {
	background-color: #666;
	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;
}

.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;
	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.disabled {
	display: none;
}

.carrossel_mais_vendidos .buttons-product {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: auto;
}

.carrossel_mais_vendidos .buttons-product a {
	text-decoration: none;
	transition: .3s;
}

.carrossel_mais_vendidos .buttons-product a:hover {
	scale: 1.1;
	transition: .3s;
}

.carrossel_mais_vendidos .buttons-product a:first-child {
	background-color: var(--azul);
	color: white;
	padding: 15px 30px;
	border-radius: 50px;
}

.carrossel_mais_vendidos .buttons-product a:nth-child(2) {
	color: #555;
	padding: 15px 30px;
}

.carrossel_mais_vendidos .buttons-product .btn-favorito {
	background: transparent !important;
	border: 1px solid #FF197E !important;
	border-radius: 999px !important;
	color: #FF197E !important;
	width: 40px !important;
	height: 40px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 16px !important;
	line-height: 1 !important;
	transition: all 0.3s ease !important;
	padding: 0 !important;
}

.carrossel_mais_vendidos .buttons-product .btn-favorito:focus {
	outline: none;
	box-shadow: none;
}

.carrossel_mais_vendidos .buttons-product .btn-favorito i {
	color: inherit !important;
}

.carrossel_mais_vendidos .buttons-product .btn-favorito.favorito-ativo {
	background: #FF197E !important;
	color: #fff !important;
	border-color: #FF197E !important;
}

.owl-carousel.owl-drag .owl-item .btn-favorito:hover i {
	color: #ffffff !important;
}

#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;
	margin-bottom: 180px;
}

.sobre-nos > .col-logo > a {
	display: block;
}

.sobre-nos > .col-logo > a > img {
	object-fit: contain;
}

#sobre-nos .container {
	display: flex;
	align-items: center;
	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 .container .banner-sobre-nos {
	height: 100% !important;
}

#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: 13px;
	line-height: 30px;
	color: #000;
}

#emailNovidades {
	background-color: var(--azul);
}

#emailNovidades .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
}

#emailNovidades .container::before {
	content: none;
}

#emailNovidades .container::after {
	content: none;
}

#emailNovidades .container i {
	color: var(--azul);
	font-size: 3rem;
	border-radius: 50px;
	background-color: white;
	padding: 10px;
}

#emailNovidades .container p {
	color: white;
}

#emailNovidades .container form {
	position: relative;
}

#emailNovidades .container form>input {
	width: 550px;
	border-radius: 50px;
	padding: 0 20px;
	border: none;
	outline: none;
	height: 54px;
}

#emailNovidades .container form>input::placeholder {
	color: var(--azul);
	font-weight: 500;
}

#emailNovidades .container form>button {
	position: absolute;
	right: 3px;
	top: 3px;
	width: 170px;
	height: 48px;

	border-radius: 50px;
	padding: 0 20px;
	border: none;
	outline: none;

	color: var(--azul);
	font-weight: bolder;
	background-color: var(--azulBebe);
}

@media (max-width: 1450px) {
	#banner-center-bottom .banner-container > .banner-item {
		min-width: 550px;
	}

	.carrossel_lancamentos .infos strong {
		font-size: 1.2rem !important;
	}

	header .c-header {
		padding: 20px 0;
	}

	header .c-header .col-logo a {
		display: block;
		width: 100%;
	}

	header .c-header .col-logo a img {
		width: inherit;
		height: inherit;
	}

	header .c-header .col-logo {
		width: 180px;
	}

	header .container .c-search form {
		width: 80%;
	}
} 

@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;
	}

	#direitos-autorais .container {
		flex-direction: column;
		gap: 20px;
		padding: 10px 0;
	}

	#direitos-autorais .container > div p {
		margin-bottom: 15px;
	}
}

@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;
	}

	#banner-center-bottom {
		background-repeat: no-repeat;
	}

	#banner-center-bottom .banner-container {
		height: auto;
	}

	#banner-center-bottom .banner-content img {
		margin: 0 auto;
	}

	#beneficios .container {
		width: 100%;
	}

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

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

@media (max-width: 700px) {
	.carrossel_novidades .item a {
		display: block;
		object-fit: contain;
	}

	.carrossel_novidades .item a img {
		display: block;
		width: 300px;
		height: 300px !important;
		margin: 0 auto;
		height: 100%;
		object-fit: contain;
	}

	.carrossel_novidades .preco span {
		right: 18%;
	}

	#emailNovidades .container form {
		width: 90%;
	}

	#emailNovidades .container form>input {
		width: 100%;
	}

	#banner-center-bottom .banner-content img {
		width: 100% !important;
	}
}
