/* ================================================================
   ATHLON360 — Estilos Principais
   Paleta: Azul marinho #0d1f3c | Ciano #06b6d4 | Verde #10b981
================================================================ */

/* ---- Variáveis de tema ---- */
:root {
	--c-primary: #06b6d4;
	--c-secondary: #10b981;
	--c-accent: #0284c7;
	--c-gradient: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
	--c-gradient-r: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);

	/* Light mode */
	--bg-body: #f8fafc;
	--bg-card: #ffffff;
	--bg-nav: rgba(255, 255, 255, 0.92);
	--bg-section-alt: #f1f5f9;
	--bg-hero: #0d1f3c;
	--text-main: #0f172a;
	--text-muted: #64748b;
	--text-heading: #0d1f3c;
	--border-color: #e2e8f0;
	--shadow: 0 4px 24px rgba(6, 182, 212, 0.1);
	--shadow-card: 0 2px 16px rgba(0, 0, 0, 0.08);
	--shadow-hover: 0 8px 32px rgba(6, 182, 212, 0.22);
	--nav-text: #0d1f3c;
	--toggle-bg: #e2e8f0;
	--toggle-knob: #0d1f3c;
}

[data-theme="dark"] {
	--bg-body: #060f1a;
	--bg-card: #0d1f3c;
	--bg-nav: rgba(6, 15, 26, 0.95);
	--bg-section-alt: #091629;
	--bg-hero: #060f1a;
	--text-main: #e2e8f0;
	--text-muted: #94a3b8;
	--text-heading: #f1f5f9;
	--border-color: #1e3a5f;
	--shadow: 0 4px 24px rgba(6, 182, 212, 0.15);
	--shadow-card: 0 2px 20px rgba(0, 0, 0, 0.4);
	--shadow-hover: 0 8px 36px rgba(6, 182, 212, 0.3);
	--nav-text: #e2e8f0;
	--toggle-bg: #1e3a5f;
	--toggle-knob: #06b6d4;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: "Inter", "Segoe UI", system-ui, sans-serif;
	background-color: var(--bg-body);
	color: var(--text-main);
	line-height: 1.7;
	transition:
		background-color 0.35s ease,
		color 0.35s ease;
	overflow-x: hidden;
}

a {
	color: var(--c-primary);
	text-decoration: none;
	transition: color 0.2s;
}
a:hover {
	color: var(--c-secondary);
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
ul {
	list-style: none;
}

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

.section-pad {
	padding: 96px 0;
}
.section-pad-sm {
	padding: 64px 0;
}

.gradient-text {
	background: var(--c-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(6, 182, 212, 0.12);
	border: 1px solid rgba(6, 182, 212, 0.3);
	color: var(--c-primary);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 20px;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}
.section-header h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	font-weight: 800;
	color: var(--text-heading);
	line-height: 1.2;
	margin-bottom: 16px;
}
.section-header p {
	font-size: 1.05rem;
	color: var(--text-muted);
	max-width: 560px;
	margin: 0 auto;
}

.divider {
	width: 56px;
	height: 4px;
	background: var(--c-gradient);
	border-radius: 4px;
	margin: 16px auto 0;
}

/* ---- Botões ---- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 50px;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
	border: none;
	transition: all 0.28s ease;
	text-decoration: none;
}

.btn-primary {
	background: var(--c-gradient);
	color: #fff;
	box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(6, 182, 212, 0.5);
	color: #fff;
}

.btn-outline {
	background: transparent;
	color: var(--c-primary);
	border: 2px solid var(--c-primary);
}
.btn-outline:hover {
	background: var(--c-primary);
	color: #fff;
	transform: translateY(-2px);
}

.btn-white {
	background: #fff;
	color: var(--c-accent);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
	color: var(--c-accent);
}

.btn-lg {
	padding: 16px 40px;
	font-size: 1.05rem;
}
.btn-sm {
	padding: 10px 22px;
	font-size: 0.85rem;
}

/* ================================================================
   NAVBAR
================================================================ */
#navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--bg-nav);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid transparent;
	transition: all 0.35s ease;
}

