/* ===================================================
   RX Automação de Marketing — Landing de Vendas
   XD Company 2.0 — Cyberpunk/Sci-Fi
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

.rxamv-page {
	--rxamv-bg: #05020F;
	--rxamv-surface: #0D0720;
	--rxamv-section: #1A0A3D;
	--rxamv-section-2: #280E5A;
	--rxamv-primary: #7B2FE0;
	--rxamv-nova: #9D5FF5;
	--rxamv-magenta: #FF2D8A;
	--rxamv-cyan: #00E5FF;
	--rxamv-text: #F0EAFF;
	--rxamv-gradient: linear-gradient(135deg, #00E5FF 0%, #7B2FE0 50%, #FF2D8A 100%);

	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: var(--rxamv-bg);
	color: var(--rxamv-text);
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	overflow: hidden;
	isolation: isolate;
	box-sizing: border-box;
}

.rxamv-page * {
	box-sizing: border-box;
}

/* ---------- Background effects ---------- */
.rxamv-page::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(transparent 0%, var(--rxamv-bg) 90%),
		repeating-linear-gradient(0deg, rgba(123,47,224,0.08) 0px, rgba(123,47,224,0.08) 1px, transparent 1px, transparent 40px),
		repeating-linear-gradient(90deg, rgba(0,229,255,0.06) 0px, rgba(0,229,255,0.06) 1px, transparent 1px, transparent 40px);
	transform: perspective(500px) rotateX(60deg) scale(2);
	transform-origin: center top;
	opacity: .35;
	pointer-events: none;
}

.rxamv-page::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 15% 20%, rgba(123,47,224,0.35), transparent 40%),
		radial-gradient(circle at 85% 75%, rgba(255,45,138,0.22), transparent 40%),
		radial-gradient(circle at 50% 50%, rgba(0,229,255,0.10), transparent 50%);
	filter: blur(60px);
	pointer-events: none;
	animation: rxamv-orbs-float 18s ease-in-out infinite alternate;
}

@keyframes rxamv-orbs-float {
	0%   { transform: translate(0,0) scale(1); }
	50%  { transform: translate(20px,-30px) scale(1.08); }
	100% { transform: translate(-15px,15px) scale(0.96); }
}

@keyframes rxamv-fade-in {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Generic blocks ---------- */
.rxamv-block {
	max-width: 1080px;
	margin: 0 auto;
	padding: 72px clamp(20px, 5vw, 64px);
	animation: rxamv-fade-in .6s ease both;
}

.rxamv-block-center {
	text-align: center;
}

.rxamv-eyebrow {
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	font-size: 12px;
	color: var(--rxamv-cyan);
	margin-bottom: 16px;
}

.rxamv-section-title {
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	font-size: clamp(24px, 4vw, 32px);
	text-align: center;
	margin: 0 0 40px;
	background: var(--rxamv-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.rxamv-text {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(240,234,255,0.75);
	max-width: 720px;
}

.rxamv-text-center {
	margin: 0 auto;
	text-align: center;
}

.rxamv-text-muted {
	color: rgba(240,234,255,0.5);
	font-size: 14px;
}

.rxamv-lead {
	font-family: 'Orbitron', sans-serif;
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 700;
	line-height: 1.5;
	margin: 0 0 24px;
}

.rxamv-lead strong {
	background: var(--rxamv-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* ---------- Hero ---------- */
.rxamv-hero {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 100px clamp(20px, 5vw, 64px) 80px;
	text-align: center;
	animation: rxamv-fade-in .7s ease both;
}

.rxamv-title {
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	font-size: clamp(32px, 6vw, 52px);
	line-height: 1.25;
	margin: 0 0 24px;
}

.rxamv-highlight {
	background: var(--rxamv-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.rxamv-subtitle {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(240,234,255,0.75);
	max-width: 680px;
	margin: 0 auto 40px;
}

.rxamv-hero-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.rxamv-hero-note {
	font-size: 13px;
	color: rgba(240,234,255,0.45);
	letter-spacing: 0.05em;
}

/* ---------- Buttons ---------- */
.rxamv-btn {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 15px;
	border: none;
	border-radius: 999px;
	padding: 18px 36px;
	cursor: pointer;
	transition: all .2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	white-space: nowrap;
}

.rxamv-btn-primary {
	background: var(--rxamv-gradient);
	color: #05020F;
	box-shadow: 0 8px 24px rgba(123,47,224,0.4);
}

.rxamv-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0,229,255,0.35);
	color: #05020F;
}

.rxamv-btn-ghost {
	background: transparent;
	color: var(--rxamv-text);
	border: 1px solid rgba(240,234,255,0.25);
}

.rxamv-btn-ghost:hover {
	border-color: var(--rxamv-cyan);
	color: var(--rxamv-cyan);
	transform: translateY(-2px);
}

.rxamv-btn-full {
	width: 100%;
}

.rxamv-btn-arrow {
	transition: transform .2s ease;
}

.rxamv-btn:hover .rxamv-btn-arrow {
	transform: translateX(4px);
}

/* ---------- Cards (dores) ---------- */
.rxamv-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 32px;
}

@media (max-width: 900px) {
	.rxamv-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
	.rxamv-cards { grid-template-columns: 1fr; }
}

.rxamv-card {
	background: linear-gradient(160deg, var(--rxamv-surface), var(--rxamv-section));
	border: 1px solid rgba(157,95,245,0.2);
	border-radius: 16px;
	padding: 28px 24px;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(240,234,255,0.85);
	transition: all .25s ease;
}

.rxamv-card:hover {
	border-color: var(--rxamv-cyan);
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,229,255,0.12);
}

.rxamv-card-icon {
	font-size: 28px;
	margin-bottom: 14px;
	filter: drop-shadow(0 0 10px var(--rxamv-magenta));
}

/* ---------- Products ---------- */
.rxamv-products {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: stretch;
}

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

.rxamv-product {
	position: relative;
	background: linear-gradient(160deg, var(--rxamv-surface), var(--rxamv-section));
	border: 1px solid rgba(157,95,245,0.22);
	border-radius: 20px;
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	transition: all .25s ease;
}

.rxamv-product:hover {
	transform: translateY(-4px);
	border-color: rgba(157,95,245,0.4);
}

.rxamv-product-featured {
	border-color: var(--rxamv-cyan);
	box-shadow: 0 0 0 1px var(--rxamv-cyan), 0 16px 48px rgba(0,229,255,0.15);
	background: linear-gradient(160deg, var(--rxamv-surface), var(--rxamv-section-2));
}

.rxamv-product-tag {
	display: inline-block;
	align-self: flex-start;
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--rxamv-nova);
	border: 1px solid rgba(157,95,245,0.4);
	border-radius: 999px;
	padding: 6px 14px;
	margin-bottom: 18px;
}

.rxamv-product-tag-highlight {
	color: var(--rxamv-bg);
	background: var(--rxamv-gradient);
	border-color: transparent;
}

.rxamv-product-icon {
	font-size: 32px;
	margin-bottom: 12px;
	filter: drop-shadow(0 0 12px var(--rxamv-cyan));
}

.rxamv-product-name {
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	font-size: 22px;
	margin: 0 0 6px;
}

.rxamv-product-desc {
	font-size: 14px;
	color: rgba(240,234,255,0.55);
	margin: 0 0 24px;
}

.rxamv-product-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.rxamv-product-list li {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(240,234,255,0.8);
	padding-left: 26px;
	position: relative;
}

.rxamv-product-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--rxamv-cyan);
	font-weight: 700;
}

