/* Reset e variáveis CSS */
:root {
	--primary: #6D28D9;
	--primary-dark: #5B21B6;
	--secondary: #EC4899;
	--dark: #1F2937;
	--light: #F9FAFB;
	--text: #374151;
	--text-light: #090a0eff;
	--border: #E5E7EB;
	--radius: 12px;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--transition: all 0.3s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	line-height: 1.6;
	color: var(--text);
	background-color: var(--light);
}

/* Tipografia */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1rem;
	color: var(--dark);
}

h1, .fs-h1 {
	font-size: 2.5rem;
}

h2, .fs-h2 {
	font-size: 1.8rem;
}

p {
	margin-bottom: 1rem;
	font-size: 1.2rem;
	text-align: left;
	line-height: 1.6;
}

.text-lg {
	font-size: 1.7em;
}

.font-bold {
	font-weight: bolder;
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-dark);
}

/* Layout */
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Header */
header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: var(--shadow);
}

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

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 50px;
	width: auto;
}

/* Navegação */
nav ul {
	display: flex;
	list-style: none;
	gap: 1.5rem;
}

nav a {
	color: white;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 6px;
	transition: var(--transition);
}

nav a:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: white;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Breadcrumb */
.breadcrumb {
	font-size: 0.95rem;
	color: #555;
}

.breadcrumb ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0;
	margin: 0;
}

.breadcrumb li {
	display: flex;
	align-items: center;
}

.breadcrumb .icon {
	width: 18px;
	height: 18px;
	fill: currentColor;
	margin-right: 6px;
}

.breadcrumb .sep {
	width: 14px;
	height: 14px;
	fill: #aaa;
	margin: 0 6px;
}

.breadcrumb a {
	text-decoration: none;
	color: #0073e6;
	display: flex;
	align-items: center;
	transition: color 0.2s;
}

.breadcrumb a:hover {
	color: #0056b3;
}

.breadcrumb li.active span {
	color: #333;
	font-weight: 600;
}

.breadcrumb li.active .sep {
	fill: #777;
}

/* Linha */
.row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 1rem;
	/* Espaçamento entre colunas */
	margin-left: 0;
	margin-right: 0;
}

.w-100 {
	width: 100%;
}

/* Colunas base para Grid */
.col-1 {
	grid-column: span 1;
}

.col-2 {
	grid-column: span 2;
}

.col-3 {
	grid-column: span 3;
}

.col-4 {
	grid-column: span 4;
}

.col-5 {
	grid-column: span 5;
}

.col-6 {
	grid-column: span 6;
}

.col-7 {
	grid-column: span 7;
}

.col-8 {
	grid-column: span 8;
}

.col-9 {
	grid-column: span 9;
}

.col-10 {
	grid-column: span 10;
}

.col-11 {
	grid-column: span 11;
}

.col-12 {
	grid-column: span 12;
}

/* Responsividade */
@media (min-width: 768px) {
	.col-md-1 {
		grid-column: span 1;
	}

	.col-md-2 {
		grid-column: span 2;
	}

	.col-md-3 {
		grid-column: span 3;
	}

	.col-md-4 {
		grid-column: span 4;
	}

	.col-md-5 {
		grid-column: span 5;
	}

	.col-md-6 {
		grid-column: span 6;
	}

	.col-md-7 {
		grid-column: span 7;
	}

	.col-md-8 {
		grid-column: span 8;
	}

	.col-md-9 {
		grid-column: span 9;
	}

	.col-md-10 {
		grid-column: span 10;
	}

	.col-md-11 {
		grid-column: span 11;
	}

	.col-md-12 {
		grid-column: span 12;
	}
}


/* Centralização vertical e horizontal opcionais */
.row.center {
	align-items: center;
	justify-content: center;
}

.float-left {
	display: block;
	float: left;
}

/* Card de Índice - complementa seu grid existente */
.indice-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-bottom: 1rem;
}

.indice-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Imagem */
.indice-image-link {
	display: block;
	overflow: hidden;
	position: relative;
}

.indice-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.indice-card:hover .indice-image {
	transform: scale(1.05);
}

