/* ============================================
   Virtual Scout - Design System
   Redesign 2025
   DESIGN_VARIANCE: 8 | MOTION_INTENSITY: 6 | VISUAL_DENSITY: 3
   ============================================ */

/* ---- Tokens ---- */
:root {
	--c-brand: #7a36b3;
	--c-brand-dark: #5c2789;
	--c-brand-light: #9b5dd4;
	--c-dark: #0d0a1f;
	--c-dark-mid: #160e30;
	--c-dark-surface: #1e1540;
	--c-text-on-dark: #f0eaff;
	--c-text-muted-on-dark: rgba(240, 234, 255, 0.6);
	--c-text: #120d1e;
	--c-text-muted: #5e4d7a;
	--c-white: #ffffff;
	--c-surface: #faf8ff;
	--c-border: rgba(122, 54, 179, 0.15);

	--r-card: 16px;
	--r-btn: 8px;
	--r-input: 8px;

	--font: 'Outfit', system-ui, -apple-system, sans-serif;

	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--t-fast: 0.18s var(--ease-out);
	--t-base: 0.3s var(--ease-out);
	--t-slow: 0.6s var(--ease-out);

	--nav-h: 72px;
	--page-pad: clamp(1.5rem, 4vw, 3rem);
	--max-w: 1280px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	color: var(--c-text);
	background: var(--c-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
}
a {
	text-decoration: none;
	color: inherit;
}

/* ============================================
   TOAST "EM BREVE"
   ============================================ */
.em-breve-toast {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 9000;
	display: flex;
	align-items: center;
	gap: 1rem;
	background: #1a1040;
	border: 1px solid rgba(122, 54, 179, 0.35);
	border-radius: 14px;
	padding: 1rem 1rem 1rem 1.125rem;
	min-width: 280px;
	max-width: 340px;
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(122, 54, 179, 0.08);
	transform: translateY(calc(100% + 3rem));
	opacity: 0;
	transition:
		transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.3s ease;
	pointer-events: none;
}

.em-breve-toast.show {
	transform: translateY(0);
	opacity: 1;
	pointer-events: all;
}

.toast-icon-wrap {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(122, 54, 179, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.125rem;
	color: var(--c-brand-light);
}

.toast-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.toast-title {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #f0eaff;
	line-height: 1.3;
}

.toast-desc {
	font-size: 0.8125rem;
	color: rgba(240, 234, 255, 0.58);
	line-height: 1.4;
}

.toast-close {
	background: none;
	border: none;
	color: rgba(240, 234, 255, 0.4);
	cursor: pointer;
	padding: 4px;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	flex-shrink: 0;
	transition:
		color var(--t-fast),
		background var(--t-fast);
}

.toast-close:hover {
	color: #f0eaff;
	background: rgba(255, 255, 255, 0.08);
}

.toast-close:focus-visible {
	outline: 2px solid var(--c-brand-light);
	outline-offset: 2px;
}

/* Barra de progresso do auto-dismiss */
.em-breve-toast::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 100%;
	background: var(--c-brand);
	border-radius: 0 0 14px 14px;
	transform-origin: left;
	transform: scaleX(0);
	opacity: 0;
}

.em-breve-toast.show::after {
	animation: toast-progress 3s linear forwards;
	opacity: 1;
}

@keyframes toast-progress {
	from {
		transform: scaleX(1);
	}
	to {
		transform: scaleX(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.em-breve-toast {
		transition: none;
	}
	.em-breve-toast.show::after {
		animation: none;
		opacity: 0;
	}
}

@media screen and (max-width: 480px) {
	.em-breve-toast {
		bottom: 1rem;
		right: 1rem;
		left: 1rem;
		max-width: none;
		min-width: 0;
	}
}

/* ---- Utilitarios ---- */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.section-title {
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: var(--c-text);
}

.section-title .title-normal {
	font-weight: 400;
}
.section-title .title-bold {
	font-weight: 800;
}
.section-title.light {
	color: var(--c-text-on-dark);
}

/* ---- Scroll Reveals ---- */
.reveal-up,
.reveal-right {
	opacity: 0;
	transition:
		opacity 0.7s var(--ease-out),
		transform 0.7s var(--ease-out);
	transition-delay: var(--delay, 0s);
}

.reveal-up {
	transform: translateY(28px);
}
.reveal-right {
	transform: translateX(36px);
}

.reveal-up.visible,
.reveal-right.visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-up,
	.reveal-right {
		transition: none;
		opacity: 1;
		transform: none;
	}
}

/* ============================================
   NAVEGACAO
   ============================================ */
#nav-sentinel {
	position: absolute;
	top: calc(var(--nav-h) + 10px);
	left: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

.nav-fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--nav-h);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 var(--page-pad);
	background: transparent;
	transition:
		background var(--t-base),
		box-shadow var(--t-base);
}