#navbar.scrolled {
	border-bottom-color: var(--border-color);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.nav-logo img {
	height: 46px;
	width: auto;
	display: block;
}

/* Logos por tema — !important necessário para sobrescrever .nav-logo img { display:block } */
.nav-logo .logo-for-dark  { display: none   !important; }
.nav-logo .logo-for-light { display: block  !important; }
[data-theme="dark"] .nav-logo .logo-for-light { display: none  !important; }
[data-theme="dark"] .nav-logo .logo-for-dark  { display: block !important; }

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

.nav-menu a {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--nav-text);
	letter-spacing: 0.02em;
	position: relative;
	padding-bottom: 3px;
}
.nav-menu a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--c-gradient);
	border-radius: 2px;
	transition: width 0.3s ease;
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
	width: 100%;
}
.nav-menu a:hover {
	color: var(--c-primary);
}

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

/* Toggle dark/light */
.theme-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--toggle-bg);
	border: none;
	cursor: pointer;
	color: var(--nav-text);
	font-size: 1.1rem;
	transition: all 0.3s ease;
	flex-shrink: 0;
}
.theme-toggle:hover {
	background: var(--c-primary);
	color: #fff;
	transform: rotate(20deg);
}

/* Hamburguer */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}
.nav-toggle span {
	display: block;
	width: 26px;
	height: 2px;
	background: var(--nav-text);
	border-radius: 2px;
	transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
	opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ================================================================
   HERO
================================================================ */
#hero {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	padding-top: 72px;
	display: flex;
	align-items: center;

	/* Imagem de fundo cinematográfica */
	background-image: url("../img/fundo-hero.png");
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
}

/* Overlay gradiente: opaco na esquerda (texto), transparente na direita (imagem aparece) */
#hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		100deg,
		rgba(6, 15, 26, 0.97) 0%,
		rgba(6, 15, 26, 0.88) 40%,
		rgba(6, 15, 26, 0.55) 65%,
		rgba(6, 15, 26, 0.15) 100%
	);
	pointer-events: none;
	z-index: 1;
}

/* Toque de cor ciano sutil por cima */
.hero-bg-mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 40% 50% at 15% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 60%),
		radial-gradient(ellipse 30% 40% at 5% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
	pointer-events: none;
	z-index: 2;
}

.hero-grid-lines {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
	z-index: 2;
}

/* Hero: alinha o conteúdo com o logo da navbar */
#hero > .container {
	max-width: none;
	width: 100%;
	margin: 0;
	/* mesma margem esquerda do container centrado da navbar */
	padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
	padding-right: clamp(24px, 3vw, 56px);
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr;
	width: 100%;
}

.hero-content {
	position: relative;
	z-index: 3;
	max-width: 700px;
	text-align: left;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(6, 182, 212, 0.12);
	border: 1px solid rgba(6, 182, 212, 0.3);
	color: var(--c-primary);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 24px;
}
.hero-eyebrow .dot {
	width: 7px;
	height: 7px;
	background: var(--c-secondary);
	border-radius: 50%;
	animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.4;
		transform: scale(0.7);
	}
}

.hero-title {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 900;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 20px;
}

.hero-sub {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 36px;
	max-width: 500px;
}

.hero-cta-group {
	display: flex;
	gap: 16px;
	flex-wrap: nowrap;   /* botões sempre lado a lado */
	margin-bottom: 48px;
	align-items: center;
}

