:root {
	/* ============ BRAND COLORS ============ */
	--bordo: #6B1B2C;
	--bordo-deep: #4A1320;
	--bordo-warm: #8B2A3D;
	--gold: #CDA34F;
	--gold-light: #E5C883;
	--gold-deep: #9B7B33;
	--cream: #F5E6C8;

	/* ============ DARK THEME (único) ============ */
	--navy: #0A1628;
	--navy-deep: #050D1C;
	--navy-elevated: #0F1F38;
	--white: #FFFFFF;

	--bg-page: #0A1628;
	--bg-page-deep: #050D1C;
	--bg-elevated: #0F1F38;
	--bg-card: rgba(255, 255, 255, 0.02);
	--bg-card-hover: rgba(205, 163, 79, 0.04);

	--text-primary: #FFFFFF;
	--text-soft: rgba(255, 255, 255, 0.85);
	--text-muted: rgba(245, 230, 200, 0.7);
	--text-on-gold: #050D1C;

	--border-gold: rgba(205, 163, 79, 0.25);
	--border-gold-strong: rgba(205, 163, 79, 0.5);
	--border-subtle: rgba(205, 163, 79, 0.15);

	--gold-display: var(--gold);
	--gold-display-light: var(--gold-light);

	--ambient-bordo-1: rgba(107, 27, 44, 0.28);
	--ambient-bordo-2: rgba(74, 19, 32, 0.22);
	--ambient-gold: rgba(205, 163, 79, 0.05);
	--grain-opacity: 0.04;
	--hero-glow: rgba(205, 163, 79, 0.12);
	--pain-bg: rgba(74, 19, 32, 0.15);
	--about-bg: rgba(107, 27, 44, 0.1);
	--results-bg: rgba(74, 19, 32, 0.2);
	--cta-glow: rgba(107, 27, 44, 0.25);
	--header-bg-scrolled: rgba(5, 13, 28, 0.85);
	--header-bg: rgba(10, 22, 40, 0);
	--modal-overlay: rgba(5, 13, 28, 0.85);
	--modal-bg-start: var(--navy-elevated);
	--modal-bg-end: var(--navy-deep);

	--pillar-bg-start: rgba(15, 31, 56, 0.7);
	--pillar-bg-end: rgba(10, 22, 40, 0.95);
	--pillar-bordo-start: rgba(107, 27, 44, 0.25);
	--pillar-bordo-end: rgba(74, 19, 32, 0.4);

	--portrait-bg: var(--navy-elevated);
	--footer-bg: var(--navy-deep);
	--pill-bg: rgba(255, 255, 255, 0.04);
	--input-bg: rgba(255, 255, 255, 0.04);
	--input-bg-focus: rgba(205, 163, 79, 0.06);
	--input-placeholder: rgba(245, 230, 200, 0.35);

	--shadow-cta: 0 4px 24px rgba(205, 163, 79, 0.25);
	--shadow-cta-hover: 0 8px 32px rgba(205, 163, 79, 0.4);
	--shadow-bordo: 0 8px 28px rgba(107, 27, 44, 0.4);
	--shadow-pillar-hover: 0 20px 50px -20px rgba(205, 163, 79, 0.25);
	--shadow-modal: 0 30px 80px rgba(0, 0, 0, 0.5);

	/* Tipografia */
	--font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
	--font-body: 'Manrope', system-ui, -apple-system, sans-serif;

	/* Escala */
	--text-mega: clamp(3rem, 8vw, 6.5rem);
	--text-hero: clamp(2.25rem, 5.5vw, 4.5rem);
	--text-h2: clamp(1.875rem, 4vw, 3rem);
	--text-h3: clamp(1.375rem, 2.4vw, 1.75rem);
	--text-lead: clamp(1.0625rem, 1.4vw, 1.25rem);
	--text-body: 1rem;
	--text-small: 0.875rem;
	--text-tiny: 0.75rem;

	/* Espaçamento */
	--space-section: clamp(4.5rem, 9vw, 8rem);
	--container: 1240px;

	/* Hero BG */
	--hero-bg-img: url('img/bg-hero.webp');
	--hero-bg-veil: 0;
}

#logo-mobile {
	display: none !important;
	text-align: center;
	width: 100%;
	margin-top: .8rem;
	justify-content: center;
}

@media (max-width: 900px) {
	:root {
		--hero-bg-img: url('img/bg-hero-mobile.webp');
	}
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-body);
	background: var(--bg-page);
	color: var(--text-primary);
	line-height: 1.6;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

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

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* === BACKGROUND ATMOSFÉRICO === */
.ambient-bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(ellipse 80% 60% at 20% 15%, var(--ambient-bordo-1) 0%, transparent 55%),
		radial-gradient(ellipse 70% 50% at 85% 80%, var(--ambient-bordo-2) 0%, transparent 55%),
		radial-gradient(ellipse 60% 40% at 50% 50%, var(--ambient-gold) 0%, transparent 60%),
		var(--bg-page);
}

