/* Variáveis de tema para fácil customização */
:root {
	--bg: #f0f2f5;
	--bg-soft: #e6e9ee;
	--surface: #ffffff;
	--surface-2: #ffffff;
	--card-blue: #ffffff;
	--text: #1a1c23;
	--text-muted: #4a4f5d;
	--primary: #6a0dad;
	--primary-600: #4b0082;
	--accent: #d4af37;
	--success: #00a373;
	--shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	--radius: 8px;
}

html {
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
}

body {
	margin: 0;
	font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	letter-spacing: 0.02em;
	background: var(--bg);
	color: var(--text);
	line-height: 1.7;
	position: relative;
}

/* Fundo estrelado sutil (constelações) */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(90deg, rgba(26, 28, 35, 0.03) 1px, transparent 1px),
		linear-gradient(180deg, rgba(26, 28, 35, 0.02) 1px, transparent 1px);
	background-size: 24px 24px;
	opacity: 0.5;
}

/* Camada adicional de estrelas (opacidade 3%) para sensação de profundidade */
body::after {
	display: none;
}

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

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(1200px, 92%);
	margin: 0 auto;
}

.muted {
	color: var(--text-muted);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: saturate(160%) blur(10px);
	background: #ffffff;
	border-bottom: 2px solid var(--primary);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
}

.brand-mark {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: radial-gradient(circle at 40% 35%, var(--accent), rgba(212, 175, 55, 0.6) 40%, transparent 60%),
		linear-gradient(135deg, var(--primary), var(--primary-600));
	color: #120c22;
	font-size: 20px;
	box-shadow: 0 2px 10px rgba(212, 175, 55, 0.25);
	border: 1px solid rgba(212, 175, 55, 0.35);
}

.nav {
	display: flex;
	align-items: center;
	gap: 14px;
}

.nav a {
	padding: 10px 12px;
	color: var(--text-muted);
	font-weight: 500;
}

.nav a:hover {
	color: #000;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 18px;
	border-radius: 12px;
	font-weight: 600;
	transition: all 0.4s ease;
	border: 1px solid transparent;
	white-space: nowrap;
}

.btn--primary {
	background: var(--primary);
	border-color: transparent;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	text-shadow: none;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
}

.btn--primary:hover {
	background: var(--primary-600);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Botão 'Comprar' no header com contraste reforçado no fundo claro */
.site-header .btn--primary {
	background: var(--primary-600);
	border-color: rgba(0, 0, 0, 0.2);
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, 0.06) inset,
		0 2px 8px rgba(0, 0, 0, 0.15);
	color: #ffffff;
}
.site-header .btn--primary:hover {
	filter: none;
	transform: translateY(-1px) scale(1.02);
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, 0.12) inset,
		0 6px 14px rgba(0, 0, 0, 0.25);
}

