@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
	font-family: Poppins !important;
	font-weight: 300 !important;
}

.banner {
	position: relative;
	background: transparent;
	width: 100%;
	height: auto;
	margin-top: 50px;
	border-radius: 15px;
	overflow: hidden;
}

.slider {
	position: relative;
	width: 200%;
	display: flex;
	animation: slide 10s infinite;
}

.slider img {
	width: 50%;
	height: auto;
	object-fit: cover;
}

@keyframes slide {

	0%,
	40% {
		transform: translateX(0%);
	}

	50%,
	90% {
		transform: translateX(-50%);
	}

	100% {
		transform: translateX(0%);
	}
}



.dots {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
}

.dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ffffff;
	margin: 0 5px;
	opacity: 0.5;
	transition: opacity 0.3s ease-in-out;
}

.dot.active {
	opacity: 1;
}

h1.header_category {
	font-size: 1.7rem;
	font-family: Poppins !important;
	font-weight: 300;
	text-align: center !important;
	margin-top: 60px;
	padding-bottom: 20px;
}

hr {
	border-width: 2px;
	border-color: #00538F;
	opacity: 100%;
	margin-top: 0px;
	margin-bottom: 40px;
	width: 7%;
	text-align: center;
}

.image_product {
	width: 100%;
	height: 250px;
	border-radius: 10px;
	background-size: cover !important;
	background-position: center center !important;
	transition: all 300ms;
}

.image_product:hover {
	transform: scale(1.02);
}

.title_product {
	font-size: 1rem;
	text-align: center;
	margin-top: 30px;
	font-family: Poppins;
	font-weight: 300;
	color: #555 !important;
}

.priece_product {
	text-align: center;
	font-size: 1.7rem;
	font-weight: 600;
	color: #00538F !important;
	margin-bottom: 0px;
}

.payOption_product {
	text-align: center;
	font-size: 0.7rem;
	margin-top: 0px !important;
	color: #999;
}

.produtos {
	margin-top: 80px;
}

.produto {
	cursor: pointer !important;
}

.produto:hover .addCart {
	color: white;
	background: var(--primary);
}

/* Novo layout de card de produto */
.produto {
	background: #fff;
	border-radius: 12px;
	padding: 10px;
	position: relative;
	transition: all 0.3s ease;
	margin: 10px;
	border: 1px solid #f0f0f0;
}

.produto:hover {
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transform: translateY(-5px);
}

.badge-discount {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #7DCAD2;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;
	z-index: 2;
}

.badge-new {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #f8f9fa;
	color: #333;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 8px;
	border-radius: 4px;
	z-index: 2;
	border: 1px solid #eee;
}

.image_product {
	width: 100%;
	height: 200px;
	border-radius: 8px;
	background-size: cover !important;
	background-position: center center !important;
	margin-bottom: 15px;
}

.product-info {
	text-align: center;
	padding: 0 5px;
}

.title_product {
	font-size: 14px;
	font-weight: 600;
	color: #444;
	margin-bottom: 10px;
	height: 40px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4;
	text-transform: uppercase;
}

.product-pricing {
	margin-bottom: 8px;
}

.price-old {
	font-size: 12px;
	color: #999;
	text-decoration: line-through;
	margin-right: 5px;
}

.price-current {
	font-size: 18px;
	font-weight: 700;
	color: #333;
}

.installments-box {
	border: 1px solid #7DCAD2;
	color: #7DCAD2;
	font-size: 11px;
	font-weight: 600;
	padding: 5px;
	border-radius: 4px;
	display: inline-block;
	margin-top: 5px;
	width: 100%;
}

.carousel {
	width: 100%;
}

.slide {
	text-align: center;
}

.carousel {
	width: 100%;
	height: auto !important;
}

.slick-slide {
	height: auto !important;
}

.slide {
	text-align: center;
	margin: 0 10px;
}

.slick-prev,
.slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	font-size: 24px;
	color: #7DCAD2 !important;
	border: none;
	background: transparent;
	padding: 10px;
	cursor: pointer;
	opacity: 0.8;
	transition: all 0.3s;
}