.nav-fixed.scrolled {
	background: rgba(13, 10, 31, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-logo img {
	width: 72px;
}

.nav-list {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.nav-link {
	color: var(--c-text-on-dark);
	font-size: 0.9375rem;
	font-weight: 500;
	opacity: 0.8;
	transition: opacity var(--t-fast);
	position: relative;
	padding-bottom: 2px;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: var(--c-brand-light);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--t-fast);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
	opacity: 1;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
	transform: scaleX(1);
}

.nav-link:focus-visible {
	outline: 2px solid var(--c-brand-light);
	outline-offset: 4px;
	border-radius: 2px;
}

/* Hamburger */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 1100;
}

.toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--c-text-on-dark);
	border-radius: 2px;
	transition:
		transform var(--t-base),
		opacity var(--t-fast);
}

.menu-toggle[aria-expanded='true'] .toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded='true'] .toggle-bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.menu-toggle[aria-expanded='true'] .toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO (#opening)
   ============================================ */
#opening {
	min-height: 100dvh;
	background-color: var(--c-dark);
	background-image: url('./src/vitral.png');
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	padding-top: var(--nav-h);
	position: relative;
	overflow: hidden;
}

#opening::after {
	content: '';
	position: absolute;
	inset: 12% auto auto 50%;
	width: min(42rem, 70vw);
	aspect-ratio: 1;
	border: 1px solid rgba(240, 234, 255, 0.08);
	border-radius: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 0;
}

#opening::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(13, 10, 31, 0.92) 0%,
		rgba(22, 14, 48, 0.75) 50%,
		rgba(122, 54, 179, 0.3) 100%
	);
	z-index: 0;
}

.hero-inner {
	position: relative;
	z-index: 1;
	flex: 1;
	width: 100%;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: clamp(2.5rem, 6vw, 4rem) var(--page-pad);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	animation: hero-enter-left 0.9s var(--ease-out) both;
}

.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	animation: hero-enter-right 0.9s var(--ease-out) 0.15s both;
}


@keyframes hero-enter-left {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes hero-enter-right {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-content,
	.hero-visual {
		animation: none;
	}
}

/* Eyebrow - max 1 a cada 3 secoes; esta e a unica no hero */
.eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--c-brand-light);
	padding: 0.35rem 0.9rem;
	border: 1px solid rgba(155, 93, 212, 0.4);
	border-radius: 99px;
	width: fit-content;
}

.hero-title {
	font-size: clamp(2.5rem, 5.5vw, 4.25rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--c-text-on-dark);
}

.hero-sub {
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	color: var(--c-text-muted-on-dark);
	max-width: 44ch;
	line-height: 1.7;
}

.hero-ctas {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
}

.btn-store {
	display: inline-flex;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	border-radius: var(--r-btn);
	overflow: hidden;
	transition:
		transform var(--t-fast),
		filter var(--t-fast);
}

.btn-store img {
	height: 48px;
	width: auto;
}

.btn-store:hover {
	transform: translateY(-3px);
	filter: brightness(1.08);
}

.btn-store:active {
	transform: translateY(0) scale(0.97);
}