.grain {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	opacity: var(--grain-opacity);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--text-primary);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold-display);
	margin-bottom: 1.25rem;
}

.eyebrow::before {
	content: '';
	width: 28px;
	height: 1px;
	background: var(--gold-display);
}

.gold-text {
	color: var(--gold-display);
}

/* === HEADER === */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 1.25rem 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--header-bg);
}

.site-header.scrolled {
	background: var(--header-bg-scrolled);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border-gold);
	padding: 0.875rem 0;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.logo-wrap {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--text-primary);
}

.logo-wrap img {
	max-height: 40px;
	width: auto;
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 2.25rem;
}

.header-nav a {
	color: var(--text-soft);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	transition: color 0.2s;
}

.header-nav a:hover {
	color: var(--gold-display);
}

.header-right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

/* === BUTTONS === */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	padding: 1.05rem 2.25rem;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
	color: var(--text-on-gold);
	box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-cta-hover);
	background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-primary::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.6s;
}

.btn-primary:hover::after {
	left: 100%;
}

.btn-outline {
	background: transparent;
	color: var(--gold-display);
	border: 1px solid var(--border-gold-strong);
}

.btn-outline:hover {
	background: rgba(205, 163, 79, 0.08);
	border-color: var(--gold);
}

/* === HERO === */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 0 4rem;
	overflow: hidden;
	background-image: var(--hero-bg-img);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: var(--bg-page);
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, var(--hero-bg-veil));
	pointer-events: none;
	z-index: 0;
}

.hero-glow {
	position: absolute;
	top: 50%;
	right: -10%;
	transform: translateY(-50%);
	width: min(900px, 80vw);
	height: min(900px, 80vw);
	background: radial-gradient(circle, var(--hero-glow) 0%, transparent 55%);
	pointer-events: none;
	z-index: 0;
}

.hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	width: 100%;
}

.hero-text {
	text-align: left;
	max-width: 620px;
}

.hero-text .eyebrow {
	justify-content: flex-start;
}

.hero-title {
	font-size: var(--text-mega);
	line-height: 0.98;
	font-weight: 400;
	margin-bottom: 1.75rem;
	letter-spacing: -0.02em;
}

.hero-title em {
	font-style: italic;
	color: var(--gold-display-light);
	font-weight: 500;
}

.hero-sub {
	font-family: var(--font-body);
	font-size: var(--text-lead);
	font-weight: 300;
	color: var(--text-soft);
	max-width: 560px;
	margin: 0 0 2.5rem;
	line-height: 1.6;
}

.hero-cta-group {
	display: flex;
	gap: 1rem;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 4rem;
}

/* HERO META — Desktop em linha única */
.hero-meta {
	display: flex;
	gap: clamp(1.5rem, 3.5vw, 3rem);
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: nowrap;
	padding-top: 3rem;
	border-top: 1px solid var(--border-gold);
	width: 100%;
}

.meta-item {
	text-align: left;
	flex: 1 1 0;
	min-width: 0;
}

.meta-num {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3.2vw, 2.75rem);
	font-weight: 500;
	color: var(--gold-display);
	line-height: 1;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.meta-label {
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-top: 0.5rem;
	font-weight: 500;
	line-height: 1.4;
}

/* Coluna visual no desktop */
.hero-visual {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	z-index: 2;
	display: none;
}

/* === SECTION BASE === */
section {
	position: relative;
}

.section-pad {
	padding: var(--space-section) 0;
}

.section-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 4rem;
}

.section-title {
	font-size: var(--text-hero);
	margin-bottom: 1.25rem;
	font-weight: 400;
}

.section-title em {
	font-style: italic;
	color: var(--gold-display-light);
	font-weight: 500;
}

.section-sub {
	font-family: var(--font-body);
	font-size: var(--text-lead);
	color: var(--text-soft);
	font-weight: 300;
	line-height: 1.65;
}

/* === PAIN POINTS === */
.pain-section {
	background: linear-gradient(180deg, transparent 0%, var(--pain-bg) 50%, transparent 100%);
}

.pain-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
	margin-top: 3rem;
}

.pain-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 1.5rem;
	padding: 2rem 1.75rem;
	position: relative;
	transition: all 0.4s ease;
}

.pain-card::before {
	content: '';
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bordo-warm);
	box-shadow: 0 0 14px rgba(139, 42, 61, 0.6);
}

.pain-card:hover {
	transform: translateY(-4px);
	border-color: var(--gold);
	background: var(--bg-card-hover);
}