.btn--secondary {
	background: linear-gradient(180deg, #4a3f78, #2f2760);
	border-color: rgba(212, 175, 55, 0.24);
	color: #ffffff;
}

.btn--ghost {
	background: transparent;
	border-color: rgba(212, 175, 55, 0.28);
}

.btn:hover,
.btn:focus-visible {
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.btn--xl {
	padding: 14px 22px;
	font-size: 1.05rem;
}

.hero {
	padding: 120px 0;
	position: relative;
	background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("../img/bg_hero_curso.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--bg-soft);
	background-attachment: fixed;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
}

/* Overlay sutil para legibilidade do conteúdo sobre a imagem do hero */
.hero::before {
	content: none;
}

.hero,
.hero h1,
.hero h2,
.hero h3,
.hero p {
	color: #ffffff;
}
.hero .hero-title {
	color: #ffffff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero .muted,
.hero .video-caption {
	color: #e5e7eb;
}
.hero .installments {
	color: #ffffff;
}
.hero .accent {
	background: linear-gradient(90deg, #ffffff, #e5e7eb);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero .hero-subtitle {
	color: #ffffff;
	font-size: 1.25rem;
	max-width: 600px;
}
.hero .badge {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

/* CTA na Hero com foco em conversão */
.hero .btn--primary {
	background: var(--primary);
	color: #ffffff;
}
.hero .btn--primary:hover {
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Mobile: overlay mais escuro para telas brilhantes */
@media (max-width: 640px) {
	.hero {
		background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/bg_hero_curso.webp");
		padding: 96px 0;
	}
}

.hero-title {
	font-size: clamp(2rem, 3.6vw, 3rem);
	line-height: 1.15;
	margin: 0 0 10px;
}

.accent {
	background: linear-gradient(90deg, #2d323e, #5b6070);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-subtitle {
	color: var(--text-muted);
	font-size: 1.1rem;
}

.hero-badges {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 18px 0 16px;
}

.badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
}

.icon {
	opacity: 0.9;
}

.cta-group {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin: 16px 0 6px;
}

.price-row {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin: 8px 0 10px;
}

.price {
	display: inline-flex;
	align-items: baseline;
	gap: 6px;
}

.price-currency {
	color: var(--text-muted);
	font-weight: 600;
}

.price-amount {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.installments {
	color: var(--text-muted);
}

.included {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 16px;
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
}

.hero-media .video-card {
	background: var(--surface);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 14px;
	outline: 1px solid rgba(212, 175, 55, 0.18);
	outline-offset: -1px;
}

.video-aspect {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
	border-radius: 10px;
}

.video-aspect iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.video-caption {
	color: var(--text-muted);
	margin: 10px 4px 0;
}

.section {
	padding: 80px 0;
}
@media (min-width: 1024px) {
	.section {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

.section--alt {
	background: linear-gradient(180deg, var(--bg-soft), rgba(255, 255, 255, 0));
}

.section-head {
	margin-bottom: 22px;
}

/* Tipografia elegante para títulos */
h1,
h2 {
	font-family: "Playfair Display", Georgia, serif;
	letter-spacing: 0.03em;
	text-shadow: none;
	color: #1a1c23;
	font-weight: 600;
}

/* Títulos de nível 2 com leitura de livro técnico */
h2 {
	letter-spacing: 0.04em;
	color: var(--text);
	font-weight: 700;
}

/* Títulos h3 com contraste e precisão */
h3 {
	color: var(--text);
	letter-spacing: 0.04em;
	font-weight: 600;
}

/* Traço decorativo sutil abaixo dos títulos de seção */
.section-head h2::after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	margin-top: 10px;
	background: #d1d5db;
	opacity: 0.9;
	border-radius: 2px;
}

/* Moldura dourada das seções (como grandes cartas) */
.hero > .container,
.section > .container {
	border: 1px solid #d1d5db;
	border-radius: 8px;
	padding: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.35));
	box-shadow: none;
}

/* Ajuste específico: container do hero com fundo preto transparente para melhor contraste */
.hero > .container {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
}

/* Aplicar fundo preto transparente também na seção 'Você vai aprender' */
.learn > .container {
	background: transparent;
}

/* Fundo com imagem e overlay na seção 'Você vai aprender' (mesmo padrão do hero) */
.learn {
	position: relative;
	background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("../img/bg_hero_curso.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--bg-soft);
}

/* Texto claro para garantir legibilidade sobre o fundo da seção */
.learn,
.learn h2,
.learn h3,
.learn p,
.learn li {
	color: #ffffff;
}
.learn .muted {
	color: #e5e7eb;
}

@media (max-width: 640px) {
	.learn {
		background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/bg_hero_curso.webp");
	}
}

/* 'Inscreva-se agora' com mesmo BG e transparência do hero */
#preco {
	position: relative;
	background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("../img/bg_hero_curso.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--bg-soft);
}
#preco > .container {
	background: transparent;
}
@media (max-width: 640px) {
	#preco {
		background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/bg_hero_curso.webp");
	}
}

/* Tornar o price-card transparente e legível sobre o fundo escuro */
#preco .price-card {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: none;
	color: #ffffff;
	outline: none;
}
#preco .price-large,
#preco .price-currency,
#preco .installments,
#preco .checklist li,
#preco .muted {
	color: #ffffff;
}

/* Garantir que todos os textos na seção de preço fiquem brancos */
#preco,
#preco h2,
#preco p,
#preco a,
#preco .price-amount {
	color: #ffffff;
}

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

.card {
	background: var(--surface);
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
	padding: 18px;
	transition: all 0.4s ease;
	color: var(--text);
}
.card .muted { color: var(--text-muted); }

.benefit {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
	font-size: 28px;
	margin-bottom: 8px;
}

/* Imagens dos cards do dicionário de cartas (proporção responsiva 2:3) */
.grid.benefits .card img {
	width: 100%;
	height: auto !important;
	aspect-ratio: 2 / 3;
	object-fit: contain !important;
	display: block;
	background: var(--surface-2);
	border: 1px solid #d1d5db;
	border-radius: 8px;
	margin-bottom: 8px;
}

/* Hover sutil para incentivar interação nos cards do grid */
.grid.benefits .card {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.grid.benefits .card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}
/* Autoridade e descanso visual nos cards do dicionário */
.card.benefit {
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.price-wrap {
	display: grid;
	grid-template-columns: 1fr;
}

.price-card {
	text-align: center;
	outline: 1px solid rgba(212, 175, 55, 0.14);
	outline-offset: -1px;
}

.price-large {
	margin: 10px 0 4px;
}

.checklist {
	text-align: left;
	list-style: none;
	padding: 0;
	margin: 16px 0 18px;
}

.checklist li {
	position: relative;
	padding-left: 28px;
	margin: 8px 0;
}

.checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--success);
}

.secure .icon {
	margin-right: 6px;
}

/* Selo Real de Garantia */
.royal-seal {
	display: inline-grid;
	place-items: center;
	width: 110px;
	height: 110px;
	margin: 10px auto 14px;
	border-radius: 999px;
	background:
		radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.15), transparent 60%),
		linear-gradient(180deg, var(--surface-2), #220b3a);
	border: 2px solid rgba(212, 175, 55, 0.7);
	box-shadow:
		0 8px 24px rgba(212, 175, 55, 0.18),
		inset 0 0 0 3px rgba(212, 175, 55, 0.15);
	color: var(--text);
	font-weight: 700;
	text-align: center;
	padding: 8px;
}
.royal-seal .seal-top {
	font-size: 18px;
	line-height: 1;
	color: var(--accent);
}
.royal-seal .seal-main {
	font-size: 13px;
	color: #f2e6bf;
}
.royal-seal .seal-sub {
	font-size: 10px;
	color: rgba(242, 230, 191, 0.85);
}

.accordion {
	display: grid;
	gap: 10px;
}

.acc-item {
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: var(--surface);
	backdrop-filter: none;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
	overflow: hidden;
	transition: all 0.4s ease;
}

.acc-trigger {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr auto 24px;
	align-items: center;
	gap: 10px;
	text-align: left;
	padding: 14px 16px;
	background: transparent;
	color: var(--text);
	border: none;
	cursor: pointer;
	font-weight: 600;
	transition: all 0.4s ease;
	border-bottom: 1px solid #e6e9ee;
}

.acc-meta {
	color: var(--text-muted);
	font-weight: 500;
	font-size: 0.95rem;
}

.acc-icon {
	justify-self: end;
	transition: transform 0.2s ease;
	font-weight: 300;
	color: #4a4f5d;
	font-size: 18px;
}

.acc-item.open .acc-icon {
	transform: rotate(45deg);
}

.acc-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease, padding 0.25s ease, opacity 0.4s ease;
	padding: 0 16px;
	opacity: 0;
}

