/*
Theme Name: Fique Belli Child
Theme URI: https://fiquebelli.com.br
Description: Tema editorial para a vitrine da Fique Belli.
Author: Codex
Template: blocksy
Version: 1.0.0
Text Domain: fique-belli-child
*/

:root {
	--fqb-bg: #f6eee8;
	--fqb-bg-soft: #fbf6f1;
	--fqb-surface: rgba(255, 250, 246, 0.78);
	--fqb-surface-strong: rgba(110, 46, 42, 0.08);
	--fqb-text: #2f1b1e;
	--fqb-text-soft: rgba(47, 27, 30, 0.72);
	--fqb-accent: #8a3d40;
	--fqb-accent-strong: #5f2527;
	--fqb-gold: #bb8b4d;
	--fqb-line: rgba(73, 29, 31, 0.12);
	--fqb-shadow: 0 24px 80px rgba(74, 30, 33, 0.14);
	--fqb-radius-xl: 32px;
	--fqb-radius-lg: 24px;
	--fqb-radius-md: 18px;
	--fqb-shell: min(1180px, calc(100vw - 32px));
}

body.fqb-home {
	background:
		radial-gradient(circle at top left, rgba(221, 173, 123, 0.35), transparent 28%),
		radial-gradient(circle at 85% 12%, rgba(138, 61, 64, 0.16), transparent 23%),
		linear-gradient(180deg, #fdf8f4 0%, var(--fqb-bg) 32%, #f1e5df 100%);
	color: var(--fqb-text);
	font-family: "Manrope", sans-serif;
}

body.fqb-home .site-main,
body.fqb-home main {
	position: relative;
}

body.fqb-home::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 82%);
	opacity: 0.3;
}

.fqb-site-main {
	padding-bottom: 56px;
}

.fqb-shell {
	width: var(--fqb-shell);
	margin: 0 auto;
}

.fqb-section {
	position: relative;
	padding: 28px 0;
}

.fqb-card {
	background: var(--fqb-surface);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: var(--fqb-radius-xl);
	box-shadow: var(--fqb-shadow);
	backdrop-filter: blur(18px);
}

.fqb-overline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.76rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--fqb-accent);
	font-weight: 800;
}

.fqb-overline::before {
	content: "";
	width: 42px;
	height: 1px;
	background: linear-gradient(90deg, var(--fqb-accent), transparent);
}

.fqb-title,
.fqb-hero h1,
.fqb-routine__title,
.fqb-editorial__title {
	font-family: "Cormorant Garamond", serif;
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 0.95;
	color: var(--fqb-text);
}

.fqb-hero {
	padding-top: 42px;
}

.fqb-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
	gap: 22px;
	align-items: stretch;
}

.fqb-hero__copy {
	padding: clamp(28px, 4vw, 54px);
	position: relative;
	overflow: hidden;
}

.fqb-hero__copy::after {
	content: "";
	position: absolute;
	right: -110px;
	top: -110px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(187, 139, 77, 0.2), transparent 72%);
}

.fqb-hero h1 {
	margin: 18px 0 18px;
	font-size: clamp(3.1rem, 8vw, 5.8rem);
	max-width: 11ch;
}

.fqb-hero p,
.fqb-section-head p,
.fqb-editorial__feature p,
.fqb-routine p,
.fqb-chip span,
.fqb-note span,
.fqb-proof__item span {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--fqb-text-soft);
}

.fqb-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 28px 0 34px;
}

.fqb-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.fqb-button:hover {
	transform: translateY(-2px);
}

.fqb-button--primary {
	background: linear-gradient(135deg, var(--fqb-accent) 0%, var(--fqb-accent-strong) 100%);
	color: #fff6f2;
	box-shadow: 0 18px 34px rgba(95, 37, 39, 0.25);
}

.fqb-button--ghost {
	background: rgba(255, 255, 255, 0.48);
	color: var(--fqb-text);
	border: 1px solid rgba(95, 37, 39, 0.12);
}

.fqb-chip-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.fqb-chip {
	padding: 18px 18px 16px;
	border-radius: var(--fqb-radius-md);
	background: rgba(255, 255, 255, 0.54);
	border: 1px solid rgba(95, 37, 39, 0.08);
}