.hero-stats {
	display: flex;
	gap: 0;
	flex-wrap: wrap;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(6,182,212,0.18);
	border-radius: 16px;
	overflow: hidden;
	backdrop-filter: blur(8px);
}
.hero-stat {
	flex: 1;
	min-width: 120px;
	padding: 20px 24px;
	border-right: 1px solid rgba(6,182,212,0.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
	display: block;
	font-size: clamp(2.2rem, 3.5vw, 3.4rem);
	font-weight: 900;
	line-height: 1;
	margin-bottom: 8px;
	background: var(--c-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
/* counter span herda o tamanho do strong — não sobrescrever */
.hero-stat strong span {
	font-size: inherit;
	background: inherit;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
/* apenas o label (filho direto) tem fonte pequena */
.hero-stat > span {
	font-size: 0.70rem;
	color: rgba(255, 255, 255, 0.50);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

/* hero-visual removido — fundo-hero.png ocupa o papel visual */

/* ================================================================
   MODULOS / FUNCIONALIDADES
================================================================ */
#funcionalidades {
	background: var(--bg-body);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 28px;
}

.feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	padding: 36px 32px;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
	cursor: default;
}
.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--c-gradient);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}
.feature-card:hover::before {
	transform: scaleX(1);
}
.feature-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-hover);
	border-color: rgba(6, 182, 212, 0.25);
}

.feature-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: rgba(6, 182, 212, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--c-primary);
	margin-bottom: 20px;
	transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
	background: var(--c-gradient);
	color: #fff;
	transform: rotate(-5deg) scale(1.1);
}

.feature-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text-heading);
	margin-bottom: 10px;
}
.feature-card p {
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.65;
}

/* ================================================================
   COMO FUNCIONA
================================================================ */
#como-funciona {
	background: var(--bg-section-alt);
}

.steps-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0;
	position: relative;
}
.steps-wrap::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--c-gradient);
	opacity: 0.3;
}

.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 24px;
	position: relative;
}

.step-number {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--c-gradient);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	box-shadow: 0 6px 24px rgba(6, 182, 212, 0.35);
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.step h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-heading);
	margin-bottom: 10px;
}
.step p {
	font-size: 0.88rem;
	color: var(--text-muted);
	line-height: 1.65;
}

/* ================================================================
   MODALIDADES
================================================================ */
#modalidades {
	background: var(--bg-body);
}

.modalities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 20px;
}

.modality-card {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 16px;
	padding: 28px 16px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: default;
}
.modality-card:hover {
	transform: translateY(-4px);
	border-color: var(--c-primary);
	box-shadow: var(--shadow-hover);
}
.modality-card .mod-icon {
	font-size: 2rem;
	margin-bottom: 12px;
	display: block;
}
.modality-card span {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-muted);
}
.modality-card:hover span {
	color: var(--c-primary);
}

/* ================================================================
   SHOWCASE — IFRJ VOLEI
================================================================ */
#showcase {
	background: var(--bg-section-alt);
}

.showcase-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

.showcase-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(16, 185, 129, 0.12);
	border: 1px solid rgba(16, 185, 129, 0.3);
	color: var(--c-secondary);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 20px;
}

.showcase-content h2 {
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 800;
	color: var(--text-heading);
	line-height: 1.2;
	margin-bottom: 16px;
}

.showcase-content p {
	font-size: 1rem;
	color: var(--text-muted);
	margin-bottom: 24px;
	line-height: 1.7;
}