.pain-card p {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.2rem;
	line-height: 1.4;
	color: var(--text-primary);
	margin-top: 0.5rem;
}

/* === 5 PILARES === */
.pillars-section {
	position: relative;
}

.pillars-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 4rem;
}

.pillar-card {
	position: relative;
	background: linear-gradient(155deg, var(--pillar-bg-start) 0%, var(--pillar-bg-end) 100%);
	border: 1px solid var(--border-gold);
	border-radius: 1.5rem;
	padding: 2.5rem 2rem;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.pillar-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top left, rgba(205, 163, 79, 0.1) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.5s;
}

.pillar-card:hover {
	transform: translateY(-6px);
	border-color: var(--gold);
	box-shadow: var(--shadow-pillar-hover);
}

.pillar-card:hover::before {
	opacity: 1;
}

.pillar-card--featured {
	background: linear-gradient(155deg, var(--pillar-bordo-start) 0%, var(--pillar-bordo-end) 100%);
}

.pillar-num {
	font-family: var(--font-display);
	font-size: 4.5rem;
	font-weight: 400;
	color: var(--gold-display);
	line-height: 0.85;
	opacity: 0.85;
	letter-spacing: -0.04em;
}

.pillar-num span {
	color: var(--bordo-warm);
	font-style: italic;
	font-size: 1.5rem;
	vertical-align: top;
	margin-left: 0.25rem;
}

.pillar-icon {
	width: 36px;
	height: 36px;
	margin: 1.25rem 0;
	color: var(--gold-display);
}

.pillar-title {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.875rem;
	line-height: 1.15;
	color: var(--text-primary);
}

.pillar-text {
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.65;
	font-weight: 300;
}

/* === FOR WHO === */
.for-who-section {
	position: relative;
}

.for-who-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 3.5rem;
}

@media (max-width: 768px) {
	.for-who-grid {
		grid-template-columns: 1fr;
	}
}

.for-who-card {
	border-radius: 1.5rem;
	padding: 2.5rem;
	border: 1px solid var(--border-gold);
}

.for-who-card.is-yes {
	background: linear-gradient(160deg, rgba(205, 163, 79, 0.08) 0%, var(--bg-card) 100%);
}

.for-who-card.is-no {
	background: linear-gradient(160deg, var(--pillar-bordo-start) 0%, var(--bg-card) 100%);
}

.for-who-title {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	font-size: 1.4rem;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.for-who-mark {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: 700;
	flex-shrink: 0;
}

.is-yes .for-who-mark {
	background: var(--gold);
	color: var(--text-on-gold);
}

.is-no .for-who-mark {
	background: var(--bordo);
	color: var(--cream);
}

.for-who-list {
	list-style: none;
	display: grid;
	gap: 1rem;
}

.for-who-list li {
	font-size: 0.95rem;
	color: var(--text-soft);
	padding-left: 1.75rem;
	position: relative;
	line-height: 1.5;
	font-weight: 300;
}

.is-yes .for-who-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--gold);
	font-weight: 600;
}

.is-no .for-who-list li::before {
	content: '✕';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--bordo-warm);
	font-weight: 600;
}

/* === ABOUT MENTORA === */
.about-section {
	background: linear-gradient(180deg, transparent, var(--about-bg), transparent);
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
}

@media (max-width: 880px) {
	.about-grid {
		grid-template-columns: 1fr;
	}
}

.about-portrait {
	position: relative;
	border-radius: 1.5rem;
	overflow: hidden;
	aspect-ratio: 4/5;
	background: var(--portrait-bg);
	border: 1px solid var(--border-gold);
}

.about-portrait::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(107, 27, 44, 0.3) 0%, transparent 50%),
		linear-gradient(180deg, transparent 60%, rgba(10, 22, 40, 0.2) 100%);
	z-index: 2;
	pointer-events: none;
}

.portrait-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 30% 30%, rgba(205, 163, 79, 0.15), transparent 60%),
		var(--portrait-bg);
}

.portrait-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-content .section-title {
	text-align: left;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--border-gold);
}

.stat-item .stat-num {
	font-family: var(--font-display);
	font-size: 2.5rem;
	color: var(--gold-display);
	line-height: 1;
	margin-bottom: 0.5rem;
	font-weight: 500;
	letter-spacing: -0.02em;
}

.stat-item .stat-label {
	font-size: 0.8rem;
	color: var(--text-muted);
	letter-spacing: 0.06em;
	line-height: 1.4;
}

.credentials {
	list-style: none;
	margin-top: 2rem;
	display: grid;
	gap: 0.75rem;
}

.credentials li {
	font-size: 0.95rem;
	color: var(--text-soft);
	padding-left: 1.5rem;
	position: relative;
	font-weight: 300;
}

