.video-responsive {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: 1.2rem;
	background: #e3f0ff;
	box-shadow: 0 2px 16px rgba(20,110,180,0.10);
}
.video-responsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 1.2rem;
}

/* Seção de Produtos Premium */
.products-section {
	padding: 4rem 0 3rem 0;
	background: linear-gradient(120deg, #fff6fa 0%, #ffe3f0 100%);
}
.section-title {
	text-align: center;
	font-size: 2.7rem;
	color: #2d1a2d;
	font-weight: 800;
	margin-bottom: 3.5rem;
	letter-spacing: -1px;
	position: relative;
}
.section-title::after {
	content: '';
	display: block;
	margin: 0.7rem auto 0 auto;
	width: 90px;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(90deg, #e91e63 0%, #ffb6d5 100%);
}
.products-grid {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 2.5rem;
		align-items: stretch;
}

@media (max-width: 1200px) {
	.products-grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 800px) {
	.products-grid {
		grid-template-columns: 1fr;
	}
}

.product-card-full {
		grid-column: 1 / -1;
		width: 100%;
		max-width: none;
}
.product-card-full {
	grid-column: 1 / -1;
	width: 100%;
	max-width: none;
}
.product-card {
	background: #fff;
	border-radius: 2.2rem;
	box-shadow: 0 8px 32px rgba(233,30,99,0.13), 0 2px 12px rgba(0,0,0,0.07);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	transition: box-shadow 0.3s, transform 0.3s;
	position: relative;
	min-height: 420px;
	z-index: 1;
}
.product-card:hover {
	box-shadow: 0 16px 48px rgba(233,30,99,0.18), 0 4px 24px rgba(0,0,0,0.10);
	transform: translateY(-8px) scale(1.025);
}
.product-img-3d {
	background: linear-gradient(120deg, #ffe3f0 0%, #fff6fa 100%);
	padding: 2.2rem 2.2rem 1.2rem 2.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	box-shadow: 0 4px 24px 0 rgba(233,30,99,0.07);
	border-radius: 2.2rem 2.2rem 0 0;
}
.product-img-3d img {
	width: 100%;
	max-width: 180px;
	border-radius: 1.2rem;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	background: #f7f7f7;
	transition: transform 0.4s cubic-bezier(.23,1.01,.32,1);
}
.product-card:hover .product-img-3d img {
	transform: scale(1.07) rotate(-2deg);
}
.product-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.7rem 1.7rem 1.3rem 1.7rem;
}
.product-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #2d1a2d;
	margin-bottom: 0.7rem;
	letter-spacing: -0.5px;
}
.product-price {
	font-size: 1.15rem;
	font-weight: 800;
	color: #e91e63;
	margin-bottom: 1.2rem;
	letter-spacing: 0.2px;
}
.product-shops {
	display: flex;
	gap: 1rem;
	margin-top: 1.2rem;
	flex-wrap: wrap;
}
.shop-btn {
	flex: 1 1 0;
	min-width: 120px;
	padding: 1rem 0.5rem;
	font-size: 1.08rem;
	font-weight: 700;
	border-radius: 1.1rem;
	text-align: center;
	text-decoration: none;
	border: none;
	cursor: pointer;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	transition: transform 0.18s, box-shadow 0.18s, filter 0.18s;
	letter-spacing: 0.5px;
	outline: none;
	margin-bottom: 0.2rem;
}
.shop-btn-shopee {
	background: linear-gradient(90deg, #ff6a2d 0%, #ff934b 100%);
	color: #ffffff;
	box-shadow: 0 2px 12px rgba(255,106,45,0.13);
}
.shop-btn-shopee:hover {
	filter: brightness(1.08) saturate(1.2);
	transform: scale(1.04) translateY(-2px);
}
.shop-btn-ml {
	background: linear-gradient(90deg, #ffe600 0%, #fff159 100%);
	color: #2d1a2d;
	box-shadow: 0 2px 12px rgba(255,230,0,0.13);
}
.shop-btn-ml:hover {
	filter: brightness(1.08) saturate(1.2);
	transform: scale(1.04) translateY(-2px);
}
.shop-btn-amazon {
	background: linear-gradient(90deg, #146eb4 0%, #1e90ff 100%);
	color: #ffffff;
	box-shadow: 0 2px 12px rgba(20,110,180,0.13);
}
.shop-btn-amazon:hover {
	filter: brightness(1.08) saturate(1.2);
	transform: scale(1.04) translateY(-2px);
}

/* Card Completo (Full) */
.product-card-full {
  flex-direction: row;
  min-height: 340px;
  background: linear-gradient(120deg, var(--primary-light) 0%, var(--surface-alt) 100%);
  box-shadow: 0 12px 48px rgba(233,30,99,0.10), 0 2px 12px rgba(0,0,0,0.07);
  margin: 2.5rem 0 1.5rem 0;
  border: 2.5px solid var(--primary-light);
  max-width: 100%;
  overflow: hidden;
  grid-column: 1 / -1;
  width: 100%;
  max-width: none;
}
.product-full-media {
  flex: 1.2;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border-radius: 2.2rem 0 0 2.2rem;
  padding: 2rem 1rem 2rem 2rem;
  box-sizing: border-box;
  max-width: none;
}
}
.product-full-video {
	display: none;
}
.product-full-content {
	flex: 2;
	padding: 2.2rem 2.2rem 2.2rem 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	box-sizing: border-box;
}
.product-full-testimonial {
	margin-top: 1.7rem;
	background: linear-gradient(90deg, #fff0f6 60%, #e3f0ff 100%);
	border-left: 4px solid #e91e63;
	border-radius: 1rem;
	padding: 1.1rem 1.3rem;
	font-size: 1.08rem;
	color: #2d1a2d;
	box-shadow: 0 2px 8px rgba(233,30,99,0.07);
}
.testimonial-text {
	font-style: italic;
	margin-bottom: 0.5rem;
}
.testimonial-author {
	font-weight: 700;
	color: #e91e63;
	font-size: 1.01rem;
}

/* Responsivo */
@media (max-width: 900px) {
	.product-card-full {
		flex-direction: column;
		min-height: unset;
		border-radius: 2.2rem;
		max-width: 100%;
	}
	.product-full-media {
		border-radius: 2.2rem 2.2rem 0 0;
		border-right: none;
		border-bottom: 1.5px solid #b6d6ff;
		padding: 1.2rem 1.2rem 0.5rem 1.2rem;
		max-width: 100%;
	}
	.product-full-content {
		padding: 1.2rem;
		min-width: 0;
	}
}
@media (max-width: 600px) {
	.products-section {
		padding: 1.5rem 0 1rem 0;
	}
	.products-grid {
		gap: 1.2rem;
	}
	.product-card, .product-card-full {
		min-height: unset;
		margin: 0.7rem 0;
		border-radius: 1.2rem;
	}
	.product-img-3d {
		padding: 1.2rem 1.2rem 0.7rem 1.2rem;
		min-height: 120px;
		border-radius: 1.2rem 1.2rem 0 0;
	}
	.product-content, .product-full-content {
		padding: 0.9rem 0.9rem 0.7rem 0.9rem;
	}
	.product-full-media {
		padding: 0.7rem;
		min-width: 120px;
		border-radius: 1.2rem 1.2rem 0 0;
	}
	.product-full-video {
		min-width: 120px;
		max-width: 100%;
	}
}
