/* ===== RESET E BASE ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Paleta Art Nouveau */
	--gold-dark: #8a7048;
	--gold-light: #c9a961;
	--gold-pale: #d4b56f;
	--cream: #f5f1e8;
	--cream-dark: #e8dcc8;
	--text-dark: #2a2a2a;
	--text-muted: #4a4035;
	--white: #ffffff;

	/* Cores das Redes Sociais */
	--instagram: #e4405f;
	--whatsapp: #25d366;
	--tiktok: #000000;
	--twitter: #1da1f2;
	--youtube: #ff0000;
	--threads: #000000;

	/* Espaçamentos */
	--header-height: 70px;
	--section-padding: 80px;
	--container-max: 1200px;

	/* Transições */
	--transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-fast: all 0.2s ease;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Cormorant Garamond", Georgia, serif;
	background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
	color: var(--text-dark);
	font-size: 18px;
	font-weight: 450;
	line-height: 1.7;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER ===== */
.main-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--header-height);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(156, 130, 90, 0.1);
	z-index: 1000;
	border-bottom: 1px solid rgba(156, 130, 90, 0.15);
}

.header-content {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: inherit;
}

.logo-img {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	object-fit: cover;
}

.logo-text {
	line-height: 1.2;
}

.logo-text h1 {
	font-family: "Crimson Pro", Georgia, serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--text-dark);
	margin-bottom: 0;
}

.logo-text .tagline {
	font-size: 12px;
	color: var(--gold-dark);
	font-style: italic;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-top: -2px;
}

.main-nav {
	display: flex;
	gap: 35px;
}

.nav-link {
	text-decoration: none;
	color: var(--text-dark);
	font-size: 17px;
	font-weight: 500;
	letter-spacing: 0.5px;
	position: relative;
	transition: var(--transition-fast);
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
	transition: width 0.3s ease;
}

.nav-link:hover {
	color: var(--gold-dark);
}

.nav-link:hover::after {
	width: 100%;
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	color: var(--gold-dark);
	cursor: pointer;
	padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	position: fixed;
	top: var(--header-height);
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	padding: 20px;
	box-shadow: 0 10px 30px rgba(156, 130, 90, 0.15);
	z-index: 999;
	transform: translateY(-100%);
	opacity: 0;
	transition: var(--transition-smooth);
}

.mobile-menu.active {
	transform: translateY(0);
	opacity: 1;
}

.mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.mobile-nav-link {
	text-decoration: none;
	color: var(--text-dark);
	font-size: 20px;
	font-weight: 500;
	padding: 14px 20px;
	border-radius: 10px;
	transition: var(--transition-fast);
	text-align: center;
}

.mobile-nav-link:hover {
	background: rgba(156, 130, 90, 0.1);
	color: var(--gold-dark);
}

