:root {
	--bg-main: #eef3ff;
	--bg-soft: #f6f8ff;
	--bg-card: rgba(255, 255, 255, 0.68);
	--bg-card-2: rgba(244, 247, 255, 0.82);

	--blue-main: #142ca5;
	--blue-soft: #3553db;
	--blue-bright: #6d84ff;
	--blue-deep: #0d1d6f;

	--orange-main: #f3670f;
	--orange-soft: #ff8a43;
	--orange-bright: #ffb27d;
	--orange-deep: #c94f00;

	--text-main: #18213d;
	--text-soft: #4b587f;
	--text-muted: #7380a3;

	--border-soft: rgba(20, 44, 165, 0.12);
	--border-strong: rgba(20, 44, 165, 0.22);

	--shadow-main: 0 24px 70px rgba(20, 44, 165, 0.16);
	--shadow-soft: 0 18px 42px rgba(20, 44, 165, 0.10);

	--radius-xl: 32px;
	--radius-lg: 24px;
	--radius-md: 18px;
	--radius-sm: 14px;
}

* {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background:
		radial-gradient(circle at top left, rgba(243, 103, 15, 0.18), transparent 28%),
		radial-gradient(circle at right center, rgba(20, 44, 165, 0.22), transparent 32%),
		linear-gradient(180deg, #ffffff 0%, #f3f6ff 35%, #e9efff 100%);
	color: var(--text-main);
	overflow-x: hidden;
	background-attachment: fixed;
}

img {
	max-width: 100%;
	display: block;
}

button {
	font-family: inherit;
}


.mt-24 {
	margin-top: 24px;
}

.bg-pattern {
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(rgba(20, 44, 165, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 44, 165, 0.035) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 94%);
	pointer-events: none;
	z-index: -3;
}

.bg-glow {
	position: fixed;
	border-radius: 999px;
	filter: blur(95px);
	opacity: 0.42;
	pointer-events: none;
	z-index: -2;
}

.bg-glow-1 {
	width: 320px;
	height: 320px;
	background: rgba(243, 103, 15, 0.42);
	top: -35px;
	left: -55px;
}

.bg-glow-2 {
	width: 380px;
	height: 380px;
	background: rgba(20, 44, 165, 0.34);
	right: -120px;
	bottom: -10px;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 6px 0 4px;
	background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(245,248,255,0.70));
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(20, 44, 165, 0.08);
	box-shadow: 0 8px 22px rgba(20, 44, 165, 0.07);
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	position: relative;
}

.brand-logo {
	height: 92px;
	width: auto;
	position: relative;
	top: 10px;
	filter: drop-shadow(0 10px 18px rgba(0,0,0,0.10));
	animation: logoGlow 4.2s ease-in-out infinite;
	z-index: 5;
}

.topbar-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.btn {
	border: 0;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	transition: .22s ease;
}

.btn-top {
	border-radius: 999px;
	padding: 11px 20px;
	font-weight: 800;
}

.btn-gold {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f3670f, #ff8a43);
	border: 1px solid rgba(255,255,255,0.26);
	color: #ffffff;
	font-weight: 900;
	letter-spacing: 0.02em;
	border-radius: 18px;
	box-shadow:
		0 16px 28px rgba(243, 103, 15, 0.24),
		inset 0 1px 0 rgba(255,255,255,0.24);
	padding: 14px 22px;
}

.btn-gold::after {
	content: "";
	position: absolute;
	top: -130%;
	left: -30%;
	width: 28%;
	height: 300%;
	background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.45), rgba(255,255,255,0));
	transform: rotate(18deg);
	animation: shineLoop 4.2s ease-in-out infinite;
	pointer-events: none;
}

.btn-gold:hover {
	transform: translateY(-2px);
	box-shadow:
		0 22px 36px rgba(243, 103, 15, 0.28),
		0 8px 20px rgba(243, 103, 15, 0.16),
		inset 0 1px 0 rgba(255,255,255,0.28);
}

.btn-secondary-premium {
	background: rgba(255,255,255,0.70);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.44);
	color: #17328f;
	font-weight: 500;
	padding: 14px 20px;
	border-radius: 18px;
	box-shadow:
		0 12px 24px rgba(20, 44, 165, 0.06),
		inset 0 1px 0 rgba(255,255,255,0.44);
}

.btn-secondary-premium:hover {
	background: rgba(255,255,255,0.90);
	color: #10266f;
	transform: translateY(-1px);
}

.main-wrapper {
	min-height: calc(100vh - 160px);
	padding: 40px 0 30px;
	display: flex;
	align-items: center;
}



.screen {
	display: none;
	width: 100%;
}