/* Conteúdo */
.indice-content {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.indice-title {
	margin: 0 0 1rem 0;
	font-size: 1.3rem;
	line-height: 1.4;
}

.indice-link {
	color: #1F2937;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: color 0.3s ease;
}

.indice-link:hover {
	color: #7C3AED;
}

.indice-link svg {
	flex-shrink: 0;
	color: #7C3AED;
}

.indice-description {
	color: #6B7280;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex-grow: 1;
	font-size: 1rem;
}

/* Call to Action */
.indice-cta {
	display: inline-flex;
	align-items: center;
	color: #7C3AED;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.indice-cta:hover {
	color: #6D28D9;
	transform: translateX(4px);
}

/* Ajustes responsivos para o grid */
@media (max-width: 767px) {
	.col-12 {
		margin-bottom: 1.5rem;
	}

	.indice-content {
		padding: 1.25rem;
	}

	.indice-title {
		font-size: 1.2rem;
	}

	.indice-image {
		height: 200px;
	}

	.float-left {
		display: block;
		float: none;
		clear: both;
		margin: 0 auto;
	}
	.container {
		padding: 0 0.5rem;
	}
	.section {
		padding: 1rem;
	}

}

.clear-both {
	clear: both;
}

/* Estados de foco para acessibilidade */
.indice-link:focus,
.indice-cta:focus {
	outline: 2px solid #7C3AED;
	outline-offset: 2px;
	border-radius: 4px;
}

/* Padding */
.p-0 {
	padding: 0 !important;
}

.p-1 {
	padding: 0.25rem !important;
}

.p-2 {
	padding: 0.5rem !important;
}

.p-3 {
	padding: 1rem !important;
}

.p-4 {
	padding: 1.5rem !important;
}

.p-5 {
	padding: 3rem !important;
}

/* Padding por eixo */
.pt-0 {
	padding-top: 0 !important;
}

.pt-1 {
	padding-top: 0.25rem !important;
}

.pt-2 {
	padding-top: 0.5rem !important;
}

.pt-3 {
	padding-top: 1rem !important;
}

.pt-4 {
	padding-top: 1.5rem !important;
}

.pt-5 {
	padding-top: 3rem !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pb-1 {
	padding-bottom: 0.25rem !important;
}

.pb-2 {
	padding-bottom: 0.5rem !important;
}

.pb-3 {
	padding-bottom: 1rem !important;
}

.pb-4 {
	padding-bottom: 1.5rem !important;
}

.pb-5 {
	padding-bottom: 3rem !important;
}

.pl-0 {
	padding-left: 0 !important;
}

.pl-1 {
	padding-left: 0.25rem !important;
}

.pl-2 {
	padding-left: 0.5rem !important;
}

.pl-3 {
	padding-left: 1rem !important;
}

.pl-4 {
	padding-left: 1.5rem !important;
}

.pl-5 {
	padding-left: 3rem !important;
}

.pr-0 {
	padding-right: 0 !important;
}

.pr-1 {
	padding-right: 0.25rem !important;
}

.pr-2 {
	padding-right: 0.5rem !important;
}

.pr-3 {
	padding-right: 1rem !important;
}

.pr-4 {
	padding-right: 1.5rem !important;
}

.pr-5 {
	padding-right: 3rem !important;
}

/* Eixos combinados */
.px-0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.px-1 {
	padding-left: 0.25rem !important;
	padding-right: 0.25rem !important;
}

.px-2 {
	padding-left: 0.5rem !important;
	padding-right: 0.5rem !important;
}

.px-3 {
	padding-left: 1rem !important;
	padding-right: 1rem !important;
}

.px-4 {
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}

.px-5 {
	padding-left: 3rem !important;
	padding-right: 3rem !important;
}

.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.py-1 {
	padding-top: 0.25rem !important;
	padding-bottom: 0.25rem !important;
}

.py-2 {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
}

.py-3 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

.py-4 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

.py-5 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

/* Margem (mesmo esquema) */
.m-0 {
	margin: 0 !important;
}

.m-1 {
	margin: 0.25rem !important;
}

.m-2 {
	margin: 0.5rem !important;
}

.m-3 {
	margin: 1rem !important;
}

.m-4 {
	margin: 1.5rem !important;
}

.m-5 {
	margin: 3rem !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-1 {
	margin-top: 0.25rem !important;
}

.mt-2 {
	margin-top: 0.5rem !important;
}

.mt-3 {
	margin-top: 1rem !important;
}

.mt-4 {
	margin-top: 1.5rem !important;
}

.mt-5 {
	margin-top: 3rem !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-1 {
	margin-bottom: 0.25rem !important;
}

.mb-2 {
	margin-bottom: 0.5rem !important;
}

.mb-3 {
	margin-bottom: 1rem !important;
}

.mb-4 {
	margin-bottom: 1.5rem !important;
}

.mb-5 {
	margin-bottom: 3rem !important;
}

.ml-0 {
	margin-left: 0 !important;
}

.ml-1 {
	margin-left: 0.25rem !important;
}

.ml-2 {
	margin-left: 0.5rem !important;
}

.ml-3 {
	margin-left: 1rem !important;
}

.ml-4 {
	margin-left: 1.5rem !important;
}

.ml-5 {
	margin-left: 3rem !important;
}

.mr-0 {
	margin-right: 0 !important;
}

.mr-1 {
	margin-right: 0.25rem !important;
}

.mr-2 {
	margin-right: 0.5rem !important;
}

.mr-3 {
	margin-right: 1rem !important;
}

.mr-4 {
	margin-right: 1.5rem !important;
}

.mr-5 {
	margin-right: 3rem !important;
}

/* Eixos combinados */
.mx-0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.mx-1 {
	margin-left: 0.25rem !important;
	margin-right: 0.25rem !important;
}

.mx-2 {
	margin-left: 0.5rem !important;
	margin-right: 0.5rem !important;
}

.mx-3 {
	margin-left: 1rem !important;
	margin-right: 1rem !important;
}

.mx-4 {
	margin-left: 1.5rem !important;
	margin-right: 1.5rem !important;
}

.mx-5 {
	margin-left: 3rem !important;
	margin-right: 3rem !important;
}

.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.my-1 {
	margin-top: 0.25rem !important;
	margin-bottom: 0.25rem !important;
}

.my-2 {
	margin-top: 0.5rem !important;
	margin-bottom: 0.5rem !important;
}

.my-3 {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}

.my-4 {
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}

.my-5 {
	margin-top: 3rem !important;
	margin-bottom: 3rem !important;
}

/* Responsivo para md (>=768px) */
@media (min-width: 768px) {
	.p-md-0 {
		padding: 0 !important;
	}

	.p-md-1 {
		padding: 0.25rem !important;
	}

	.p-md-2 {
		padding: 0.5rem !important;
	}

	.p-md-3 {
		padding: 1rem !important;
	}

	.p-md-4 {
		padding: 1.5rem !important;
	}

	.p-md-5 {
		padding: 3rem !important;
	}

	.m-md-0 {
		margin: 0 !important;
	}

	.m-md-1 {
		margin: 0.25rem !important;
	}

	.m-md-2 {
		margin: 0.5rem !important;
	}

	.m-md-3 {
		margin: 1rem !important;
	}

	.m-md-4 {
		margin: 1.5rem !important;
	}

	.m-md-5 {
		margin: 3rem !important;
	}
}

.icon {
	width: 28px;
	/* largura desejada */
	height: 28px;
	/* altura desejada */
	vertical-align: middle;
	/* alinha com o texto */
	fill: currentColor;
	/* herda a cor do texto */
	margin-right: 0.5rem;
	/* espaçamento entre ícone e texto */
}


.img-fluid {
	max-width: 100%;
	height: auto;
	display: block;
	/* remove espaços indesejados abaixo da imagem */
}


/* Grid de Signos */
.signos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.signos-container {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Container com a classe do signo */
.signos-container.aries {
	--signo-color: #8e4550;
}

.signos-container.touro {
	--signo-color: #f07e3d;
}

.signos-container.gemeos {
	--signo-color: #a65e7f;
}

.signos-container.cancer {
	--signo-color: #4da7af;
}

.signos-container.leao {
	--signo-color: #f07e3d;
}

.signos-container.virgem {
	--signo-color: #95a17e;
}

.signos-container.libra {
	--signo-color: #6e5a6f;
}

.signos-container.escorpiao {
	--signo-color: #e30016;
}

.signos-container.sagitario {
	--signo-color: #f07e3d;
}

.signos-container.capricornio {
	--signo-color: #7d4993;
}

.signos-container.aquario {
	--signo-color: #5aa16e;
}

.signos-container.peixes {
	--signo-color: #008bd0;
}

.bg-amarelo {
	background-color: yellow;
}

.signo-card {
	flex: 1 1 calc(33.333% - 1rem);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	padding: 1rem;
	/*display: flex;*/
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
	overflow: hidden;
}

/* Faixa colorida no topo do card - 15px de altura */
.signo-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 7px;
	background-color: var(--signo-color);
	/* Usa a variável CSS */
}

.signo-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.signo-card h3 {
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 1.5rem;
	margin-top: 5px;
	/* Espaço extra para a faixa no topo */
}

/* Faixa colorida à esquerda usando a cor do signo */
.signo-card h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.25rem;
	width: 6px;
	height: 100%;
	border-radius: 3px;
	background-color: var(--signo-color);
	/* Usa a variável CSS */
}

/* Texto da descrição */
.signo-card p {
	color: #555;
	font-size: 0.95rem;
	line-height: 1.4;
	margin: 0;
}

.signo-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
}

.signo-nome {
	padding: 1rem;
	font-weight: 700;
	font-size: 1.2rem;
	color: white;
}

/* Bordas gerais */
.rounded {
	border-radius: 0.25rem !important;
	/* 4px padrão Bootstrap */
}

/* Bordas maiores */
.rounded-sm {
	border-radius: 0.2rem !important;
}

.rounded-md {
	border-radius: 0.5rem !important;
}

.rounded-lg {
	border-radius: 1rem !important;
}

.rounded-full {
	border-radius: 9999px !important;
}

/* círculo / pill */

/* Bordas específicas */
.rounded-top {
	border-top-left-radius: 0.25rem;
	border-top-right-radius: 0.25rem;
}

.rounded-bottom {
	border-bottom-left-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}

.rounded-left {
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
}

.rounded-right {
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}

/* Sombras padrão */
.shadow {
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
	/* leve */
}

.shadow-sm {
	box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.1) !important;
}

/* menor */
.shadow-md {
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15) !important;
}