.fqb-chip strong,
.fqb-proof__item strong,
.fqb-note strong {
	display: block;
	margin-bottom: 8px;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.fqb-hero__visual {
	position: relative;
	min-height: 100%;
	padding: 22px;
	overflow: hidden;
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.75), transparent 30%),
		linear-gradient(180deg, rgba(121, 56, 61, 0.98), rgba(58, 18, 23, 0.96));
}

.fqb-hero__visual::before,
.fqb-hero__visual::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.fqb-hero__visual::before {
	width: 320px;
	height: 320px;
	right: -70px;
	top: 32px;
}

.fqb-hero__visual::after {
	width: 220px;
	height: 220px;
	left: -64px;
	bottom: 32px;
}

.fqb-bottle-stack {
	position: relative;
	display: grid;
	align-content: end;
	min-height: 100%;
	padding: clamp(28px, 5vw, 52px);
}

.fqb-bottle {
	position: relative;
	align-self: end;
	justify-self: center;
	width: clamp(180px, 48%, 250px);
	aspect-ratio: 1 / 1.9;
	border-radius: 28px 28px 36px 36px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 218, 192, 0.82) 36%, rgba(186, 123, 76, 0.88) 100%);
	box-shadow:
		0 40px 44px rgba(20, 8, 10, 0.3),
		inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.fqb-bottle::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -28px;
	transform: translateX(-50%);
	width: 42%;
	height: 34px;
	border-radius: 14px 14px 10px 10px;
	background: linear-gradient(180deg, rgba(60, 22, 24, 0.95), rgba(131, 68, 38, 0.94));
}

.fqb-bottle::after {
	content: "";
	position: absolute;
	inset: 22% 18%;
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 246, 238, 0.86), rgba(255, 226, 201, 0.36)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	box-shadow: inset 0 0 0 1px rgba(95, 37, 39, 0.08);
}

.fqb-bottle--small {
	position: absolute;
	left: 10%;
	bottom: 28px;
	width: clamp(120px, 34%, 165px);
	aspect-ratio: 1 / 1.7;
	border-radius: 26px 26px 30px 30px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 231, 220, 0.9) 34%, rgba(176, 118, 107, 0.92) 100%);
}