/* ===== HERO SECTION ===== */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: calc(var(--header-height) + 40px) 20px 60px;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle at 20% 30%, rgba(156, 130, 90, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(115, 140, 115, 0.05) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

/* Hero Background Carousel */
.hero-carousel {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	opacity: 0.3;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.carousel-track {
	display: flex;
	gap: 30px;
	will-change: transform;
	height: 50%;
	align-items: center;
}

.carousel-track-top {
	animation: carousel-scroll-left 35s linear infinite;
}

.carousel-track-bottom {
	animation: carousel-scroll-right 35s linear infinite;
}

.carousel-track img {
	height: calc(50vh - 40px);
	width: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 20px;
	flex-shrink: 0;
	opacity: 0.7;
}

@keyframes carousel-scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes carousel-scroll-right {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

.hero-content {
	text-align: center;
	max-width: 700px;
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.95);
	padding: 10px 28px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 600;
	color: var(--gold-dark);
	letter-spacing: 2px;
	margin-bottom: 25px;
	border: 1px solid rgba(156, 130, 90, 0.25);
}

.hero-title {
	font-family: "Crimson Pro", Georgia, serif;
	font-size: clamp(42px, 8vw, 72px);
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 20px;
	letter-spacing: 1px;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: clamp(18px, 3vw, 22px);
	color: var(--text-muted);
	font-weight: 550;
	margin-bottom: 40px;
	font-style: italic;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.hero-cta {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero-decoration {
	position: absolute;
	top: 20%;
	right: 10%;
	z-index: 0;
}

.butterfly {
	font-size: 60px;
	opacity: 0.2;
	animation: butterfly-float 6s ease-in-out infinite;
}

@keyframes butterfly-float {
	0%,
	100% {
		transform: rotate(-15deg) translateY(0px);
		opacity: 0.2;
	}
	50% {
		transform: rotate(-5deg) translateY(-20px);
		opacity: 0.35;
	}
}

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	font-family: inherit;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-decoration: none;
	border-radius: 50px 12px 50px 12px;
	transition: var(--transition-smooth);
	cursor: pointer;
	border: 2px solid transparent;
}

.btn-icon {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.btn-primary {
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
	color: var(--white);
	border-color: var(--gold-dark);
	box-shadow: 0 4px 20px rgba(156, 130, 90, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(156, 130, 90, 0.4);
	background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.9);
	color: var(--gold-dark);
	border-color: rgba(156, 130, 90, 0.3);
}

.btn-secondary:hover {
	background: var(--white);
	border-color: var(--gold-dark);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(156, 130, 90, 0.2);
}

.btn-outline {
	background: transparent;
	color: var(--gold-dark);
	border-color: rgba(156, 130, 90, 0.4);
}

.btn-outline:hover {
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
	color: var(--white);
	border-color: var(--gold-dark);
}

.btn-outline i {
	transition: transform 0.3s ease;
}

.btn-outline:hover i {
	transform: translateX(5px);
}

/* ===== SECTIONS BASE ===== */
.section-container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 20px;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 10px;
}

.section-title {
	font-family: "Crimson Pro", Georgia, serif;
	font-size: clamp(28px, 5vw, 40px);
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: 1px;
}

.section-header .ornament {
	color: var(--gold-dark);
	font-size: 18px;
	opacity: 0.7;
}

.ornament-line {
	display: block;
	width: 60px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
	margin: 0 auto 15px;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
	padding: var(--section-padding) 0;
	background: rgba(255, 255, 255, 0.5);
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.product-card {
	background: var(--white);
	border-radius: 25px 8px 25px 8px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	border: 1px solid rgba(156, 130, 90, 0.15);
	transition: var(--transition-smooth);
	position: relative;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(156, 130, 90, 0.2);
	border-color: rgba(156, 130, 90, 0.3);
}

.product-image {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.1);
}

.product-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	padding: 8px 16px;
	border-radius: 20px 5px 20px 5px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 3px 10px rgba(156, 130, 90, 0.3);
}

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

.product-name {
	font-family: "Crimson Pro", Georgia, serif;
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 10px;
	letter-spacing: 0.2px;
	line-height: 1.3;
}

.product-description {
	font-size: 18px;
	color: #555555;
	font-style: italic;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.5;
}

.product-price {
	font-family: "Crimson Pro", Georgia, serif;
	display: inline-block;
	font-size: 22px;
	font-weight: 700;
	color: #5a4a2a;
}

.products-cta {
	text-align: center;
}

/* ===== ABOUT SECTION ===== */
.about-section {
	padding: var(--section-padding) 0;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
}

.about-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 350px;
	margin: 0 auto;
}

.about-image img {
	width: 100%;
	height: auto;
	max-height: 350px;
	object-fit: contain;
	object-position: center center;
	border-radius: 30px 10px 30px 10px;
	box-shadow: 0 20px 50px rgba(156, 130, 90, 0.2);
	background: var(--white);
	padding: 20px;
}

.about-text .ornament {
	display: block;
	color: var(--gold-dark);
	font-size: 24px;
	margin-bottom: 15px;
}

.about-text h2 {
	font-family: "Crimson Pro", Georgia, serif;
	font-size: clamp(28px, 5vw, 38px);
	font-weight: 700;
	margin-bottom: 25px;
	color: var(--text-dark);
}

.about-text p {
	font-size: 18px;
	color: var(--text-muted);
	margin-bottom: 20px;
	line-height: 1.8;
}

.about-features {
	display: flex;
	gap: 30px;
	margin-top: 35px;
	flex-wrap: wrap;
}

.feature {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--gold-dark);
	font-size: 16px;
	font-weight: 500;
}

.feature i {
	font-size: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
	padding: var(--section-padding) 0;
	background: rgba(255, 255, 255, 0.5);
}

.contact-main {
	max-width: 500px;
	margin: 0 auto 40px;
}

.contact-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 25px 35px;
	background: var(--white);
	border-radius: 20px 8px 20px 8px;
	text-decoration: none;
	color: inherit;
	border: 2px solid rgba(37, 211, 102, 0.3);
	transition: var(--transition-smooth);
}

.contact-card.whatsapp:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
	border-color: var(--whatsapp);
}

.contact-card i {
	font-size: 40px;
	color: var(--whatsapp);
}

.contact-card-title {
	font-family: "Crimson Pro", Georgia, serif;
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 3px;
}