.showcase-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}
.showcase-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.92rem;
	color: var(--text-main);
	font-weight: 500;
}
.showcase-list li i {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(16, 185, 129, 0.15);
	color: var(--c-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.65rem;
	flex-shrink: 0;
}

.showcase-visual {
	position: relative;
}

.showcase-mockup {
	background: var(--bg-card);
	border: 1px solid var(--border-color);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: box-shadow 0.3s ease;
}
.showcase-mockup:hover {
	box-shadow: var(--shadow-hover);
}

.mockup-bar {
	background: var(--bg-section-alt);
	border-bottom: 1px solid var(--border-color);
	padding: 12px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.mockup-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.mockup-dot:nth-child(1) {
	background: #ef4444;
}
.mockup-dot:nth-child(2) {
	background: #f59e0b;
}
.mockup-dot:nth-child(3) {
	background: #22c55e;
}

.mockup-body {
	padding: 24px;
}

.mockup-stat-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 20px;
}
.mockup-stat {
	background: var(--bg-section-alt);
	border-radius: 12px;
	padding: 16px 12px;
	text-align: center;
}
.mockup-stat strong {
	display: block;
	font-size: 1.4rem;
	font-weight: 800;
	background: var(--c-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.mockup-stat small {
	font-size: 0.72rem;
	color: var(--text-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.mockup-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.82rem;
}
.mockup-table th {
	text-align: left;
	color: var(--text-muted);
	font-weight: 600;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 6px 8px;
	border-bottom: 1px solid var(--border-color);
}
.mockup-table td {
	padding: 10px 8px;
	border-bottom: 1px solid var(--border-color);
	color: var(--text-main);
	font-weight: 500;
}
.mockup-table tr:last-child td {
	border-bottom: none;
}

.status-badge {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 50px;
	font-size: 0.72rem;
	font-weight: 600;
}
.status-badge.ok {
	background: rgba(16, 185, 129, 0.15);
	color: #10b981;
}
.status-badge.at {
	background: rgba(6, 182, 212, 0.15);
	color: #06b6d4;
}
.status-badge.al {
	background: rgba(245, 158, 11, 0.15);
	color: #f59e0b;
}

/* ================================================================
   PRICING
================================================================ */
#planos {
	background: var(--bg-body);
}

/* ---- Grid de dois cards ---- */
.pricing-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	max-width: 900px;
	margin: 0 auto;
}

/* ---- Card base ---- */
.pricing-card {
	background: var(--bg-card);
	border: 2px solid var(--border-color);
	border-radius: 28px;
	padding: 48px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

/* ---- Card Mensal (básico) ---- */
.pricing-card-basic {
	box-shadow: var(--shadow-card);
}
.pricing-card-basic::after {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--border-color);
}

/* ---- Card Anual (destaque) ---- */
.pricing-card-annual {
	border-color: rgba(6,182,212,0.40);
	box-shadow: var(--shadow-hover);
}
.pricing-card-annual::after {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: var(--c-gradient);
}

/* Badge "Melhor Valor" */
.pricing-best-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--c-gradient);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 5px 16px;
	border-radius: 50px;
	margin-bottom: 20px;
}

/* Nome do plano */
.pricing-plan-name {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--text-heading);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 20px;
}
.pricing-card-annual .pricing-plan-name { color: var(--c-primary); }

/* Total anual e economia */
.pricing-annual-total {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 8px;
	font-size: 0.88rem;
	color: var(--text-muted);
}
.pricing-economy {
	display: inline-block;
	background: rgba(16,185,129,0.12);
	color: var(--c-secondary);
	font-weight: 700;
	font-size: 0.80rem;
	padding: 3px 12px;
	border-radius: 50px;
	border: 1px solid rgba(16,185,129,0.25);
}

.pricing-top-label {
	display: inline-block;
	background: var(--c-gradient);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 18px;
	border-radius: 50px;
	margin-bottom: 24px;
}

/* Responsivo: empilhar em mobile */
@media (max-width: 680px) {
	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 460px;
	}
}

.pricing-price {
	margin-bottom: 8px;
}
.pricing-currency {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--c-primary);
	vertical-align: top;
	margin-top: 12px;
	display: inline-block;
}
.pricing-value {
	font-size: 5rem;
	font-weight: 900;
	color: var(--text-heading);
	line-height: 1;
}
.pricing-cents {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-heading);
}
.pricing-period {
	font-size: 0.9rem;
	color: var(--text-muted);
	margin-bottom: 32px;
}

.pricing-divider {
	height: 1px;
	background: var(--border-color);
	margin: 28px 0;
}