.credentials li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 6px;
	height: 6px;
	background: var(--gold-display);
	border-radius: 50%;
}

/* === INCLUDES === */
.includes-section {
	background: linear-gradient(180deg, var(--bg-page-deep) 0%, transparent 100%);
	position: relative;
}

.includes-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.25rem;
	margin-top: 3rem;
}

.include-card {
	background: var(--bg-card);
	border: 1px solid var(--border-gold);
	border-radius: 1.25rem;
	padding: 2rem;
	transition: all 0.3s;
}

.include-card:hover {
	border-color: var(--gold);
	background: var(--bg-card-hover);
	transform: translateY(-3px);
}

.include-icon {
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--bordo-warm), var(--bordo));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	border: 1px solid var(--border-gold-strong);
}

.include-icon svg {
	width: 22px;
	height: 22px;
	color: var(--gold-light);
}

.include-title {
	font-size: 1.15rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: var(--text-primary);
}

.include-text {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.55;
	font-weight: 300;
}

/* === RESULTS === */
.results-section {
	background: linear-gradient(180deg, transparent, var(--results-bg), transparent);
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}

.result-card {
	text-align: center;
	padding: 2rem 1.5rem;
	border-radius: 1.25rem;
	background: var(--bg-card);
	border: 1px solid var(--border-gold);
}

.result-big {
	font-family: var(--font-display);
	font-size: 3.5rem;
	color: var(--gold-display);
	line-height: 1;
	margin-bottom: 0.5rem;
	font-weight: 500;
	letter-spacing: -0.02em;
}

.result-label {
	font-size: 0.85rem;
	color: var(--text-soft);
	line-height: 1.5;
	font-weight: 300;
}

/* === INVESTIMENTO === */
.investment-section {
	position: relative;
}

.investment-card {
	max-width: 760px;
	margin: 0 auto;
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
	text-align: center;
	background:
		radial-gradient(ellipse at top, var(--pillar-bordo-start) 0%, transparent 60%),
		linear-gradient(160deg, var(--pillar-bg-start) 0%, var(--pillar-bg-end) 100%);
	border: 1px solid var(--border-gold);
	border-radius: 2rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}

.investment-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--gold-display), transparent);
}

.investment-eyebrow {
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 1.8vw, 1.35rem);
	color: var(--text-soft);
	margin-bottom: 1rem;
	line-height: 1.4;
}

.investment-eyebrow strong {
	color: var(--bordo-warm);
	font-style: italic;
	font-weight: 600;
	margin-right: 0.4rem;
}

.investment-eyebrow em {
	font-style: italic;
	color: var(--text-muted);
	font-weight: 400;
}

.investment-title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 500;
	color: var(--bordo-warm);
	letter-spacing: -0.01em;
	line-height: 1.05;
	margin-bottom: 2.5rem;
}

.investment-prices {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.price-old {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--text-muted);
	text-decoration: line-through;
	text-decoration-color: var(--bordo-warm);
	text-decoration-thickness: 2px;
	letter-spacing: 0.02em;
}

.price-old-num {
	font-weight: 500;
}

.price-old-curr {
	margin-left: 0.4rem;
	font-weight: 400;
}

.price-new {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1;
	color: var(--gold-display);
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.5rem;
	letter-spacing: -0.02em;
}

.price-new-num {
	font-size: clamp(3.5rem, 8vw, 5.5rem);
	text-shadow: 0 2px 30px rgba(205, 163, 79, 0.3);
}

.price-new-curr {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	color: var(--gold-display);
}

.investment-period {
	margin-bottom: 2rem;
}

.period-main {
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 2.5vw, 1.75rem);
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 0.4rem;
}

.period-dates {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
	color: var(--text-muted);
	font-weight: 400;
}

.investment-includes {
	font-family: var(--font-body);
	font-size: clamp(0.95rem, 1.3vw, 1.05rem);
	color: var(--text-soft);
	line-height: 1.7;
	font-weight: 300;
	max-width: 600px;
	margin: 0 auto 2.5rem;
	text-align: justify;
}

.investment-cta {
	font-size: 1rem;
	padding: 1.2rem 2.75rem;
}

@media (max-width: 600px) {
	.investment-includes {
		text-align: left;
	}

	.investment-card {
		padding: 2.5rem 1.5rem;
	}
}