.btn-store:focus-visible {
	outline: 2px solid var(--c-brand-light);
	outline-offset: 3px;
}

.hero-phone {
	width: clamp(280px, 38vw, 520px);
	filter: drop-shadow(0 40px 80px rgba(122, 54, 179, 0.55));
	animation: phone-float 4.5s ease-in-out infinite;
}

@keyframes phone-float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-14px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-phone {
		animation: none;
	}
}

/* ============================================
   FAIXA DE DIFERENCIAIS
   ============================================ */
.feature-strip {
	position: relative;
	z-index: 1;
	background: var(--c-brand);
	padding: 1.125rem var(--page-pad);
}

.feature-strip-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.75rem;
	flex-wrap: wrap;
}

.feature-item {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	white-space: nowrap;
}

.feature-sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	flex-shrink: 0;
}

/* ============================================
   SOBRE NOS (#sobre_nos)
   ============================================ */
#sobre_nos {
	background: var(--c-white);
	padding: clamp(5rem, 10vw, 8rem) var(--page-pad);
}

.sobre-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: clamp(3rem, 6vw, 6rem);
	align-items: center;
}

.sobre-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.sobre-text {
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #3d2d5c;
	max-width: 64ch;
}

.sobre-visual {
	position: relative;
}

.sobre-image-wrap {
	border-radius: var(--r-card);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	position: relative;
}

.sobre-image-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(122, 54, 179, 0.18), transparent 60%);
	pointer-events: none;
}

.sobre-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ============================================
   EQUIPE VIRTUAL (#equipe_virtual)
   ============================================ */
#equipe_virtual {
	background: var(--c-dark-mid);
	background-image: url('./src/bg_equipe_virtual.png');
	background-blend-mode: luminosity;
	background-position: right center;
	background-repeat: no-repeat;
	padding: clamp(5rem, 10vw, 8rem) 0 clamp(5rem, 10vw, 8rem) var(--page-pad);
	overflow: hidden;
}

.equipe-inner {
	max-width: var(--max-w);
	margin: 0 auto;
}

#equipe_virtual .section-title {
	margin-bottom: 3rem;
	padding-right: var(--page-pad);
}

.equipe-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	padding-right: var(--page-pad);
}

.card_equipe {
	background: var(--c-white);
	border-radius: var(--r-card);
	overflow: hidden;
	transition:
		transform var(--t-base),
		box-shadow var(--t-base);
	cursor: default;
	position: relative;
}

.card_equipe:hover {
	transform: translateY(-8px);
	box-shadow: 0 32px 56px rgba(0, 0, 0, 0.5);
}

.card-img-wrap {
	position: relative;
	overflow: hidden;
}

.card-img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(13, 10, 31, 0.72) 0%, transparent 50%);
	pointer-events: none;
}

.card_equipe img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform var(--t-slow);
}

.card_equipe:hover img {
	transform: scale(1.04);
}

.card-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.card-role {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-brand-light);
}

.card-info h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--c-white);
	line-height: 1.2;
}

/* ============================================
   PARCEIROS - CABECALHO (#parceiros)
   ============================================ */
.parceiros-hero {
	background-color: var(--c-dark);
	background-image: url('./src/bg_parceiros.png');
	background-size: cover;
	background-position: center;
	padding: clamp(5rem, 10vw, 8rem) var(--page-pad);
	position: relative;
}

.parceiros-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(13, 10, 31, 0.75);
}

.parceiros-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.parceiros-sub {
	font-size: clamp(1.0625rem, 2.2vw, 1.375rem);
	color: rgba(240, 234, 255, 0.8);
	font-weight: 500;
}

.parceiros-desc {
	font-size: 1.0625rem;
	color: var(--c-text-muted-on-dark);
	line-height: 1.75;
	max-width: 62ch;
	margin: 0 auto;
}

/* ============================================
   PARCEIROS - GRID
   ============================================ */
.parceiros-grid-section {
	background: var(--c-surface);
	padding: clamp(3rem, 6vw, 5rem) var(--page-pad);
}