.acc-item.open .acc-panel {
	padding: 0 16px 12px 16px;
	opacity: 1;
}

.card-tarot {
	background: var(--surface);
	border: 1px solid #e2e8f0;
	backdrop-filter: none;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
	border-left: 4px solid var(--primary);
}
.card-tarot .acc-trigger {
	padding: 16px 18px;
}

.acc-list {
	list-style: none;
	padding: 8px 0 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

/* Certificado de garantia (container) */
.guarantee-box {
	background: transparent;
	border-top: 1px solid var(--accent);
	border-bottom: 1px solid var(--accent);
	padding: 16px;
	border-radius: 8px;
	margin: 14px 0;
}

/* Mini features (Sobre o Curso) */
.features-mini {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}
.feature-item {
	display: grid;
	grid-template-columns: 36px 1fr;
	gap: 10px;
	align-items: start;
	padding: 12px 14px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	background: var(--surface);
	backdrop-filter: none;
	color: var(--text);
}
.feature-item .fi-icon {
	font-size: 20px;
	color: var(--accent);
	line-height: 1;
}
.feature-item h4 {
	margin: 0 0 4px;
	font-size: 1rem;
	color: var(--text);
}
.feature-item p {
	margin: 0;
	color: var(--text-muted);
	font-size: 0.95rem;
}
@media (max-width: 1024px) {
	.features-mini {
		grid-template-columns: 1fr;
	}
}

/* Carta estética para itens do currículo (Tarô) */
.card-aesthetic {
	border: 0.5px solid rgba(212, 175, 55, 0.45);
	border-radius: 10px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
	padding: 10px 12px 10px 32px;
	position: relative;
	transition: all 0.4s ease;
}
.card-aesthetic:hover {
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12), 0 0 12px rgba(212, 175, 55, 0.18);
	transform: translateY(-1px);
}