/* === CTA FINAL === */
.final-cta {
	padding: var(--space-section) 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.final-cta::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 120%;
	background: radial-gradient(ellipse at center, var(--cta-glow) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.final-cta-inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin: 0 auto;
}

.final-cta h2 {
	font-size: var(--text-hero);
	margin-bottom: 1.5rem;
	font-weight: 400;
}

.final-cta h2 em {
	font-style: italic;
	color: var(--gold-display-light);
	font-weight: 500;
}

.final-cta p {
	font-size: var(--text-lead);
	color: var(--text-soft);
	margin-bottom: 2.5rem;
	font-weight: 300;
	line-height: 1.6;
}

.scarcity-banner {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: rgba(205, 163, 79, 0.08);
	border: 1px solid var(--border-gold);
	border-radius: 999px;
	padding: 0.625rem 1.5rem;
	font-size: 0.8rem;
	color: var(--gold-display);
	letter-spacing: 0.08em;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.scarcity-dot {
	width: 8px;
	height: 8px;
	background: var(--gold);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(205, 163, 79, 0.6);
	}

	50% {
		opacity: 0.7;
		box-shadow: 0 0 0 8px rgba(205, 163, 79, 0);
	}
}

/* === FOOTER === */
.site-footer {
	padding: 4rem 0 2.5rem;
	border-top: 1px solid var(--border-gold);
	background: var(--footer-bg);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

@media (max-width: 720px) {
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

.footer-brand p {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-top: 1.25rem;
	max-width: 320px;
	font-weight: 300;
	line-height: 1.6;
}

.footer-brand img {
	max-height: 40px;
	width: auto;
}

.footer-col h4 {
	font-family: var(--font-body);
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-display);
	margin-bottom: 1.25rem;
	font-weight: 600;
}

.footer-col ul {
	list-style: none;
	display: grid;
	gap: 0.75rem;
}

.footer-col a {
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
	font-weight: 300;
}

.footer-col a:hover {
	color: var(--gold-display);
}

.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--border-gold);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.8rem;
	color: var(--text-muted);
}

/* === MODAL === */
.modal-overlay {
	position: fixed;
	inset: 0;
	background: var(--modal-overlay);
	backdrop-filter: blur(12px);
	z-index: 200;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.modal-overlay.is-open {
	display: flex;
	opacity: 1;
}

.modal {
	background: linear-gradient(160deg, var(--modal-bg-start) 0%, var(--modal-bg-end) 100%);
	border: 1px solid var(--border-gold-strong);
	border-radius: 1.75rem;
	padding: 2.75rem 2.5rem;
	max-width: 480px;
	width: 100%;
	position: relative;
	transform: translateY(20px) scale(0.97);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: var(--shadow-modal);
	max-height: 90vh;
	overflow-y: auto;
}

.modal-overlay.is-open .modal {
	transform: translateY(0) scale(1);
}

.modal::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 1.75rem;
	padding: 1px;
	background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--bordo-warm));
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.modal-close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--pill-bg);
	border: 1px solid var(--border-gold);
	color: var(--gold-display);
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	z-index: 2;
}

.modal-close:hover {
	background: var(--bg-card-hover);
	transform: rotate(90deg);
}

.modal-header {
	text-align: center;
	margin-bottom: 2rem;
}

.modal-header img {
	max-height: 50px;
	width: auto;
}

.modal-title {
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}

.modal-title em {
	font-style: italic;
	color: var(--gold-display-light);
}

.modal-sub {
	font-size: 0.95rem;
	color: var(--text-muted);
	font-weight: 300;
	line-height: 1.5;
}

.modal-form {
	display: grid;
	gap: 1rem;
}

.form-group {
	position: relative;
}

.form-label {
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold-display);
	margin-bottom: 0.5rem;
	display: block;
	font-weight: 600;
}

.form-input {
	width: 100%;
	padding: 0.95rem 1.125rem;
	background: var(--input-bg);
	border: 1px solid var(--border-gold);
	border-radius: 0.75rem;
	color: var(--text-primary);
	font-family: var(--font-body);
	font-size: 0.95rem;
	transition: all 0.25s;
}

.form-input::placeholder {
	color: var(--input-placeholder);
}

.form-input:focus {
	outline: none;
	border-color: var(--gold);
	background: var(--input-bg-focus);
	box-shadow: 0 0 0 4px rgba(205, 163, 79, 0.12);
}

.form-input.error {
	border-color: var(--bordo-warm);
}

.form-error {
	font-size: 0.78rem;
	color: var(--bordo-warm);
	margin-top: 0.35rem;
	display: none;
}

.form-error.show {
	display: block;
}

.modal-submit {
	width: 100%;
	margin-top: 0.75rem;
	padding: 1.1rem;
	font-size: 0.9rem;
}

.modal-footnote {
	text-align: center;
	font-size: 0.78rem;
	color: var(--text-muted);
	margin-top: 1.25rem;
	font-weight: 300;
}

/* === MOBILE MENU === */
.mobile-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--border-gold);
	color: var(--gold-display);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