.screen.active {
	display: block;
	animation: fadeScreen .45s ease;
}

.hero-card,
.section-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-xl);
	border: 1px solid rgba(255, 255, 255, 0.48);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 247, 255, 0.78));
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow:
		var(--shadow-main),
		inset 0 1px 0 rgba(255,255,255,0.58);
}

.hero-card::before,
.section-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.62), transparent 34%),
		radial-gradient(circle at top right, rgba(243, 103, 15, 0.12), transparent 28%);
	pointer-events: none;
}

.hero-card::after,
.section-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(20, 44, 165, 0.06), rgba(243, 103, 15, 0.10));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.hero-card {
	padding: 40px;
}

.section-card {
	padding: 34px 26px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 30px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-badge,
.section-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 15px;
	border-radius: 999px;
	background: rgba(243, 103, 15, 0.10);
	border: 1px solid rgba(243, 103, 15, 0.18);
	color: var(--orange-deep);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,0.55),
		0 8px 18px rgba(243, 103, 15, 0.08);
}

.hero-title {
	font-size: clamp(2.15rem, 4vw, 3.8rem);
  	line-height: 1.05;
	font-weight: 900;
	margin: 18px 0 16px;
	max-width: 760px;
	color: #14275f;
	letter-spacing: -0.03em;
}

.hero-title span {
	color: var(--orange-main);
}

.hero-subtitle,
.screen-subtitle {
	font-size: 1.05rem;
	line-height: 1.75;
	color: #5d6c98;
	margin-bottom: 0;
	max-width: 760px;
}

.hero-actions {
	margin-top: 30px;
}

.hero-btn {
	min-height: 58px;
	padding-inline: 1.9rem;
}

.hero-visual {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-mascot-wrap {
	position: relative;
	width: 480px;
	height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-ring {
	position: absolute;
	border-radius: 999px;
	animation: pulseRing 4s infinite ease-in-out;
}

.hero-ring-1 {
	width: 100%;
	height: 100%;
	border: 2px solid rgba(20, 44, 165, 0.22);
	background: radial-gradient(circle, rgba(20, 44, 165, 0.10), rgba(255,255,255,0) 68%);
	box-shadow: 0 0 50px rgba(20, 44, 165, 0.10);
}

.hero-ring-2 {
	width: 78%;
	height: 78%;
	border: 2px solid rgba(243, 103, 15, 0.24);
	background: radial-gradient(circle, rgba(243, 103, 15, 0.12), rgba(255,255,255,0) 70%);
	animation-delay: .8s;
}

.hero-ring-3 {
	width: 58%;
	height: 58%;
	border: 2px dashed rgba(20, 44, 165, 0.20);
	animation-delay: 1.4s;
}

.hero-mascot {
	width: 520px;
	height: 520px;
	object-fit: contain;
	position: relative;
	z-index: 2;
	filter: drop-shadow(0 24px 35px rgba(20,44,165,0.18));
	animation: floatMascot 4.8s ease-in-out infinite;
}

.section-header {
	margin-bottom: 26px;
	position: relative;
	z-index: 2;
}

.screen-title {
	font-size: clamp(1.8rem, 2.7vw, 2.55rem);
	font-weight: 900;
	margin: 14px 0 10px;
	color: #14275f;
	letter-spacing: -0.02em;
}

.grid-signos {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	position: relative;
	z-index: 2;
}

.card-signo {
	position: relative;
	overflow: hidden;
	border-radius: 26px;
	border: 1px solid rgba(255,255,255,0.48);
	background:
		linear-gradient(180deg, rgba(255,255,255,0.82), rgba(243,246,255,0.88));
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow:
		0 14px 30px rgba(20, 44, 165, 0.08),
		inset 0 1px 0 rgba(255,255,255,0.45);
	padding: 18px;
	cursor: pointer;
	transition: .22s ease;
	min-height: 200px;
	display: grid;
	grid-template-columns: 160px 1fr;
	align-items: center;
	gap: 18px;
}

.card-signo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(243, 103, 15, 0.06), transparent 44%);
	opacity: 0;
	transition: .22s ease;
}

.card-signo:hover {
	transform: translateY(-7px);
	border-color: rgba(20, 44, 165, 0.22);
	box-shadow:
		0 24px 40px rgba(20, 44, 165, 0.12),
		0 0 0 1px rgba(20, 44, 165, 0.05) inset;
}

.card-signo:hover::before {
	opacity: 1;
}

.card-signo-thumb {
	position: relative;
	width: 146px;
	height: 166px;
	border: 1px solid rgba(243, 103, 15, 0.35);
	border-radius: 18px;
	background: rgba(255,255,255,0.55);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 14px;
}