/* média */
.shadow-lg {
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2) !important;
}

/* grande */

/* Sombras internas */
.shadow-inner {
	box-shadow: inset 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}


/* Cores dos signos */
.aries {
	background-color: #8e4550;
}

.touro {
	background-color: #f07e3d;
}

.gemeos {
	background-color: #a65e7f;
}

.cancer {
	background-color: #4da7af;
}

.leao {
	background-color: #f07e3d;
}

.virgem {
	background-color: #95a17e;
}

.libra {
	background-color: #6e5a6f;
}

.escorpiao {
	background-color: #e30016;
}

.sagitario {
	background-color: #f07e3d;
}

.capricornio {
	background-color: #7d4993;
}

.aquario {
	background-color: #5aa16e;
}

.peixes {
	background-color: #008bd0;
}

.box-aries {
	border-top-color: #8e4550;
}

.box-touro {
	border-top-color: #f07e3d;
}

.box-gemeos {
	border-top-color: #a65e7f;
}

.box-cancer {
	border-top-color: #4da7af;
}

.box-leao {
	border-top-color: #f07e3d;
}

.box-virgem {
	border-top-color: #95a17e;
}

.box-libra {
	border-top-color: #6e5a6f;
}

.box-escorpiao {
	border-top-color: #e30016;
}