@media (max-width: 920px) {
	.header-nav {
		display: none;
	}

	.mobile-toggle {
		display: flex;
	}

	.header-nav.is-open {
		display: flex;
		position: absolute;
		top: 100%;
		left: 1rem;
		right: 1rem;
		background: var(--bg-page-deep);
		flex-direction: column;
		gap: 1.25rem;
		padding: 1.75rem;
		border-radius: 1rem;
		border: 1px solid var(--border-gold);
		margin-top: 0.5rem;
	}

	.pillar-card {
		padding: 2rem 1.5rem;
	}

	.modal {
		padding: 2rem 1.5rem;
	}
}

/* === POEIRA DOURADA SUBINDO === */
.gold-dust {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 1;
}

.dust-particle {
	position: absolute;
	bottom: -10px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--gold-light) 0%, var(--gold) 50%, transparent 80%);
	opacity: 0;
	filter: blur(0.5px);
	animation: dustRise linear infinite;
	will-change: transform, opacity;
}

@keyframes dustRise {
	0% {
		transform: translate(0, 0);
		opacity: 0;
	}

	10% {
		opacity: var(--dust-opacity, 0.7);
	}

	90% {
		opacity: var(--dust-opacity, 0.7);
	}

	100% {
		transform: translate(var(--dust-drift, 30px), -100vh);
		opacity: 0;
	}
}

/* 30 partículas com posições, tamanhos, drifts e timings únicos */
.dust-particle:nth-child(1) {
	left: 4%;
	width: 3px;
	height: 3px;
	animation-duration: 16s;
	animation-delay: 0s;
	--dust-drift: 20px;
	--dust-opacity: 0.5;
}

.dust-particle:nth-child(2) {
	left: 9%;
	width: 2px;
	height: 2px;
	animation-duration: 22s;
	animation-delay: 4s;
	--dust-drift: -15px;
	--dust-opacity: 0.4;
}

.dust-particle:nth-child(3) {
	left: 14%;
	width: 4px;
	height: 4px;
	animation-duration: 18s;
	animation-delay: 8s;
	--dust-drift: 35px;
	--dust-opacity: 0.6;
}

.dust-particle:nth-child(4) {
	left: 18%;
	width: 2px;
	height: 2px;
	animation-duration: 24s;
	animation-delay: 2s;
	--dust-drift: -25px;
	--dust-opacity: 0.45;
}

.dust-particle:nth-child(5) {
	left: 22%;
	width: 3px;
	height: 3px;
	animation-duration: 20s;
	animation-delay: 6s;
	--dust-drift: 18px;
	--dust-opacity: 0.55;
}

.dust-particle:nth-child(6) {
	left: 27%;
	width: 2px;
	height: 2px;
	animation-duration: 26s;
	animation-delay: 10s;
	--dust-drift: -30px;
	--dust-opacity: 0.4;
}

.dust-particle:nth-child(7) {
	left: 31%;
	width: 4px;
	height: 4px;
	animation-duration: 17s;
	animation-delay: 1s;
	--dust-drift: 22px;
	--dust-opacity: 0.65;
}

.dust-particle:nth-child(8) {
	left: 35%;
	width: 2px;
	height: 2px;
	animation-duration: 23s;
	animation-delay: 5s;
	--dust-drift: -18px;
	--dust-opacity: 0.5;
}

.dust-particle:nth-child(9) {
	left: 39%;
	width: 3px;
	height: 3px;
	animation-duration: 19s;
	animation-delay: 9s;
	--dust-drift: 28px;
	--dust-opacity: 0.6;
}

.dust-particle:nth-child(10) {
	left: 43%;
	width: 5px;
	height: 5px;
	animation-duration: 21s;
	animation-delay: 3s;
	--dust-drift: -12px;
	--dust-opacity: 0.7;
}

.dust-particle:nth-child(11) {
	left: 47%;
	width: 2px;
	height: 2px;
	animation-duration: 25s;
	animation-delay: 7s;
	--dust-drift: 32px;
	--dust-opacity: 0.45;
}

.dust-particle:nth-child(12) {
	left: 51%;
	width: 3px;
	height: 3px;
	animation-duration: 18s;
	animation-delay: 11s;
	--dust-drift: -20px;
	--dust-opacity: 0.55;
}

.dust-particle:nth-child(13) {
	left: 55%;
	width: 4px;
	height: 4px;
	animation-duration: 22s;
	animation-delay: 0.5s;
	--dust-drift: 15px;
	--dust-opacity: 0.65;
}

.dust-particle:nth-child(14) {
	left: 59%;
	width: 2px;
	height: 2px;
	animation-duration: 24s;
	animation-delay: 4.5s;
	--dust-drift: -22px;
	--dust-opacity: 0.5;
}

.dust-particle:nth-child(15) {
	left: 63%;
	width: 3px;
	height: 3px;
	animation-duration: 20s;
	animation-delay: 8.5s;
	--dust-drift: 40px;
	--dust-opacity: 0.6;
}