.grid_parceiros {
	max-width: var(--max-w);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.item_parceiro {
	border-radius: var(--r-card);
	overflow: hidden;
	position: relative;
	aspect-ratio: 1;
	background: var(--c-white);
	box-shadow: 0 2px 12px var(--c-border);
	cursor: pointer;
	transition:
		transform var(--t-base),
		box-shadow var(--t-base);
}

.item_parceiro:hover,
.item_parceiro:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 16px 32px rgba(122, 54, 179, 0.22);
}

.item_parceiro:focus-visible {
	outline: 3px solid var(--c-brand);
	outline-offset: 3px;
}

.item_parceiro img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--t-slow);
}

.item_parceiro:hover img,
.item_parceiro:focus-within img {
	transform: scale(1.06);
}

.overlay {
	position: absolute;
	inset: 0;
	background: rgba(90, 30, 140, 0.88);
	opacity: 0;
	transition: opacity var(--t-base);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.item_parceiro:hover .overlay,
.item_parceiro:focus-within .overlay {
	opacity: 1;
}

.overlay-text {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.overlay-title {
	color: var(--c-white);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
}

.overlay-desc {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.875rem;
	line-height: 1.5;
}

/* ============================================
   CONTATO (#contato)
   ============================================ */
#contato {
	background: var(--c-white);
	padding: clamp(5rem, 10vw, 8rem) var(--page-pad);
}

.contato-inner {
	max-width: 720px;
	margin: 0 auto;
}

.contato-header {
	margin-bottom: 2.75rem;
}

.form-contato {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-group label {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--c-text);
}

.required-mark {
	color: var(--c-brand);
	margin-left: 2px;
}

.form-group input,
.form-group textarea {
	font-family: var(--font);
	font-size: 1rem;
	color: var(--c-text);
	background: var(--c-surface);
	border: 1.5px solid rgba(122, 54, 179, 0.2);
	border-radius: var(--r-input);
	padding: 0.75rem 1rem;
	transition:
		border-color var(--t-fast),
		box-shadow var(--t-fast);
	outline: none;
	width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--c-text-muted);
	opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: var(--c-brand);
	box-shadow: 0 0 0 3px rgba(122, 54, 179, 0.14);
	background: var(--c-white);
}

.form-group textarea {
	resize: vertical;
	min-height: 140px;
	line-height: 1.6;
}

.form-footer {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	padding-top: 0.5rem;
}

/* Botao submit */
.btn-primary {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--c-brand);
	color: var(--c-white);
	font-family: var(--font);
	font-size: 1rem;
	font-weight: 700;
	border: none;
	border-radius: var(--r-btn);
	padding: 0.875rem 2.25rem;
	cursor: pointer;
	transition:
		background var(--t-fast),
		transform var(--t-fast),
		box-shadow var(--t-fast);
	min-width: 180px;
	white-space: nowrap;
	overflow: hidden;
}

.btn-primary:hover {
	background: var(--c-brand-dark);
	box-shadow: 0 6px 20px rgba(122, 54, 179, 0.4);
}

.btn-primary:active {
	transform: scale(0.97) translateY(1px);
}

.btn-primary:focus-visible {
	outline: 3px solid var(--c-brand-light);
	outline-offset: 3px;
}

.btn-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.btn-text {
	transition: opacity var(--t-fast);
}
.btn-loading {
	position: absolute;
	opacity: 0;
	transition: opacity var(--t-fast);
}

.btn-primary.loading .btn-text {
	opacity: 0;
}
.btn-primary.loading .btn-loading {
	opacity: 1;
}

.form-status {
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
}

.form-status.success {
	color: #16a34a;
}
.form-status.error {
	color: #dc2626;
}

.field-error {
	margin: 0.25rem 0 0;
	font-size: 0.8125rem;
	color: #dc2626;
	min-height: 1.2em;
}

.form-group input.invalid,
.form-group textarea.invalid {
	border-color: #dc2626;
	outline-color: #dc2626;
}

