/* --- Variáveis de Tema (Light Mode Padrão) --- */
:root {
	--bg-body: #f8fafc;
	--bg-card: #ffffff;
	--bg-section-dark: #0f172a;
	/* Para a seção de benefícios */
	--text-main: #1e293b;
	--text-muted: #64748b;
	--border-color: #e2e8f0;

	--gold-primary: #d9b310;
	--gold-hover: #b39200;
	--btn-text: #ffffff;

	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* --- Dark Mode Variables --- */
body.dark-mode {
	--bg-body: #020b14;
	--bg-card: #0a1929;
	--bg-section-dark: #050f1a;
	--text-main: #f8fafc;
	--text-muted: #94a3b8;
	--border-color: rgba(255, 255, 255, 0.1);

	--gold-primary: #ffd700;
	--gold-hover: #e6c200;
	--btn-text: #020b14;

	--shadow-sm: none;
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.7);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
	transition:
		background 0.3s,
		color 0.3s,
		border 0.3s;
}

body {
	background-color: var(--bg-body);
	color: var(--text-main);
	line-height: 1.6;
}

img {
	width: 100%;
}

/* --- Utilitários --- */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

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

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

.section-padding {
	padding: 80px 0;
}

/* --- Botões --- */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.2s;
	border: none;
}

.btn-primary {
	background: var(--gold-primary);
	color: var(--btn-text);
}

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

.btn-outline {
	border: 2px solid var(--gold-primary);
	color: var(--gold-primary);
	background: transparent;
}

/* --- Header --- */
header {
	position: sticky;
	width: 100%;
	top: 0;
	z-index: 1000;
	background: var(--bg-card);
	border-bottom: 1px solid var(--border-color);
	padding: 15px 0;
	box-shadow: var(--shadow-md);
}

.nav-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.logo {
	min-width: 185px;
	width: 20%;
}

.logo_agrad {
	width: 50%;
	max-width: 90px;
}

.cursor-icon {
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 18px solid var(--gold-primary);
	transform: rotate(-45deg);
}

nav ul {
	display: flex;
	gap: 30px;
	list-style: none;
}

nav a {
	text-decoration: none;
	color: var(--text-muted);
	font-weight: 500;
}

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

.theme-toggle {
	background: none;
	border: 1px solid var(--border-color);
	color: var(--text-main);
	padding: 5px 10px;
	border-radius: 20px;
	cursor: pointer;
}

/* --- Hero Section --- */
.hero {
	padding-top: 140px;
	padding-bottom: 80px;
	text-align: center;
	background: linear-gradient(to bottom, var(--bg-card), var(--bg-body));
}

.hero h1 {
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--text-main);
}

.hero p {
	font-size: 1.2rem;
	color: var(--text-muted);
	max-width: 700px;
	margin: 0 auto 40px;
}

.hero-mockup {
	margin-top: 60px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	aspect-ratio: 16/9;
	background: #0f172a;
	border-radius: 12px;
	border: 1px solid var(--gold-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
	color: rgba(255, 255, 255, 0.2);
	overflow: hidden;
}

/* --- Seção: O que é --- */
.about-section {
	padding: 60px 0;
}

.about-section h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.about-section p {
	font-size: 1.1rem;
	color: var(--text-muted);
	max-width: 800px;
	margin: 0 auto;
}

/* --- Seção: Diferenciais (2 Colunas) --- */
.diff-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	align-items: center;
}

.diff-content h2 {
	font-size: 2.5rem;
	line-height: 1.2;
	margin-bottom: 30px;
}

.diff-item {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
}

.diff-icon {
	color: var(--gold-primary);
	font-size: 1.2rem;
	font-weight: bold;
}

.diff-item h4 {
	font-size: 1.1rem;
	margin-bottom: 5px;
	color: var(--text-main);
}

.diff-item p {
	font-size: 0.95rem;
	color: var(--text-muted);
}

.diff-image {
	background: #cbd5e1;
	width: 100%;
	height: 500px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	overflow: hidden;
}

/* --- Seção: Planos (Preços) --- */
.pricing-section {
	background: var(--bg-card);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.price-card {
	background: var(--bg-body);
	border: 1px solid var(--border-color);
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	position: relative;
}

.price-card.featured {
	border: 2px solid var(--gold-primary);
	transform: scale(1);
	z-index: 2;
	background: var(--bg-card);
	box-shadow: var(--shadow-lg);
}

.price-card h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.price {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-main);
	margin-bottom: 20px;
	display: block;
}

.price span {
	font-size: 1rem;
	color: var(--text-muted);
	font-weight: 400;
}

.features-list {
	list-style: none;
	margin-bottom: 30px;
	text-align: left;
}

.features-list li {
	margin-bottom: 12px;
	color: var(--text-muted);
	display: flex;
	gap: 10px;
}

.features-list li::before {
	content: "✓";
	color: var(--gold-primary);
	font-weight: bold;
}

/* --- Seção: Benefícios (Dark) --- */
.benefits-section {
	background: var(--bg-section-dark);
	color: #fff;
}

.benefits-grid {
	margin-top: 40px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.benefit-box {
	background: rgba(255, 255, 255, 0.05);
	padding: 30px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.benefit-box:hover {
	border-color: var(--gold-primary);
}

.benefit-box h4 {
	margin-bottom: 10px;
	color: var(--gold-primary);
}

/* --- Formulário (Teste Grátis) --- */
.form-container {
	max-width: 600px;
	margin: 0 auto;
	background: var(--bg-card);
	padding: 40px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-md);
}

.form-group {
	margin-bottom: 20px;
	text-align: left;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--text-main);
}

.form-input {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--border-color);
	background: var(--bg-body);
	border-radius: 6px;
	color: var(--text-main);
}

.form-input:focus {
	outline: none;
	border-color: var(--gold-primary);
}

/* Footer */
footer {
	padding: 40px 0;
	border-top: 1px solid var(--border-color);
	margin-top: 80px;

	.container {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
}

/* TELA AGRADECIMENTO */
#main_agradecimento {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	height: 100vh;
}

.container_agradecimento {
	max-width: 600px;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	box-shadow: var(--shadow-lg);
}

.logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-bottom: 1.5rem;
}

.agrad_h1 {
	font-size: 2.2rem;
	color: #FFD600;
	margin-bottom: 1rem;
	text-align: center;
}

.agrad_p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	text-align: center;
}

.btn_agradecimento {
	display: block;
	margin: 0 auto;
	text-align: center;
	background: #FFD600;
	color: #0A1F44;
	padding: 0.8rem 1.5rem;
	border-radius: 5px;
	font-weight: 700;
	text-decoration: none;
	transition: 0.3s;
}

a.btn:hover {
	background: #e6c200;
}

@media (min-width: 518px) {
	.benefits-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (min-width: 768px) {
	.nav-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.hero h1 {
		font-size: 3.5rem;
	}

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

	.price-card.featured {
		transform: scale(1.05);
	}
}