/* RESET */
:root {
	--bg-base: #0e0000;
	--wine-deep: #1a0000;
	--red-deep: #360707;
	--red-glow: #ff2a2a;
	--orange-accent: #ff7b00;
	--gold-premium: #ffb347;
	--text-white: #f5f5f5;
	--glass-bg: rgba(0, 0, 0, 0.55);
	--glass-border: rgba(255, 60, 60, 0.4);
	--transition: 0.3s ease;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

img {
	display: block;
	max-width: 100%;
}

body {
	font-family: "Poppins", sans-serif;
	color: var(--text-white);
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
	background: radial-gradient(circle at top, #5a0000 0%, #1a0000 40%, #0e0000 100%);
}

/* BACKGROUND */
body::before {
	content: "";
	position: fixed;
	inset: -25%;
	background:
		radial-gradient(circle at 18% 24%, rgba(255, 42, 42, 0.11), transparent 44%),
		radial-gradient(circle at 82% 68%, rgba(255, 123, 0, 0.09), transparent 42%),
		radial-gradient(circle at 52% 92%, rgba(255, 42, 42, 0.08), transparent 52%);
	filter: blur(10px);
	pointer-events: none;
	z-index: -3;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	background: radial-gradient(circle at center, transparent 54%, rgba(0, 0, 0, 0.7) 100%);
	pointer-events: none;
	z-index: -2;
}

.bg-smoke {
	position: fixed;
	inset: 0;
	background:
		radial-gradient(ellipse at 16% 25%, rgba(255, 90, 0, 0.09), transparent 56%),
		radial-gradient(ellipse at 86% 48%, rgba(255, 42, 42, 0.1), transparent 60%),
		radial-gradient(ellipse at 50% 92%, rgba(150, 10, 10, 0.13), transparent 58%);
	mix-blend-mode: screen;
	pointer-events: none;
	z-index: -1;
}

.page {
	width: min(100%, 1140px);
	margin: 0 auto;
	padding: 16px 12px 56px;
}

.divider {
	height: 2px;
	margin: 30px 0;
	background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.5), transparent);
}

.glass {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 0 36px rgba(255, 0, 0, 0.22);
}

/* HERO */
.hero {
	text-align: center;
	padding: 6px 0 10px;
	position: relative;
}

.hero-title {
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.03;
	font-size: clamp(1.7rem, 8vw, 2.38rem);
	text-shadow: 0 0 18px rgba(255, 42, 42, 0.34);
	text-wrap: balance;
}

.hero-title span {
	display: block;
}