/* ============================================
   FOOTER (#footer)
   ============================================ */
#footer {
	background: var(--c-dark);
	color: var(--c-text-on-dark);
}

.footer-inner {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: clamp(3rem, 6vw, 5rem) var(--page-pad);
}

.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.footer-tagline {
	font-size: 0.9375rem;
	color: var(--c-text-muted-on-dark);
	line-height: 1.45;
}

.footer-nav ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0.25rem 0.125rem;
	align-items: center;
}

.footer-nav li + li::before {
	content: '·';
	color: rgba(240, 234, 255, 0.2);
	padding: 0 0.625rem;
	pointer-events: none;
}

.footer-nav a {
	font-size: 0.9rem;
	color: rgba(240, 234, 255, 0.6);
	transition: color var(--t-fast);
	white-space: nowrap;
}

.footer-nav a:hover {
	color: var(--c-text-on-dark);
}
.footer-nav a:focus-visible {
	outline: 2px solid var(--c-brand-light);
	outline-offset: 3px;
	border-radius: 2px;
}

.footer-social {
	display: flex;
	gap: 0.625rem;
	align-items: center;
	flex-shrink: 0;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition:
		background var(--t-fast),
		transform var(--t-fast);
}

.footer-social a:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.footer-social a:focus-visible {
	outline: 2px solid var(--c-brand-light);
	outline-offset: 3px;
}

.footer-social img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.footer-bottom {
	padding-top: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.footer-copy {
	font-size: 0.8125rem;
	color: rgba(240, 234, 255, 0.35);
}

.footer-tagline-bottom {
	font-size: 0.8125rem;
	font-weight: 600;
	color: rgba(240, 234, 255, 0.35);
	letter-spacing: 0.04em;
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

/* Tablet */
@media screen and (max-width: 1024px) {
	.grid_parceiros {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.equipe-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-nav ul {
		gap: 0.25rem 0;
	}
}

/* Mobile */
@media screen and (max-width: 768px) {
	/* Nav mobile */
	.menu-toggle {
		display: flex;
	}

	.nav-menu {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(280px, 80vw);
		background: rgba(22, 14, 48, 0.97);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
		flex-direction: column;
		box-shadow: -4px 0 32px rgba(0, 0, 0, 0.5);
		z-index: 999;
		transform: translateX(100%);
		transition: transform var(--t-base);
		border-left: 1px solid rgba(255, 255, 255, 0.07);
	}

	.nav-menu.show {
		display: flex;
		transform: translateX(0);
	}

	.nav-list {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.75rem;
	}

	.nav-link {
		font-size: 1.125rem;
	}

	/* Hero */
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding-top: 2.5rem;
		gap: 2rem;
	}

	.hero-content {
		align-items: center;
		order: 2;
	}

	.hero-visual {
		order: 1;
	}

	.hero-sub {
		max-width: 100%;
	}

	.hero-phone {
		width: clamp(200px, 55vw, 280px);
	}

	.hero-ctas {
		justify-content: center;
	}

	/* Feature strip */
	.feature-sep {
		display: none;
	}

	/* Sobre nos */
	.sobre-inner {
		grid-template-columns: 1fr;
	}

	.sobre-visual {
		display: none;
	}

	/* Equipe */
	.equipe-grid {
		grid-template-columns: 1fr;
		padding-right: var(--page-pad);
	}

	.card_equipe img {
		height: 350px;
	}

	/* Parceiros */
	.grid_parceiros {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Form */
	.form-row {
		grid-template-columns: 1fr;
	}

	.btn-primary {
		width: 100%;
	}

	/* Footer */
	.footer-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.footer-nav ul {
		flex-direction: column;
		gap: 0.75rem;
	}

	.footer-nav li + li::before {
		display: none;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.25rem;
	}
}

/* Pequeno mobile */
@media screen and (max-width: 480px) {
	.hero-phone {
		width: clamp(180px, 58vw, 240px);
	}

	.grid_parceiros {
		gap: 0.75rem;
	}
}