.box-sagitario {
	border-top-color: #f07e3d;
}

.box-capricornio {
	border-top-color: #7d4993;
}

.box-aquario {
	border-top-color: #5aa16e;
}

.box-peixes {
	border-top-color: #008bd0;
}

.text-white {
	color: #FFF;
}

.text-dark {
	color: #222121;
}

.bg-gray-900 {
	background-color: rgb(17 24 39/1);
}

.bg-gray-800 {
	background-color: rgb(31 41 55/1);
}

.bg-gray-80,
.bg-gray-100 {
	background-color: #ecececff;
}

.border-top {
	border-top: 10px;
}

.center {
	display: block;
	margin: 0 auto;
}

.block {
	display: block;
}

/* Seções */
.section {
	background: white;
	border-radius: var(--radius);
	padding: 1rem;
	margin-bottom: 2rem;
	box-shadow: var(--shadow);
}

.section-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

/* Formulários */
.form-group {
	margin-bottom: 1.5rem;
}

label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.form-row {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.form-control {
	flex: 1;
	min-width: 150px;
	width: 100%;
	padding: 0.75rem;
	border: 1px solid var(--border);
	border-radius: 6px;
	font-size: 1rem;
	transition: var(--transition);
	background-color: white;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background-color: var(--primary);
	color: white;
	border: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--transition);
	margin: 30px 0;
}