.hero-title em {
	font-style: normal;
	background: linear-gradient(45deg, #ff7b00, #ff2a2a);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-subtitle {
	margin-top: 10px;
	font-family: "Montserrat", sans-serif;
	font-weight: 800;
	font-size: clamp(1rem, 4.8vw, 1.3rem);
	opacity: 0.96;
}

/* BENEFICIOS */
.hero-card {
	margin-top: 16px;
	padding: 20px 14px;
}

.benefits-list {
	list-style: none;
	display: grid;
	gap: 12px;
	text-align: left;
	font-size: clamp(0.92rem, 3.8vw, 1.04rem);
	font-weight: 500;
}

.benefits-list li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.icon-check {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(255, 42, 42, 0.16);
	border: 1px solid rgba(255, 42, 42, 0.62);
	color: #ff5c5c;
	font-weight: 700;
	flex-shrink: 0;
}

.product-highlight {
	margin-top: 14px;
	padding: 18px 14px;
	text-align: left;
}

.product-highlight strong {
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	font-size: clamp(1.25rem, 5.5vw, 1.7rem);
	color: var(--gold-premium);
	display: block;
	margin-bottom: 7px;
}

.product-highlight p {
	font-size: clamp(0.9rem, 3.8vw, 1rem);
	opacity: 0.94;
}

/* PARA QUEM É */
.section {
	padding: 6px 0;
}

.section-title {
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	font-size: clamp(1.36rem, 6.2vw, 2.05rem);
	line-height: 1.08;
	text-align: center;
	text-shadow: 0 0 14px rgba(255, 42, 42, 0.24);
	margin-bottom: 16px;
}

.section-title span {
	color: var(--orange-accent);
}

.who-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.who-card {
	padding: 18px 14px;
}

.who-card h3 {
	font-size: clamp(1.02rem, 4.8vw, 1.18rem);
	margin-bottom: 10px;
	font-weight: 600;
}

.who-card ul {
	list-style: none;
	display: grid;
	gap: 9px;
	font-size: clamp(0.9rem, 3.7vw, 0.98rem);
}

.who-card li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.li-icon {
	width: 21px;
	height: 21px;
	border-radius: 50%;
	display: inline-grid;
	place-items: center;
	font-size: 0.84rem;
	font-weight: 700;
	flex-shrink: 0;
}

.check-mini {
	border: 1px solid rgba(255, 42, 42, 0.62);
	background: rgba(255, 42, 42, 0.14);
	color: #ff6767;
}

.x-mini {
	border: 1px solid rgba(255, 42, 42, 0.45);
	background: rgba(255, 42, 42, 0.09);
	color: #ff3e3e;
}

.positive {
	border-color: rgba(255, 42, 42, 0.72);
	box-shadow: 0 0 46px rgba(255, 42, 42, 0.28);
}

.negative {
	border-color: rgba(255, 60, 60, 0.25);
	box-shadow: 0 0 28px rgba(255, 42, 42, 0.12);
}

/* RESULTADOS */
.results-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.result-card {
	padding: 18px 14px;
	transition: transform var(--transition), box-shadow var(--transition);
}

.result-card:hover,
.result-card:active {
	transform: translateY(-10px);
	box-shadow:
		0 0 60px rgba(255, 42, 42, 0.34),
		0 20px 28px rgba(0, 0, 0, 0.4);
}

.avatar {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	font-size: 0.95rem;
	letter-spacing: 0.4px;
	border: 2px solid rgba(255, 123, 0, 0.6);
	background: radial-gradient(circle at 35% 30%, #ff7b00, #ff2a2a);
	color: #ffffff;
	box-shadow: 0 0 22px rgba(255, 80, 0, 0.65);
	margin-bottom: 12px;
}

.result-card h3 {
	font-size: 1.04rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.result-card p {
	font-size: 0.9rem;
	opacity: 0.92;
	margin-bottom: 12px;
}

.testimonial-image {
	width: 100%;
	border-radius: 14px;
	border: 1px solid rgba(255, 90, 90, 0.45);
	box-shadow:
		0 0 20px rgba(255, 42, 42, 0.2),
		0 8px 18px rgba(0, 0, 0, 0.35);
	object-fit: cover;
}

/* GARANTIA */
.guarantee-grid {
	padding: 20px 14px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: center;
}

.seal-wrap {
	display: grid;
	place-items: center;
}

.seal {
	width: min(58vw, 190px);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	font-size: clamp(1.15rem, 5.4vw, 1.5rem);
	color: #2b1200;
	background: radial-gradient(circle at 30% 28%, #ffecbf 0%, #ffb347 45%, #9e5d00 100%);
	box-shadow:
		inset 0 0 24px rgba(255, 255, 255, 0.25),
		0 0 30px rgba(255, 179, 71, 0.55),
		0 0 0 6px rgba(255, 179, 71, 0.14);
}

.guarantee-content .section-title {
	text-align: left;
	margin-bottom: 10px;
}

.guarantee-content p {
	font-size: clamp(0.9rem, 3.8vw, 1rem);
	opacity: 0.94;
}

/* CTA FINAL */
.cta-final {
	margin-top: 20px;
	padding: 28px 14px;
	border-radius: 26px;
	position: relative;
	text-align: center;
	background:
		linear-gradient(150deg, rgba(10, 0, 0, 0.96), rgba(3, 0, 0, 0.98)),
		radial-gradient(circle at center, rgba(255, 42, 42, 0.14), rgba(255, 123, 0, 0.05));
	border: 1px solid rgba(255, 70, 70, 0.3);
	overflow: hidden;
}


.cta-final h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	font-size: clamp(1.4rem, 6.4vw, 2rem);
	line-height: 1.08;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.cta-final p {
	font-size: clamp(0.9rem, 3.8vw, 1rem);
	opacity: 0.92;
	margin-bottom: 18px;
}

.cta-glow {
	position: absolute;
	left: 50%;
	top: 68%;
	transform: translate(-50%, -50%);
	width: min(92vw, 520px);
	height: 170px;
	background: radial-gradient(circle, rgba(255, 80, 0, 0.56) 0%, rgba(255, 80, 0, 0.13) 46%, rgba(255, 80, 0, 0) 76%);
	filter: blur(18px);
	z-index: 0;
}

.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 15px 20px;
	border-radius: 60px;
	border: 0;
	text-decoration: none;
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	font-size: clamp(0.9rem, 3.9vw, 1rem);
	letter-spacing: 0.7px;
	text-transform: uppercase;
	color: #ffffff;
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition);
	z-index: 1;
}

.btn-hero,
.btn-final {
	margin-top: 14px;
	background: linear-gradient(45deg, #ff3c00, #ff7b00);
	box-shadow: 0 0 30px rgba(255, 80, 0, 0.8);
}

.btn:hover,
.btn:focus-visible {
	transform: scale(1.05);
	box-shadow:
		0 0 30px rgba(255, 80, 0, 0.95),
		0 0 60px rgba(255, 80, 0, 0.45);
}

.btn:focus-visible {
	outline: 2px solid rgba(255, 180, 130, 0.9);
	outline-offset: 2px;
}

.shine::after {
	content: "";
	position: absolute;
	top: -120%;
	left: -170%;
	width: 68%;
	height: 270%;
	background: linear-gradient(112deg, transparent 10%, rgba(255, 255, 255, 0.46) 50%, transparent 90%);
	transform: rotate(18deg);
	animation: shineMove 2.8s linear infinite;
}

/* ANIMACOES */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes shineMove {
	0% {
		left: -190%;
	}
	100% {
		left: 190%;
	}
}

/* RESPONSIVIDADE */
@media (min-width: 768px) {
	.page {
		padding: 26px 24px 74px;
	}

	.hero {
		padding-top: 12px;
	}

	.hero-title {
		font-size: clamp(2.2rem, 5.5vw, 3.3rem);
	}

	.hero-subtitle {
		font-size: 1.35rem;
	}

	.hero-card,
	.product-highlight,
	.guarantee-grid {
		padding: 24px 22px;
	}

	.who-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px;
	}

	.results-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	.guarantee-grid {
		grid-template-columns: 250px 1fr;
		gap: 22px;
	}

	.btn-hero {
		max-width: 440px;
	}

	.btn-final {
		max-width: 430px;
	}

}

@media (min-width: 1024px) {
	.page {
		padding: 30px 32px 88px;
	}

	.hero-title {
		font-size: 3.9rem;
	}

	.section-title {
		font-size: 2.45rem;
	}

	.cta-final {
		padding: 42px 26px;
	}
}