/* Aplicar estética de carta a todos os itens de currículo */
.acc-list li {
	border: 0.5px solid rgba(212, 175, 55, 0.35);
	border-radius: 10px;
	padding: 10px 12px 10px 34px;
	position: relative;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}
.acc-list li::before {
	content: "✷";
	position: absolute;
	left: 12px;
	top: 10px;
	color: var(--accent);
	opacity: 0.9;
	font-size: 14px;
}

.pill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.pill-list li {
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	color: var(--text);
}

/* Você vai aprender */
.learn .section-head h2 {
	letter-spacing: 0.04em;
}
.learn-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}
.learn-item {
	position: relative;
	padding: 12px 14px 12px 40px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0));
	border: 0.5px solid rgba(212, 175, 55, 0.35);
	border-radius: 12px;
	color: var(--text);
	transition: all 0.4s ease;
}
.learn-item::before {
	content: "✔";
	position: absolute;
	left: 14px;
	top: 10px;
	color: var(--accent);
	font-weight: 700;
}
.learn-item:hover {
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35), 0 0 10px rgba(212, 175, 55, 0.22);
	transform: translateY(-1px);
}
@media (max-width: 1024px) {
	.learn-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 640px) {
	.learn-grid {
		grid-template-columns: 1fr;
	}
}
.faq .acc-item {
	background: rgba(255, 255, 255, 0.03);
}

.site-footer {
	border-top: 0;
	background: #1a1c23;
	backdrop-filter: saturate(160%) blur(10px);
	position: relative;
	color: #f0f2f5;
	padding: 60px 0;
}
.site-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-nav {
	display: flex;
	gap: 12px;
}
.site-footer .footer-nav a {
	color: #ffffff;
	opacity: 0.7;
}
.site-footer .footer-nav a:hover {
	opacity: 1;
}

.buybar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translateY(100%);
	transition: transform 0.3s ease, opacity 0.4s ease;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border-top: 1px solid #d1d5db;
	box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
	z-index: 80;
	opacity: 0;
}

.buybar--show {
	transform: translateY(0);
	opacity: 1;
}

.buybar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
}

.buybar-info {
	display: flex;
	flex-direction: column;
}

/* Utilitários de acessibilidade */
.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Acessibilidade: foco visível */
:where(a, button, .btn):focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

/* Responsividade */
@media (max-width: 1024px) {
	.grid.benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.hero-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.hero-badges,
	.included {
		grid-template-columns: 1fr;
	}
	.nav {
		display: none;
	}
	.btn--xl {
		width: 100%;
	}
}

/* Breadcrumb */
.breadcrumb {
	font-size: 0.95rem;
	margin: 8px 0 14px;
}
.breadcrumb a {
	color: var(--text-muted);
	text-decoration: none;
}
.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb .sep {
	margin: 0 6px;
	opacity: 0.6;
}

/* Botão flutuante para voltar ao índice */
.btn-top {
	position: fixed;
	right: 20px;
	bottom: 80px;
	z-index: 999;
	border: 1px solid #e2e8f0;
	background: var(--surface);
	color: var(--text);
	padding: 10px 14px;
	border-radius: 999px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.08);
	cursor: pointer;
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity .25s ease, transform .25s ease;
}
.btn-top.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/* Fallback visual quando a imagem do card falha */
.grid.benefits .card.benefit.no-image {
	border: 1px dashed #cbd5e1;
	background: linear-gradient(180deg, #ffffff, #f8fafc);
}
.grid.benefits .card.benefit.no-image::before {
	content: attr(data-name);
	display: block;
	text-align: center;
	padding: 12px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	margin-bottom: 8px;
	color: var(--text-muted);
	font-weight: 600;
}