.pricing-features {
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-align: left;
	margin-bottom: 36px;
}
.pricing-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.92rem;
	color: var(--text-main);
}
.pricing-features li i {
	color: var(--c-secondary);
	font-size: 1rem;
	flex-shrink: 0;
}

.pricing-note {
	margin-top: 20px;
	font-size: 0.82rem;
	color: var(--text-muted);
}
.pricing-note a {
	color: var(--c-primary);
	font-weight: 600;
}

/* ================================================================
   CTA FINAL
================================================================ */
#cta-final {
	background: #060f1a;
	position: relative;
	overflow: hidden;
}

#cta-final::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 60% at 80% 50%, rgba(6, 182, 212, 0.14) 0%, transparent 60%),
		radial-gradient(ellipse 50% 60% at 15% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
	pointer-events: none;
}

.cta-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 96px 24px;
}
.cta-inner h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: #fff;
	margin-bottom: 16px;
}
.cta-inner p {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 40px;
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
}
.cta-btn-group {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ================================================================
   FOOTER
================================================================ */
footer {
	background: #060f1a;
	border-top: 1px solid #0d1f3c;
	padding: 64px 0 32px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand img {
	height: 100px;
	margin-bottom: 16px;
}
.footer-brand p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.7;
	max-width: 260px;
}

.footer-socials {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}
.footer-social-link {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
	transition: all 0.25s ease;
}
.footer-social-link:hover {
	background: var(--c-primary);
	border-color: var(--c-primary);
	color: #fff;
	transform: translateY(-2px);
}

.footer-col h4 {
	font-size: 0.82rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.35);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 20px;
}
.footer-col ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer-col ul a {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.2s;
}
.footer-col ul a:hover {
	color: var(--c-primary);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.footer-bottom p {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.3);
}
.footer-bottom span {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.3);
}
.footer-bottom .heart {
	color: #ef4444;
}

/* ================================================================
   SCROLL ANIMATIONS
================================================================ */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.65s ease,
		transform 0.65s ease;
}
.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}
.reveal-left {
	opacity: 0;
	transform: translateX(-32px);
	transition:
		opacity 0.65s ease,
		transform 0.65s ease;
}
.reveal-left.visible {
	opacity: 1;
	transform: translateX(0);
}
.reveal-right {
	opacity: 0;
	transform: translateX(32px);
	transition:
		opacity 0.65s ease,
		transform 0.65s ease;
}
.reveal-right.visible {
	opacity: 1;
	transform: translateX(0);
}

/* delays */
.delay-1 {
	transition-delay: 0.1s;
}
.delay-2 {
	transition-delay: 0.2s;
}
.delay-3 {
	transition-delay: 0.3s;
}
.delay-4 {
	transition-delay: 0.4s;
}
.delay-5 {
	transition-delay: 0.5s;
}
.delay-6 {
	transition-delay: 0.6s;
}

/* ================================================================
   RESPONSIVO
================================================================ */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.hero-img-wrap img {
		max-width: 380px;
	}
}

@media (max-width: 900px) {
	#hero {
		background-position: 70% center;
	}
	#hero::before {
		background: linear-gradient(
			180deg,
			rgba(6, 15, 26, 0.95) 0%,
			rgba(6, 15, 26, 0.88) 60%,
			rgba(6, 15, 26, 0.75) 100%
		);
	}
	.hero-inner {
		grid-template-columns: 1fr;
	}
	.hero-content {
		text-align: left;
		max-width: 100%;
	}
	.showcase-inner {
		grid-template-columns: 1fr;
	}
	.steps-wrap::before {
		display: none;
	}
	.nav-menu {
		display: none;
		flex-direction: column;
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		background: var(--bg-nav);
		padding: 24px;
		gap: 20px;
		border-bottom: 1px solid var(--border-color);
		backdrop-filter: blur(16px);
	}
	.nav-menu.open {
		display: flex;
	}
	.nav-toggle {
		display: flex;
	}
}