.btn:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
	color: white;
}

.btn-block {
	display: inline-block;
	/* ou block */
	width: 100%;
	/* ocupa toda a largura do contêiner */
	text-align: center;
	/* centraliza o texto */
	padding: 0.75rem 1rem;
	/* altura e espaçamento */
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

/* Poll */
.poll-option {
	margin-bottom: 1rem;
	padding: 1rem;
	border: 1px solid var(--border);
	border-radius: 6px;
	cursor: pointer;
	transition: var(--transition);
}

.poll-option:hover {
	border-color: var(--primary);
	background-color: rgba(109, 40, 217, 0.05);
}

.poll-option input {
	margin-right: 0.5rem;
}

.poll-result {
	display: none;
	padding: 1.5rem;
	margin-top: 1rem;
	background-color: var(--dark);
	color: white;
	border-radius: var(--radius);
}

/* Previsões */
.previsao-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
}

.previsao-card {
	background: white;
	border-radius: var(--radius);
	padding: 1.5rem;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.previsao-card:hover {
	transform: translateY(-3px);
}

.previsao-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.previsao-header img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

/* Footer */
footer {
	background-color: var(--dark);
	color: white;
	padding: 3rem 0 1.5rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	color: white;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #D1D5DB;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-links a:hover {
	color: white;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: var(--transition);
}

.social-links a:hover {
	background-color: var(--primary);
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid #374151;
	color: #9CA3AF;
	font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #111;
	color: #fff;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 9999;
	transition: all 0.3s ease;
}

.hidden {
	display: none;
}

.cookie-banner .btn {
	background: #EC4899;
	border: none;
	color: #fff;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
}


/* Responsividade */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.mobile-menu-btn {
		display: block;
	}

	nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--primary-dark);
		padding: 1rem;
		box-shadow: var(--shadow);
		display: none;
	}

	nav.active {
		display: block;
	}

	nav ul {
		flex-direction: column;
		gap: 0.5rem;
	}

	.signos-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}

	.previsao-grid {
		grid-template-columns: 1fr;
	}

	.form-row {
		flex-direction: column;
	}

	.form-control {
		min-width: 100%;
	}
}

/* Animações */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	animation: fadeIn 0.5s ease forwards;
}

/* Utilitários */
.text-center {
	text-align: center;
}

.mb-0 {
	margin-bottom: 0;
}

.mt-2 {
	margin-top: 2rem;
}

.hidden {
	display: none;
}

@media (min-width: 768px) {
	.mapaimg {
		width: 50%;
		float: left;
	}
}