.card-signo-thumb img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.card-signo-tag {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: -11px;
	color: #fff;
	font-weight: 800;
	font-size: 0.96rem;
	padding: 8px 14px;
	border-radius: 999px;
	text-align: center;
	background: linear-gradient(135deg, #f3670f, #ff8a43);
	box-shadow: 0 10px 18px rgba(243, 103, 15, 0.25);
}

.card-signo-content {
	padding-right: 6px;
}




.card-signo-nome {	
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.1;
	color: #14275f;
	margin-bottom: 14px;
}

.card-signo-periodo {
	font-size: 1.25rem;
	color: var(--orange-main);
}

.resultado-card {
	position: relative;
	z-index: 2;
}

.resultado-head {
	margin-bottom: 14px;
}

.resultado-titulo {
	font-size: 2rem;
	color: #14275f;
	margin: 0 0 6px;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.resultado-data {
	margin: 0;
	color: var(--orange-main);
	font-size: 1rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.resultado-grid {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 24px;
	align-items: start;
}

.signo-card-large {
	background: rgba(255,255,255,0.55);
	border-radius: 24px;
	padding: 16px;
	box-shadow: 0 12px 22px rgba(20,44,165,0.08);
}

.signo-card-large-inner {
	position: relative;
	border-radius: 22px;
	border: 1px solid rgba(243, 103, 15, 0.35);
	background: rgba(255,255,255,0.55);
	padding: 18px 18px 40px;
	min-height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.signo-card-large-inner img {
	max-width: 100%;
	max-height: 260px;
	object-fit: contain;
}

.signo-nome-tag {
	position: absolute;
	left: 36px;
	right: 36px;
	bottom: -12px;
	color: #fff;
	font-weight: 900;
	font-size: 1.15rem;
	padding: 12px 20px;
	border-radius: 999px;
	text-align: center;
	background: linear-gradient(135deg, #f3670f, #ff8a43);
	box-shadow: 0 10px 18px rgba(243, 103, 15, 0.25);
}

.resultado-conteudo {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.resultado-box {
	border: 1px solid rgba(243, 103, 15, 0.25);
	border-radius: 16px;
	background: rgba(255,255,255,0.72);
	padding: 18px;
	box-shadow: 0 10px 22px rgba(20,44,165,0.05);
}

.resultado-box h3 {
	margin: 0 0 12px;
	font-size: 1.05rem;
	color: #101a3b;
	font-weight: 800;
}

.resultado-box p {
	margin: 0;
	font-size: 1.04rem;
	line-height: 1.8;
	color: #4f608f;
}

.resultado-info-row {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 16px;
}

.dezenas-lista {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.dezena-bola {
	position: relative;
	overflow: hidden;
	width: 60px;
	height: 60px;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 1.25rem;
	font-weight: 900;

	color: #14275f;

	/* FUNDO PREMIUM */
	background: linear-gradient(180deg, #ffffff, #f3f6ff);

	/* BORDA LARANJA DO SISTEMA */
	border: 2px solid var(--orange-main);

	/* SOMBRA MAIS BONITA */
	box-shadow:
		0 10px 20px rgba(20, 44, 165, 0.12),
		0 4px 10px rgba(243, 103, 15, 0.15),
		inset 0 1px 0 rgba(255,255,255,0.8);

	transition: all .25s ease;
}

.dezena-bola:hover {
	transform: translateY(-5px) scale(1.07);

	background: linear-gradient(135deg, #f3670f, #ff8a43);

	color: #fff;

	box-shadow:
		0 20px 35px rgba(243, 103, 15, 0.35),
		0 10px 20px rgba(20, 44, 165, 0.15);
}

.dezena-bola::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,255,255,0.5), transparent);
	opacity: 0.4;
	pointer-events: none;
}

.resultado-box-cor {
	background: linear-gradient(135deg, #142ca5, #0d1d6f);
	color: #fff;
	border: none;
	box-shadow: 0 18px 30px rgba(20, 44, 165, 0.25);
}

.resultado-box-cor h3,
.resultado-box-cor p {
	color: #fff;
}

.resultado-box-sobre h3 {
	margin-bottom: 16px;
}

.sobre-signo p {
	margin: 0 0 8px;
	font-size: 1.18rem;
	line-height: 1.65;
	color: #5b6a95;
}

.sobre-signo strong {
	color: #3e4b72;
}

.result-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.footer {
	padding: 18px 0 12px;
	color: #7380a3;
	text-align: center;
	font-size: 0.95rem;
}

@keyframes fadeScreen {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulseRing {
	0%, 100% {
		transform: scale(1);
		opacity: .82;
	}
	50% {
		transform: scale(1.05);
		opacity: 1;
	}
}

@keyframes shineLoop {
	0%, 70%, 100% {
		transform: translateX(0) rotate(18deg);
		opacity: 0;
	}
	12% {
		opacity: 1;
	}
	30% {
		transform: translateX(430%) rotate(18deg);
		opacity: 0;
	}
}

@keyframes logoGlow {
	0%, 100% {
		filter: drop-shadow(0 10px 18px rgba(0,0,0,0.10));
	}
	50% {
		filter:
			drop-shadow(0 10px 18px rgba(0,0,0,0.10))
			drop-shadow(0 0 10px rgba(243, 103, 15, 0.16));
	}
}

@keyframes floatMascot {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-14px);
	}
}

@media (max-width: 1199px) {
	.grid-signos {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.resultado-grid {
		grid-template-columns: 300px 1fr;
	}

	.resultado-info-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 991px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-content {
		text-align: center;
	}

	.hero-badge,
	.section-badge {
		margin-inline: auto;
	}

	.hero-subtitle {
		margin-inline: auto;
	}

	.hero-actions {
		display: flex;
		justify-content: center;
	}

	.hero-visual {
		min-height: 320px;
	}

	.hero-mascot-wrap {
		width: 320px;
		height: 320px;
	}

	.hero-mascot {
		width: 330px;
		height: 330px;
	}

	.resultado-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.grid-signos {
		grid-template-columns: 1fr;
	}

	.card-signo {
		grid-template-columns: 140px 1fr;
		min-height: auto;
	}

	.card-signo-nome {
		font-size: 1.7rem;
	}

	.card-signo-periodo {
		font-size: 1.05rem;
	}

	.resultado-titulo {
		font-size: 1.55rem;
	}

	.sobre-signo p {
		font-size: 1rem;
	}
}

@media (max-width: 575px) {
	.container {
		width: min(100% - 20px, 100%);
	}

	.topbar {
		padding: 4px 0;
	}

	.topbar-inner {
		gap: 8px;
	}

	.brand-logo {
		height: 72px;
		top: 8px;
	}

	.btn-top {
		padding: 10px 16px;
		font-size: 0.94rem;
	}

	.hero-card,
	.section-card {
		padding: 20px 14px;
		border-radius: 24px;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle,
	.screen-subtitle {
		font-size: 0.98rem;
		line-height: 1.65;
	}

	.card-signo {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 20px;
		gap: 20px;
	}

	.card-signo-thumb {
		margin-inline: auto;
	}

	.card-signo-content {
		padding-right: 0;
	}

	.signo-card-large-inner {
		min-height: 290px;
	}

	.signo-nome-tag {
		left: 22px;
		right: 22px;
		font-size: 1rem;
	}

	.dezena-bola {
		width: 48px;
		height: 48px;
		font-size: 1.05rem;
	}

	.resultado-box p {
		font-size: 0.98rem;
		line-height: 1.7;
	}

	.result-actions {
		flex-direction: column;
	}

	.result-actions .btn,
	.result-actions a {
		width: 100%;
	}
}

.copiado-sucesso {
	background: linear-gradient(135deg, #f3670f, #ff8a43) !important;
	color: #fff !important;
	border-color: rgba(243, 103, 15, 0.35) !important;
}

.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	text-decoration: none;
	box-shadow:
		0 12px 25px rgba(0,0,0,0.25),
		0 6px 15px rgba(37,211,102,0.35);
	z-index: 9999;
	animation: whatsappPulse 2s infinite;
	transition: transform .2s ease;
}

.whatsapp-float:hover {
	transform: scale(1.08);
	color: #fff;
}

.whatsapp-float::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.4);
	animation: pulseRingWhatsapp 2s infinite;
	z-index: -1;
}

@keyframes whatsappPulse {
	0% {
		box-shadow:
			0 0 0 0 rgba(37,211,102, 0.6),
			0 12px 25px rgba(0,0,0,0.25);
	}
	70% {
		box-shadow:
			0 0 0 18px rgba(37,211,102, 0),
			0 12px 25px rgba(0,0,0,0.25);
	}
	100% {
		box-shadow:
			0 0 0 0 rgba(37,211,102, 0),
			0 12px 25px rgba(0,0,0,0.25);
	}
}

@keyframes pulseRingWhatsapp {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}
	70% {
		transform: scale(1.5);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@media (max-width: 575px) {
	.whatsapp-float {
		width: 58px;
		height: 58px;
		font-size: 24px;
		bottom: 18px;
		right: 18px;
	}
}