.contact-card-subtitle {
	font-family: "Crimson Pro", Georgia, serif;
	font-size: 15px;
	color: var(--text-muted);
	font-style: italic;
}

/* Social Grid */
.social-grid {
	display: grid;
	font-family: "Crimson Pro", Georgia, serif;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 15px;
	max-width: 700px;
	margin: 0 auto;
}

.social-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 25px 15px;
	background: var(--white);
	border-radius: 15px 5px 15px 5px;
	text-decoration: none;
	border: 1px solid rgba(156, 130, 90, 0.15);
	transition: var(--transition-smooth);
}

.social-link:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-link i {
	font-size: 28px;
	transition: var(--transition-fast);
}

.social-link span {
	font-size: 14px;
	color: var(--text-muted);
	font-weight: 600;
}

.social-icon-img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

/* Social Colors */
.social-link.instagram:hover {
	border-color: var(--instagram);
}
.social-link.instagram i {
	color: var(--instagram);
}

.social-link.tiktok:hover {
	border-color: var(--tiktok);
}
.social-link.tiktok i {
	color: var(--tiktok);
}

.social-link.youtube:hover {
	border-color: var(--youtube);
}
.social-link.youtube i {
	color: var(--youtube);
}

.social-link.twitter:hover {
	border-color: var(--twitter);
}
.social-link.twitter i {
	color: var(--twitter);
}

.social-link.threads:hover {
	border-color: var(--threads);
}
.social-link.threads i {
	color: var(--threads);
}

.social-link.kwai:hover,
.social-link.bluesky:hover,
.social-link.shopee:hover {
	border-color: var(--gold-dark);
}

/* ===== FOOTER ===== */
.main-footer {
	background: var(--white);
	padding: 50px 20px 30px;
	border-top: 1px solid rgba(156, 130, 90, 0.15);
}

.footer-content {
	max-width: var(--container-max);
	margin: 0 auto;
	text-align: center;
}

.footer-brand {
	margin-bottom: 20px;
}

.footer-logo {
	font-family: "Crimson Pro", Georgia, serif;
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: 1px;
}

.footer-tagline {
	font-family: "Crimson Pro", Georgia, serif;
	font-size: 15px;
	color: var(--gold-dark);
	font-style: italic;
}

.footer-ornament {
	font-family: "Crimson Pro", Georgia, serif;
	color: var(--gold-dark);
	font-size: 20px;
	margin: 20px 0;
	opacity: 0.5;
}

.footer-copy {
	font-family: "Crimson Pro", Georgia, serif;
	font-size: 14px;
	color: var(--text-muted);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 60px;
	height: 60px;
	background: var(--whatsapp);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	text-decoration: none;
	box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
	z-index: 998;
	transition: var(--transition-smooth);
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
	.about-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-image {
		max-width: 400px;
		margin: 0 auto;
	}

	.about-text {
		text-align: center;
	}

	.about-features {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	:root {
		--header-height: 60px;
		--section-padding: 60px;
	}

	.main-nav {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	.mobile-menu {
		display: block;
	}

	.hero {
		padding-top: calc(var(--header-height) + 30px);
	}

	.hero-cta {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 100%;
		max-width: 280px;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.product-info {
		padding: 15px;
	}

	.product-name {
		font-size: 16px;
	}

	.product-price {
		font-size: 18px;
	}

	.social-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 10px;
	}

	.social-link {
		padding: 15px 10px;
	}

	.social-link i,
	.social-icon-img {
		font-size: 24px;
		width: 24px;
		height: 24px;
	}

	.social-link span {
		font-size: 11px;
	}

	.contact-card {
		flex-direction: column;
		text-align: center;
		padding: 25px 20px;
	}
}

@media (max-width: 480px) {
	.logo-text h1 {
		font-size: 18px;
	}

	.logo-text .tagline {
		display: none;
	}

	.hero-title {
		font-size: 36px;
	}

	.products-grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.product-card {
		border-radius: 15px 5px 15px 5px;
	}

	.product-info {
		padding: 12px;
	}

	.product-name {
		font-size: 14px;
	}

	.product-description {
		font-size: 12px;
		margin-bottom: 10px;
	}

	.product-price {
		font-size: 16px;
	}

	.product-badge {
		font-size: 9px;
		padding: 4px 10px;
		top: 10px;
		left: 10px;
	}

	.about-features {
		flex-direction: column;
		gap: 15px;
	}

	.social-grid {
		grid-template-columns: repeat(4, 1fr);
	}

	.whatsapp-float {
		width: 55px;
		height: 55px;
		font-size: 26px;
		bottom: 20px;
		right: 20px;
	}
}