.slick-prev:hover,
.slick-next:hover {
	opacity: 1;
	transform: translateY(-50%) scale(1.1);
}

.slick-prev {
	left: -60px;
}

.slick-next {
	right: -50px;
}

.produto {
	margin: 15px;
}

.miniBanner {
	width: 100%;
	height: 300px;
	background-size: cover !important;
	background-position: center center !important;
	border-radius: 15px;
	display: flex;
	align-items: center;
	padding: 40px;
	margin-top: 40px;
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
}

.banner-content {
	z-index: 1;
	max-width: 60%;
}

.miniBanner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

.miniBanner h3 {
	color: white;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
}

.miniBanner p {
	color: white;
	font-size: 16px;
	margin-bottom: 20px;
}

.btn-banner {
	background: #7DCAD2;
	color: white;
	border: none;
	padding: 10px 25px;
	border-radius: 25px;
	font-weight: 600;
	cursor: pointer;
	transition: all 300ms;
}

.btn-banner:hover {
	background: #d35400;
	transform: scale(1.05);
}

.newslater {
	padding: 40px;
	background: #7DCAD2;
	border-radius: 15px;
	margin-top: 80px;
	margin-bottom: 80px;
}

.newslater h2 {
	color: white;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 5px;
}

.newslater p {
	color: white;
	opacity: 0.9;
	margin-bottom: 0px;
}

.newslatter.align {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
}

.newslater input {
	background: white;
	border: none;
	padding: 0 20px;
	border-radius: 30px 0 0 30px;
	width: 70%;
	height: 50px;
	outline: none;
}

.newslater button {
	background: #0f1e3d;
	color: white;
	border: none;
	padding: 0;
	border-radius: 0 30px 30px 0;
	width: 25%;
	height: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 300ms;
	display: flex;
	align-items: center;
	justify-content: center;
}

.newslater button:hover {
	background: #1a3366;
}

.postBlog .photo_postBlog {
	width: 100%;
	height: 250px;
	background-size: cover !important;
	background-position: center center !important;
	border-radius: 10px;
}

.postBlog .title_postBlog {
	margin-top: 5px;
	font-size: 20px;
	text-align: center;
	color: #00538F;
	font-weight: 400;
	margin-bottom: 10px;
}

.postBlog .description_postBlog {
	font-weight: 300;
	color: #666;
	text-align: center;
	font-size: 13px;
}

.postBlog .texts {
	padding: 14px;
}

.blog_verMais {
	padding: 10px;
	border: 1px solid #00538F;
	color: #00538F;
	font-weight: 300;
	font-size: 14px;
	background: transparent;
	margin-top: 20px;
	transition: all 300ms;
	width: 100px;
}

.blog_verMais:hover {
	background: #00538F;
	color: white;
}

footer {
	background: #f8f8f8;
	padding: 60px 0 20px 0;
	margin-top: 80px;
}

.footer-logo {
	max-height: 50px;
	margin-bottom: 20px;
}

.footer-description {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.footer-title {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin-bottom: 25px;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #666;
	text-decoration: none;
	font-size: 14px;
	transition: all 300ms;
}

.footer-links a:hover {
	color: #7DCAD2;
	padding-left: 5px;
}

.contact-info {
	list-style: none;
	padding: 0;
}

.contact-info li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: #666;
	font-size: 14px;
}

.contact-info i {
	color: #7DCAD2;
	margin-right: 12px;
	font-size: 18px;
}

.payment-methods {
	margin-top: 20px;
}

.payment-methods img {
	height: 30px;
	margin-right: 10px;
	margin-bottom: 10px;
	filter: grayscale(100%);
	opacity: 0.6;
}

.selos-seguranca {
	margin-top: 20px;
}

.selos-seguranca img {
	height: 45px;
	filter: grayscale(20%);
	transition: all 300ms;
}

.selos-seguranca img:hover {
	filter: grayscale(0%);
	transform: scale(1.05);
}

.copy {
	color: white;
	padding: 12px 0;
	font-size: 12px;
	text-align: center;
	background: #00538F;
	width: 100%;
}