.dust-particle:nth-child(16) {
	left: 67%;
	width: 4px;
	height: 4px;
	animation-duration: 16s;
	animation-delay: 12s;
	--dust-drift: -28px;
	--dust-opacity: 0.55;
}

.dust-particle:nth-child(17) {
	left: 71%;
	width: 2px;
	height: 2px;
	animation-duration: 27s;
	animation-delay: 13s;
	--dust-drift: 17px;
	--dust-opacity: 0.45;
}

.dust-particle:nth-child(18) {
	left: 75%;
	width: 3px;
	height: 3px;
	animation-duration: 19s;
	animation-delay: 6.5s;
	--dust-drift: -35px;
	--dust-opacity: 0.6;
}

.dust-particle:nth-child(19) {
	left: 78%;
	width: 2px;
	height: 2px;
	animation-duration: 23s;
	animation-delay: 9.5s;
	--dust-drift: 25px;
	--dust-opacity: 0.5;
}

.dust-particle:nth-child(20) {
	left: 82%;
	width: 3px;
	height: 3px;
	animation-duration: 21s;
	animation-delay: 14s;
	--dust-drift: -16px;
	--dust-opacity: 0.55;
}

.dust-particle:nth-child(21) {
	left: 86%;
	width: 4px;
	height: 4px;
	animation-duration: 18s;
	animation-delay: 2.5s;
	--dust-drift: 24px;
	--dust-opacity: 0.6;
}

.dust-particle:nth-child(22) {
	left: 90%;
	width: 2px;
	height: 2px;
	animation-duration: 25s;
	animation-delay: 7.5s;
	--dust-drift: -19px;
	--dust-opacity: 0.4;
}

.dust-particle:nth-child(23) {
	left: 94%;
	width: 3px;
	height: 3px;
	animation-duration: 22s;
	animation-delay: 11.5s;
	--dust-drift: 30px;
	--dust-opacity: 0.55;
}

.dust-particle:nth-child(24) {
	left: 12%;
	width: 5px;
	height: 5px;
	animation-duration: 19s;
	animation-delay: 13.5s;
	--dust-drift: -10px;
	--dust-opacity: 0.65;
}

.dust-particle:nth-child(25) {
	left: 25%;
	width: 2px;
	height: 2px;
	animation-duration: 26s;
	animation-delay: 5.5s;
	--dust-drift: 38px;
	--dust-opacity: 0.45;
}

.dust-particle:nth-child(26) {
	left: 45%;
	width: 3px;
	height: 3px;
	animation-duration: 17s;
	animation-delay: 3.5s;
	--dust-drift: -26px;
	--dust-opacity: 0.5;
}

.dust-particle:nth-child(27) {
	left: 65%;
	width: 4px;
	height: 4px;
	animation-duration: 24s;
	animation-delay: 1.5s;
	--dust-drift: 14px;
	--dust-opacity: 0.6;
}

.dust-particle:nth-child(28) {
	left: 85%;
	width: 2px;
	height: 2px;
	animation-duration: 20s;
	animation-delay: 10.5s;
	--dust-drift: -32px;
	--dust-opacity: 0.5;
}

.dust-particle:nth-child(29) {
	left: 33%;
	width: 3px;
	height: 3px;
	animation-duration: 23s;
	animation-delay: 0.8s;
	--dust-drift: 21px;
	--dust-opacity: 0.55;
}

.dust-particle:nth-child(30) {
	left: 57%;
	width: 4px;
	height: 4px;
	animation-duration: 21s;
	animation-delay: 12.5s;
	--dust-drift: -23px;
	--dust-opacity: 0.6;
}