@media (max-width: 640px) {
	.section-pad {
		padding: 64px 0;
	}
	.features-grid {
		grid-template-columns: 1fr;
	}
	.modalities-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.footer-grid {
		grid-template-columns: 1fr;
	}
	.pricing-card {
		padding: 40px 28px;
	}
	.mockup-stat-row {
		grid-template-columns: repeat(3, 1fr);
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	.hero-stats {
		gap: 24px;
	}
}

@media (max-width: 420px) {
	.modalities-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.hero-cta-group {
		flex-direction: column;
		align-items: center;
	}
}

/* ================================================================
   SCROLLBAR CUSTOM
================================================================ */
::-webkit-scrollbar {
	width: 6px;
}
::-webkit-scrollbar-track {
	background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
	background: var(--c-primary);
	border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--c-secondary);
}

/* ================================================================
   SELECTION
================================================================ */
::selection {
	background: rgba(6, 182, 212, 0.25);
	color: var(--c-primary);
}

/* ================================================================
   FEATURES — 3 GRUPOS (Principal / Gestão / Ferramentas)
================================================================ */
.features-group { margin-bottom: 56px; }
.features-group:last-child { margin-bottom: 0; }

.features-group-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  width: 100%;
}
.features-group-label i {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--c-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.features-grid-tools {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* card especial — ferramentas */
.feature-card.tool-card {
  background: linear-gradient(135deg, rgba(6,182,212,0.06), rgba(16,185,129,0.06));
  border-color: rgba(6,182,212,0.20);
}
.feature-card.tool-card .feature-icon {
  background: var(--c-gradient);
  color: #fff;
}

/* ================================================================
   SISTEMA EM AÇÃO — SCREENSHOT TABS
================================================================ */
#sistema { background: var(--bg-section-alt); }

.screenshots-wrap { max-width: 1000px; margin: 0 auto; }

.screenshots-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}
.tab-btn:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.tab-btn.active {
  background: var(--c-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(6,182,212,0.30);
}

.screenshots-content { position: relative; }

.tab-panel {
  display: none;
  animation: fadeInTab 0.35s ease;
}
.tab-panel.active { display: block; }

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.screenshot-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.screenshot-bar {
  background: var(--bg-section-alt);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.screenshot-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.screenshot-bar .dot:nth-child(1) { background: #ef4444; }
.screenshot-bar .dot:nth-child(2) { background: #f59e0b; }
.screenshot-bar .dot:nth-child(3) { background: #22c55e; }
.screenshot-bar .url {
  margin-left: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
}
.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.screenshot-caption strong { color: var(--c-primary); }

/* ================================================================
   PORTAL DO ATLETA
================================================================ */
#portal-atleta { background: var(--bg-body); }

.portal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.portal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.30);
  color: var(--c-secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.portal-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 16px;
}
.portal-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.portal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.portal-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}
.portal-pill i { color: var(--c-secondary); font-size: 0.80rem; }

.portal-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup-wrap {
  position: relative;
  max-width: 280px;
  width: 100%;
}

.phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(16,185,129,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.phone-mockup-wrap img {
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  width: 100%;
  position: relative;
  z-index: 1;
}

/* ================================================================
   QR CODE DESTAQUE — banner inline
================================================================ */
.qrcode-banner {
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(16,185,129,0.06));
  border: 1px solid rgba(6,182,212,0.22);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 36px;
}
.qrcode-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--c-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.qrcode-text h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.qrcode-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.qrcode-screenshot {
  margin-left: auto;
  flex-shrink: 0;
}
.qrcode-screenshot img {
  width: 200px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

@media (max-width: 900px) {
  .portal-inner { grid-template-columns: 1fr; }
  .phone-mockup-wrap { max-width: 220px; }
  .qrcode-banner { flex-direction: column; text-align: center; }
  .qrcode-screenshot { margin-left: 0; }
}
@media (max-width: 640px) {
  .qrcode-banner { padding: 24px 20px; }
  .qrcode-screenshot img { width: 160px; }
}