ol.lista,
ul.lista {
	counter-reset: contador;
	list-style: none;
	padding-left: 0;
	border-left: 3px solid var(--color-primary, #7b68ee);
	margin: 1.5em 0;
}

ol.lista li,
ul.lista li {
	counter-increment: contador;
	position: relative;
	padding: 0.8em 1em 0.8em 2.5em;
	margin-bottom: 0.8em;
	background: linear-gradient(90deg, rgba(123, 104, 238, 0.1), transparent);
	border-radius: 6px;
	transition: background 0.3s;
}

ol.lista li::before {
	content: counter(contador) ".";
	position: absolute;
	left: 0.6em;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-primary, #7b68ee);
	font-weight: bold;
	font-size: 1.1em;
}

ul.lista li::before {
	content: "•";
	/* bullet personalizado */
	position: absolute;
	left: 0.6em;
	top: 50%;
	transform: translateY(-50%);
	color: var(--color-primary, #7b68ee);
	font-weight: bold;
	font-size: 1.1em;
}

ol.lista li:hover,
ul.lista li:hover {
	background: linear-gradient(90deg, rgba(123, 104, 238, 0.2), transparent);
}

.mercadopago-box {
	background: #ffffff;
	border: 2px solid #009ee3;
	/* Azul oficial */
	border-radius: 12px;
	padding: 1.5em;
	margin: 1.5em 0;
	box-shadow: 0 4px 10px rgba(0, 158, 227, 0.1);
	transition: all 0.3s ease;
	font-family: 'Inter', 'Segoe UI', sans-serif;
}

.mercadopago-box:hover {
	box-shadow: 0 6px 16px rgba(0, 158, 227, 0.2);
	transform: translateY(-2px);
}

.mercadopago-box b {
	display: block;
	font-size: 1.1rem;
	color: #007eb5;
	/* Azul mais escuro da paleta */
	margin-bottom: 0.8em;
}

#wallet_container {
	background: linear-gradient(135deg, #009ee3, #00b7ff);
	border-radius: 10px;
	padding: 1em;
	text-align: center;
	color: white;
	font-weight: 500;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

#wallet_container:hover {
	background: linear-gradient(135deg, #00b7ff, #009ee3);
	box-shadow: 0 0 10px rgba(0, 158, 227, 0.4);
}

.lista-chines {
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	overflow: hidden;
	max-width: 480px;
	margin: 0 auto;
	font-family: 'Inter', 'Segoe UI', sans-serif;
}

.lista-chines li {
	list-style: none;
}

.lista-chines .list-item {
	border-bottom: 1px solid #f0f0f0;
	transition: background 0.3s ease, transform 0.2s ease;
}

.lista-chines .list-item:hover {
	background: #f9fcff;
	transform: scale(1.01);
}

.lista-chines a {
	display: block;
}

.lista-chines .emoji {
	font-size: 1.2rem;
	margin-right: 6px;
}

.lista-chines .icon {
	transition: transform 0.3s ease;
}

.lista-chines .list-item:hover .icon {
	transform: translateX(4px);
}

/* Estilo do título com cor do signo */
.bg-title.capricornio {
	background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

/* Responsivo */
@media (max-width: 480px) {
	.lista-chines {
		font-size: 0.95rem;
	}

	.lista-chines .icon {
		display: none;
	}
}

.h300 {
	min-height: 300;
	height: auto;
}

.h350 {
	min-height: 350;
	height: auto;
}

.h800 {
	min-height: 800;
	height: auto;
}

.autocomplete-list {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 180px;
    overflow-y: auto;
    width: 300px; /* Ajusta al tamaño del input */
    padding: 0;
    margin-top: 0;
    list-style: none;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.autocomplete-list li {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.autocomplete-list li:hover {
    background-color: #f0f0f0;
}

.autocomplete-list li.active {
    background-color: #dceeff;
}

.video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: 12px; /* opcional, dá um visual mais bonito */
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15); /* opcional */
	background: #000;
}

.video-container iframe,
.video-container .responsive-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


.spinner {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #666;
}

.spinner-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

.spinner-text {
    font-style: italic;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mensaje {
    padding: 10px;
    text-align: center;
    font-style: italic;
    color: #666;
}

.mensaje.error {
    color: #e74c3c;
}

.mensaje.vacío {
    color: #f39c12;
}

#lista-sugerencias li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

#lista-sugerencias li:hover,
#lista-sugerencias li.active {
    background-color: #f8f9fa;
}

.ciudad-nombre {
    font-weight: bold;
    margin-bottom: 2px;
}

.ciudad-detalle {
    font-size: 0.8em;
    color: #666;
}

input.seleccionado {
    border-color: #3498db !important;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}