/* === HERO MOBILE (≤900px) === */
@media (max-width: 900px) {

	.hero {
		padding: 6.25rem 0 4rem;
		min-height: auto;
		background-position: center center;
	}

	.hero-inner {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.hero-text {
		text-align: center;
		max-width: 100%;
	}

	.hero-text .eyebrow {
		justify-content: center;
	}

	.hero-title {
		font-size: clamp(2.5rem, 11vw, 3rem);
		margin-bottom: 1.25rem;
	}

	.hero-sub {
		margin: 0 auto 2rem;
		max-width: 540px;
	}

	.hero-cta-group {
		flex-direction: column;
		align-items: stretch;
		margin-bottom: 2.5rem;
	}

	.hero-cta-group .btn {
		width: 100%;
	}

	/* US$4.8M sozinha em cima, 10K+ e 40 lado a lado embaixo */
	.hero-meta {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"primary primary"
			"second  third";
		gap: 1.75rem 1rem;
		padding-top: 2rem;
		max-width: 350px;
		margin: 0 auto;
	}

	.meta-item {
		text-align: center;
		flex: none;
	}

	.meta-item:nth-child(1) {
		grid-area: primary;
	}

	.meta-item:nth-child(2) {
		grid-area: second;
	}

	.meta-item:nth-child(3) {
		grid-area: third;
	}

	.meta-num {
		font-size: 2rem;
	}

	.hero-visual {
		display: none;
	}

	.hero-glow {
		top: auto;
		bottom: -10%;
		right: 50%;
		transform: translateX(50%);
		width: min(700px, 100vw);
		height: min(700px, 100vw);
	}
}

@media (max-width: 520px) {
	header {
		display: none;
	}

	#logo-mobile {
		display: flex !important;
	}

	.hero {
		padding-top: .5rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.hero-visual {
		display: block;
		aspect-ratio: 1.5 / 1;
	}

	.hero-meta {
		border: 0;
		display: none;
	}

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

/* === REVEAL ANIMATIONS === */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].in-view {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}

/* === WHATSAPP FLOAT BUTTON === */
    .wa-float {
      position: fixed;
      bottom: 1.75rem;
      right: 1.75rem;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 90;
      box-shadow:
        0 8px 24px rgba(205, 163, 79, 0.45),
        0 0 0 1px rgba(229, 200, 131, 0.4) inset,
        0 0 30px rgba(205, 163, 79, 0.25);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                  box-shadow 0.4s ease;
      text-decoration: none;
      overflow: hidden;
      animation: waFloatBob 4s ease-in-out infinite;
    }

    /* Anel pulsante externo (efeito de respiração) */
    .wa-float::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      opacity: 0.4;
      z-index: -1;
      animation: waPulse 2.4s ease-out infinite;
    }

    /* Brilho cintilante que atravessa o botão */
    .wa-float::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -100%;
      width: 60%;
      height: 200%;
      background: linear-gradient(
        100deg,
        transparent 20%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 80%
      );
      transform: rotate(15deg);
      animation: waShine 3.5s ease-in-out infinite;
      pointer-events: none;
    }

    .wa-float:hover {
      transform: scale(1.08) translateY(-2px);
      box-shadow:
        0 12px 32px rgba(205, 163, 79, 0.6),
        0 0 0 1px rgba(229, 200, 131, 0.6) inset,
        0 0 50px rgba(205, 163, 79, 0.5);
    }

    .wa-float:active {
      transform: scale(0.96);
    }

    /* Container dos ícones (faz o flip 3D entre pirâmide e whatsapp) */
    .wa-icon-stack {
      position: relative;
      width: 32px;
      height: 32px;
      transform-style: preserve-3d;
      animation: waIconFlip 6s ease-in-out infinite;
    }

    .wa-icon-stack svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      color: #050D1C;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .wa-icon-pyramid {
      transform: rotateY(0deg);
    }
    .wa-icon-whatsapp {
      transform: rotateY(180deg);
    }

    /* Tooltip "Fale conosco" que aparece no hover */
    .wa-tooltip {
      position: absolute;
      right: calc(100% + 14px);
      top: 50%;
      transform: translateY(-50%);
      background: var(--navy-elevated);
      color: var(--gold-light);
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      padding: 0.55rem 0.95rem;
      border-radius: 999px;
      white-space: nowrap;
      border: 1px solid var(--border-gold);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }

    .wa-tooltip::after {
      content: '';
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-left-color: var(--navy-elevated);
    }

    .wa-float:hover .wa-tooltip {
      opacity: 1;
      transform: translateY(-50%) translateX(-4px);
    }


    /* === Keyframes === */
    @keyframes waFloatBob {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-6px); }
    }

    @keyframes waPulse {
      0%   { transform: scale(1);    opacity: 0.5; }
      70%  { transform: scale(1.4);  opacity: 0; }
      100% { transform: scale(1.4);  opacity: 0; }
    }

    @keyframes waShine {
      0%, 100% { left: -100%; }
      40%, 50% { left: 130%; }
    }

    @keyframes waIconFlip {
      0%, 35%  { transform: rotateY(0deg); }
      50%, 85% { transform: rotateY(180deg); }
      100%     { transform: rotateY(360deg); }
    }

    @keyframes waOnlinePulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
      50%      { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    }

    /* Hover pausa o flip pra usuário ver o ícone do whatsapp claro */
    .wa-float:hover .wa-icon-stack {
      animation-play-state: paused;
      transform: rotateY(180deg);
      transition: transform 0.5s ease;
    }

    /* Mobile: botão um pouco menor e mais perto da borda */
    @media (max-width: 600px) {
      .wa-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 56px;
        height: 56px;
      }
      .wa-icon-stack {
        width: 28px;
        height: 28px;
      }
      .wa-tooltip {
        display: none;
      }
    }