.copy a {
	color: white;
	text-decoration: none;
}

.btn-ver-todos {
	padding: 5px 15px;
	border: 1px solid #7DCAD2;
	color: #7DCAD2;
	border-radius: 20px;
	font-size: 13px;
	text-decoration: none;
	transition: all 0.3s;
	font-weight: 500;
}

.btn-ver-todos:hover {
	background: #7DCAD2;
	color: white;
	text-decoration: none;
}

@media (max-width: 768px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}

	.banner {
		margin-top: 10px;
	}

	.slider img {
		max-height: 180px;
		object-fit: cover;
	}

	/* BLOG MOBILE */
	.blog-section {
		padding: 40px 0 !important;
		background: #fff;
	}

	/* NEWSLETTER MOBILE - Mais compacta e elegante */
	.newslater {
		padding: 110px 15px 30px 15px !important;
		background: var(--primary);
		border-radius: 15px !important;
		margin: 10px 15px !important;
		text-align: center;
	}

	.newslater h2 {
		font-size: 20px !important;
		font-weight: 700 !important;
		color: #fff !important;
		margin-bottom: 10px !important;
		line-height: 1.2;
	}

	.newslater p {
		font-size: 14px !important;
		color: rgba(255, 255, 255, 0.9) !important;
		margin-bottom: 8px !important;
	}

	.newslatter.align {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}

	.newslatter input {
		flex: 1;
		height: 45px !important;
		border-radius: 25px 0 0 25px !important;
		padding: 0 15px !important;
		border: none !important;
		font-size: 13px !important;
	}

	.newslatter button {
		width: 50px !important;
		height: 45px !important;
		border-radius: 0 25px 25px 0 !important;
		background: #0f1e3d !important;
		color: #fff !important;
		border: none !important;
	}

	/* RODAPÉ MOBILE - Estilo BabyLove (Cinza Claro) */
	.baseboard {
		background: #fdfdfd !important;
		padding: 25px 20px !important;
		text-align: left !important;
		border-top: 1px solid #eee;
	}

	.baseboard .titleBaseboard {
		font-size: 15px !important;
		font-weight: 700 !important;
		color: #333 !important;
		margin-bottom: 5px !important;
		display: block;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.footer-links-mobile {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px 15px;
		margin-bottom: 15px;
	}

	.baseboard a {
		text-decoration: none;
		display: block;
	}

	.baseboard a .linkBaseboard {
		font-size: 13px !important;
		color: #666 !important;
		font-weight: 500 !important;
		margin-bottom: 0 !important;
		display: block;
	}

	.socialIcons {
		display: flex !important;
		gap: 15px;
		margin-top: 15px;
		justify-content: flex-start !important;
	}

	.socialIcons i {
		font-size: 20px;
		color: var(--primary);
	}

	/* CARDS DE PRODUTO MOBILE - Premium e Compacto */
	.produto {
		margin: 8px !important;
		padding: 10px !important;
		border-radius: 12px !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
		border: 1px solid #f2f2f2 !important;
	}

	.image_product {
		height: 160px !important;
		margin-bottom: 10px !important;
	}

	.title_product {
		font-size: 12px !important;
		font-weight: 600 !important;
		margin-bottom: 8px !important;
		height: 34px !important;
		color: #444 !important;
	}

	.price-current {
		font-size: 15px !important;
		font-weight: 700 !important;
		color: #333 !important;
	}

	.price-old {
		font-size: 10px !important;
	}

	.installments-box {
		font-size: 9px !important;
		padding: 3px 6px !important;
		margin-top: 5px !important;
		border-color: rgba(125, 202, 210, 0.4) !important;
	}

	.badge-discount,
	.badge-new {
		font-size: 9px !important;
		padding: 2px 6px !important;
		top: 8px !important;
	}

	.badge-discount {
		left: 8px !important;
	}

	.badge-new {
		right: 8px !important;
	}

	.copy {
		background: #0f1e3d !important;
		font-size: 11px !important;
	}
}