.rxamv-product-price {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	margin-bottom: 24px;
}

.rxamv-price-currency {
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: rgba(240,234,255,0.6);
	margin-bottom: 6px;
}

.rxamv-price-value {
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	font-size: 44px;
	line-height: 1;
	background: var(--rxamv-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.rxamv-upsell-note {
	margin-top: 32px;
}

/* ---------- Steps ---------- */
.rxamv-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

@media (max-width: 860px) {
	.rxamv-steps { grid-template-columns: 1fr; }
}

.rxamv-step {
	text-align: center;
	padding: 28px 20px;
}

.rxamv-step-number {
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	font-size: 36px;
	color: var(--rxamv-cyan);
	text-shadow: 0 0 16px rgba(0,229,255,0.4);
	margin-bottom: 12px;
}

.rxamv-step h4 {
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	font-size: 16px;
	margin: 0 0 10px;
}

.rxamv-step p {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(240,234,255,0.65);
	margin: 0;
}

/* ---------- Transformation ---------- */
.rxamv-transform {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: center;
}

.rxamv-transform-side {
	flex: 1;
	min-width: 240px;
	max-width: 380px;
	background: linear-gradient(160deg, var(--rxamv-surface), var(--rxamv-section));
	border: 1px solid rgba(157,95,245,0.2);
	border-radius: 16px;
	padding: 28px;
	font-size: 15px;
	line-height: 1.7;
	color: rgba(240,234,255,0.8);
}

.rxamv-transform-after {
	border-color: var(--rxamv-cyan);
}

.rxamv-transform-tag {
	display: inline-block;
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	border-radius: 999px;
	padding: 6px 14px;
	margin-bottom: 14px;
}

.rxamv-tag-before {
	color: var(--rxamv-magenta);
	border: 1px solid rgba(255,45,138,0.4);
}

.rxamv-tag-after {
	color: var(--rxamv-cyan);
	border: 1px solid rgba(0,229,255,0.4);
}

.rxamv-transform-arrow {
	font-size: 28px;
	color: var(--rxamv-nova);
}

/* ---------- Objections ---------- */
.rxamv-objections {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

.rxamv-objection {
	background: rgba(255,45,138,0.06);
	border: 1px solid rgba(255,45,138,0.25);
	border-radius: 999px;
	padding: 12px 22px;
	font-size: 14px;
	color: rgba(240,234,255,0.8);
}

/* ---------- Final CTA ---------- */
.rxamv-cta-final {
	max-width: 760px;
	margin: 0 auto;
	padding: 80px clamp(20px, 5vw, 64px) 120px;
	text-align: center;
	animation: rxamv-fade-in .6s ease both;
}

.rxamv-cta-title {
	font-family: 'Orbitron', sans-serif;
	font-weight: 900;
	font-size: clamp(24px, 4vw, 36px);
	margin: 0 0 18px;
	background: var(--rxamv-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.rxamv-cta-text {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(240,234,255,0.75);
	margin: 0 0 36px;
}

.rxamv-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