.fqb-bottle-copy {
	position: absolute;
	left: 22px;
	right: 22px;
	top: 22px;
	padding: 18px 18px 16px;
	border-radius: var(--fqb-radius-md);
	background: rgba(255, 252, 248, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(8px);
	color: #fff5ef;
}

.fqb-bottle-copy strong {
	display: block;
	margin-bottom: 6px;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.fqb-bottle-copy span {
	display: block;
	font-size: 0.96rem;
	line-height: 1.65;
	color: rgba(255, 245, 239, 0.84);
}

.fqb-proof {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.fqb-proof__item {
	padding: 18px 18px 16px;
	border-radius: var(--fqb-radius-md);
	background: rgba(255, 250, 247, 0.62);
	border: 1px solid var(--fqb-line);
}

.fqb-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 22px;
	margin-bottom: 24px;
}

.fqb-section-head p {
	max-width: 480px;
	margin: 0;
}

.fqb-title {
	margin: 12px 0 0;
	font-size: clamp(2.3rem, 4vw, 4rem);
}

.fqb-category-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.fqb-category {
	position: relative;
	display: grid;
	min-height: 260px;
	padding: 26px;
	border-radius: var(--fqb-radius-xl);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	background: linear-gradient(160deg, rgba(255, 250, 246, 0.84), rgba(248, 240, 235, 0.88));
	border: 1px solid rgba(95, 37, 39, 0.1);
	box-shadow: 0 18px 50px rgba(74, 30, 33, 0.09);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fqb-category:hover {
	transform: translateY(-4px);
	box-shadow: 0 26px 60px rgba(74, 30, 33, 0.13);
}

.fqb-category__eyebrow {
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--fqb-accent);
}

.fqb-category__title {
	margin: 18px 0 10px;
	font-family: "Cormorant Garamond", serif;
	font-size: 2.2rem;
	line-height: 0.95;
}

.fqb-category__copy {
	max-width: 32ch;
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.7;
	color: var(--fqb-text-soft);
}

.fqb-category__art {
	position: absolute;
	right: -32px;
	bottom: -20px;
	width: 180px;
	height: 180px;
	border-radius: 44px;
	opacity: 0.75;
	transform: rotate(18deg);
}

.fqb-category--cabelo .fqb-category__art {
	background: linear-gradient(160deg, rgba(162, 87, 68, 0.74), rgba(230, 204, 173, 0.22));
}

.fqb-category--skincare .fqb-category__art {
	background: linear-gradient(160deg, rgba(207, 176, 136, 0.82), rgba(255, 243, 227, 0.2));
}

.fqb-category--maquiagem .fqb-category__art {
	background: linear-gradient(160deg, rgba(153, 65, 82, 0.82), rgba(242, 196, 186, 0.24));
}

.fqb-category--perfumaria .fqb-category__art {
	background: linear-gradient(160deg, rgba(122, 52, 58, 0.78), rgba(221, 194, 150, 0.2));
}

.fqb-category--corpo-banho .fqb-category__art {
	background: linear-gradient(160deg, rgba(197, 150, 120, 0.82), rgba(255, 244, 228, 0.24));
}

.fqb-category--dermocosmeticos .fqb-category__art {
	background: linear-gradient(160deg, rgba(170, 115, 108, 0.76), rgba(242, 233, 228, 0.24));
}

.fqb-link {
	color: var(--fqb-accent-strong);
	font-weight: 800;
	text-decoration: none;
}

.fqb-routines {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.fqb-routine {
	padding: 26px;
}

.fqb-routine__kicker {
	display: inline-block;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--fqb-accent);
}

.fqb-routine__title {
	margin: 16px 0 10px;
	font-size: 2.15rem;
}

.fqb-routine ul {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.fqb-routine li {
	position: relative;
	padding-left: 18px;
	color: var(--fqb-text-soft);
}

.fqb-routine li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--fqb-gold);
}

.fqb-brand-strip {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.fqb-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	padding: 18px;
	border-radius: 999px;
	background: rgba(255, 250, 246, 0.68);
	border: 1px solid var(--fqb-line);
	text-decoration: none;
	color: var(--fqb-text);
	text-align: center;
	box-shadow: 0 16px 44px rgba(74, 30, 33, 0.08);
}

.fqb-brand span {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.7rem;
	line-height: 1.1;
}

.fqb-editorial {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: 18px;
}

.fqb-editorial__feature,
.fqb-editorial__notes {
	padding: clamp(26px, 4vw, 42px);
}

.fqb-editorial__feature {
	background:
		radial-gradient(circle at top right, rgba(255, 255, 255, 0.46), transparent 26%),
		linear-gradient(160deg, rgba(89, 35, 39, 0.96), rgba(50, 18, 22, 0.98));
	color: #fdf1ea;
}

.fqb-editorial__feature .fqb-overline,
.fqb-editorial__feature .fqb-editorial__title,
.fqb-editorial__feature p {
	color: #fdf1ea;
}

.fqb-editorial__feature .fqb-overline::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
}

.fqb-editorial__title {
	margin: 16px 0 14px;
	font-size: clamp(2.5rem, 5vw, 4.1rem);
	max-width: 12ch;
}

.fqb-footer-cta {
	margin-top: 28px;
}

.fqb-note-list {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}

.fqb-note {
	padding: 18px;
	border-radius: var(--fqb-radius-md);
	background: rgba(255, 255, 255, 0.54);
	border: 1px solid rgba(95, 37, 39, 0.1);
}

@media (max-width: 1100px) {
	.fqb-chip-row,
	.fqb-proof,
	.fqb-category-grid,
	.fqb-routines,
	.fqb-brand-strip,
	.fqb-editorial,
	.fqb-hero__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fqb-proof,
	.fqb-brand-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fqb-editorial {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 780px) {
	.fqb-section {
		padding: 18px 0;
	}

	.fqb-hero {
		padding-top: 20px;
	}

	.fqb-hero__grid,
	.fqb-chip-row,
	.fqb-proof,
	.fqb-category-grid,
	.fqb-routines,
	.fqb-brand-strip {
		grid-template-columns: 1fr;
	}

	.fqb-section-head {
		display: grid;
	}

	.fqb-hero__copy,
	.fqb-routine,
	.fqb-editorial__feature,
	.fqb-editorial__notes {
		padding: 24px;
	}

	.fqb-bottle-stack {
		min-height: 420px;
		padding: 84px 18px 26px;
	}

	.fqb-bottle-copy {
		position: static;
		margin-bottom: 26px;
	}

	.fqb-bottle--small {
		left: 6%;
		bottom: 18px;
	}

	.fqb-brand {
		min-height: 82px;
	}
}
