:root {
	--black: #0a0a0a;
	--black-mid: #111111;
	--black-soft: #1a1a1a;
	--black-card: #141414;
	--red: #c8102e;
	--red-dark: #a00d24;
	--red-glow: rgba(200, 16, 46, 0.18);
	--white: #ffffff;
	--off-white: #f4f4f4;
	--gray-100: #e8e8e8;
	--gray-300: #aaaaaa;
	--gray-500: #666666;
	--gray-700: #333333;
	--border: rgba(255, 255, 255, 0.08);
	--border-red: rgba(200, 16, 46, 0.3);
	--shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
	--shadow-red: 0 8px 32px rgba(200, 16, 46, 0.25);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--black);
	color: var(--white);
	overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
	width: 4px;
}

::-webkit-scrollbar-track {
	background: var(--black);
}

::-webkit-scrollbar-thumb {
	background: var(--red);
	border-radius: 2px;
}

/* ─── NAV ─── */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
	padding: 1.1rem 6%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(10, 10, 10, 0.94);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--border);
	transition: all 0.3s;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	text-decoration: none;
}

.logo-icon {
	width: 120px;
	height: 40px;
	/* border: 1.5px solid var(--white);
      border-radius: 4px; */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* T glyph em SVG inline */
.logo-text-wrap {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.logo-name {
	font-family: 'Inter', sans-serif;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--white);
}

.logo-name span {
	color: var(--red);
}

.logo-sub {
	font-size: 0.6rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gray-300);
	margin-top: 0.15rem;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	font-size: 0.78rem;
	font-weight: 500;
	color: var(--gray-300);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: var(--white);
}

.nav-cta {
	background: var(--red) !important;
	color: var(--white) !important;
	padding: 0.55rem 1.4rem;
	border-radius: 2px;
	transition: background 0.2s !important;
}

.nav-cta:hover {
	background: var(--red-dark) !important;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.nav-toggle span {
	width: 24px;
	height: 1.5px;
	background: var(--white);
	transition: all 0.3s;
}

/* ─── HERO ─── */
#hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding-top: 72px;
	position: relative;
	overflow: hidden;
}

/* grain texture overlay */
#hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
	pointer-events: none;
}

.hero-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 7% 5% 7% 7%;
	position: relative;
	z-index: 2;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border: 1px solid var(--border-red);
	background: var(--red-glow);
	color: var(--red);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.4rem 1rem;
	border-radius: 2px;
	margin-bottom: 2rem;
	width: fit-content;
}

.hero-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--red);
	border-radius: 50%;
}

h1 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.6rem, 4.2vw, 4rem);
	font-weight: 400;
	line-height: 1.1;
	color: var(--white);
	margin-bottom: 1.6rem;
	letter-spacing: -0.01em;
}

h1 em {
	font-style: italic;
	color: var(--red);
}

.hero-sub {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--gray-300);
	margin-bottom: 2.8rem;
	max-width: 460px;
	font-weight: 300;
}

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

.btn-primary {
	background: var(--red);
	color: white;
	border: none;
	padding: 0.95rem 2rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.25s;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border-radius: 2px;
	box-shadow: var(--shadow-red);
}

.btn-primary:hover {
	background: var(--red-dark);
	transform: translateY(-2px);
	box-shadow: 0 12px 36px rgba(200, 16, 46, 0.35);
}

.btn-outline {
	background: transparent;
	color: var(--white);
	border: 1px solid var(--border);
	padding: 0.9rem 1.8rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.25s;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	border-radius: 2px;
}

.btn-outline:hover {
	border-color: var(--red);
	color: var(--red);
}

.hero-stats {
	margin-top: 3.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	display: flex;
	gap: 2.8rem;
}

.stat-num {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}

.stat-num span {
	color: var(--red);
}

.stat-label {
	font-size: 0.7rem;
	color: var(--gray-500);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-top: 0.3rem;
}

.hero-right {
	position: relative;
	overflow: hidden;
}

.hero-img-wrap {
	width: 100%;
	height: 100%;
	position: relative;
}

.hero-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.6) contrast(1.1);
}

.hero-img-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0) 30%),
		linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
}

/* red accent line */
.hero-right::after {
	content: '';
	position: absolute;
	left: 0;
	top: 20%;
	bottom: 20%;
	width: 2px;
	background: var(--red);
	box-shadow: 0 0 20px var(--red);
}

.hero-card {
	position: absolute;
	bottom: 2.5rem;
	left: 2rem;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(12px);
	padding: 1.2rem 1.6rem;
	border-radius: 4px;
	border: 1px solid var(--border);
	border-left: 2px solid var(--red);
	max-width: 220px;
}

.hero-card-label {
	font-size: 0.65rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gray-500);
	margin-bottom: 0.3rem;
}

.hero-card-val {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--white);
}

/* ─── SECTIONS SHARED ─── */
section {
	padding: 6rem 7%;
}

.section-tag {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--red);
	margin-bottom: 1rem;
}

.section-tag::before {
	content: '— ';
}

h2 {
	font-family: 'Playfair Display', serif;
	font-size: clamp(1.9rem, 3.2vw, 2.9rem);
	font-weight: 400;
	line-height: 1.18;
	color: var(--white);
	letter-spacing: -0.01em;
}

h2 em {
	font-style: italic;
	color: var(--red);
}

/* ─── SOBRE ─── */
#sobre {
	background: var(--black-soft);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
	padding: 6rem 7%;
}

.sobre-text {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--gray-300);
	margin: 1.5rem 0 2rem;
	font-weight: 300;
}

.sobre-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.sobre-feature {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: var(--gray-100);
	font-size: 0.88rem;
}

.sobre-feature-icon {
	width: 34px;
	height: 34px;
	flex-shrink: 0;
	background: var(--red-glow);
	border: 1px solid var(--border-red);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--red);
	font-size: 0.75rem;
	font-weight: 700;
}

.sobre-img-wrap {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	aspect-ratio: 4/5;
}

.sobre-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.75) contrast(1.1);
}

.sobre-img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(10, 10, 10, 0.7) 0%,
		transparent 50%
	);
}

.sobre-img-badge {
	position: absolute;
	bottom: 1.5rem;
	right: -1.5rem;
	z-index: 2;
	background: var(--red);
	color: white;
	padding: 1.2rem 1.6rem;
	border-radius: 4px;
	text-align: center;
	box-shadow: var(--shadow-red);
}

.sobre-img-badge .num {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	font-weight: 700;
	display: block;
	line-height: 1;
}

.sobre-img-badge .lbl {
	font-size: 0.65rem;
	letter-spacing: 0.06em;
	opacity: 0.9;
}

/* ─── SERVIÇOS ─── */
#servicos {
	background: var(--black);
}

.servicos-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.servicos-header p {
	color: var(--gray-500);
	max-width: 500px;
	margin: 1rem auto 0;
	line-height: 1.7;
	font-weight: 300;
	font-size: 0.95rem;
}

.servicos-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: 4px;
	overflow: hidden;
}

.servico-card {
	background: var(--black-card);
	padding: 2.4rem 2rem;
	transition: background 0.3s;
	position: relative;
	overflow: hidden;
}

.servico-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--red);
	transform: scaleX(0);
	transition: transform 0.35s;
	transform-origin: left;
}

.servico-card:hover {
	background: var(--black-soft);
}

.servico-card:hover::after {
	transform: scaleX(1);
}

.servico-num {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: rgba(200, 16, 47, 0.5);
	line-height: 1;
	margin-bottom: 0.8rem;
	transition: color 0.3s;
}

.servico-card:hover .servico-num {
	color: rgba(200, 16, 46, 0.25);
}

.servico-card h3 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 0.7rem;
	letter-spacing: 0.02em;
}

.servico-card p {
	font-size: 0.84rem;
	color: var(--gray-500);
	line-height: 1.65;
	font-weight: 300;
}

.servico-tag {
	display: inline-block;
	margin-top: 1.2rem;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--red);
	border-bottom: 1px solid var(--red);
	padding-bottom: 0.15rem;
}

/* ─── PORTFÓLIO ─── */
#portfolio {
	background: var(--black-soft);
	padding: 6rem 7%;
}

.portfolio-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 2.5rem;
	flex-wrap: wrap;
	gap: 1rem;
}

.portfolio-header a {
	color: var(--red);
	font-size: 0.8rem;
	font-weight: 500;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: opacity 0.2s;
}

.portfolio-header a:hover {
	opacity: 0.7;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--border);
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 4/3;
	background: var(--black-card);
}

.portfolio-item:first-child {
	grid-column: span 2;
	aspect-ratio: 16/9;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	filter: brightness(0.7) contrast(1.05);
}

.portfolio-item:hover img {
	transform: scale(1.06);
	filter: brightness(0.5) contrast(1.1);
}

.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(10, 10, 10, 0.9) 0%,
		rgba(10, 10, 10, 0.2) 60%,
		transparent 100%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-overlay h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
	margin-bottom: 0.3rem;
}

.portfolio-overlay span {
	font-size: 0.72rem;
	color: var(--red);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.portfolio-overlay-always {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(10, 10, 10, 0.7) 0%,
		transparent 50%
	);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
}

.portfolio-overlay-always h4 {
	font-family: 'Playfair Display', serif;
	font-size: 1rem;
	color: white;
	margin-bottom: 0.2rem;
}

.portfolio-overlay-always span {
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.06em;
}

.portfolio-zoom {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 34px;
	height: 34px;
	background: var(--red);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s;
	color: white;
	font-size: 0.85rem;
}

.portfolio-item:hover .portfolio-zoom {
	opacity: 1;
}

/* Lightbox */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.97);
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 1rem;
}

.lightbox.active {
	display: flex;
}

.lightbox-img {
	max-width: 88vw;
	max-height: 80vh;
	border-radius: 2px;
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: 1.5rem;
	right: 2rem;
	color: white;
	font-size: 2.2rem;
	cursor: pointer;
	line-height: 1;
	background: none;
	border: none;
	font-family: sans-serif;
	opacity: 0.6;
	transition: opacity 0.2s;
}

.lightbox-close:hover {
	opacity: 1;
	color: var(--red);
}

.lightbox-caption {
	color: var(--gray-300);
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	text-align: center;
}

/* ─── PROCESSO ─── */
#processo {
	background: var(--black);
}

.processo-header {
	text-align: center;
	margin-bottom: 4rem;
}

.processo-header p {
	color: var(--gray-500);
	max-width: 480px;
	margin: 1rem auto 0;
	font-weight: 300;
	line-height: 1.7;
	font-size: 0.95rem;
}

.processo-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	position: relative;
}

.processo-steps::before {
	content: '';
	position: absolute;
	top: 27px;
	left: 12.5%;
	right: 12.5%;
	height: 1px;
	background: linear-gradient(to right, var(--red), var(--red-dark));
	z-index: 0;
	opacity: 0.4;
}

.processo-step {
	text-align: center;
	padding: 0 1.5rem;
	position: relative;
	z-index: 1;
}

.step-num {
	width: 54px;
	height: 54px;
	background: var(--red);
	color: white;
	border-radius: 50%;
	font-family: 'Playfair Display', serif;
	font-size: 1.3rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	box-shadow: var(--shadow-red);
}

.processo-step h3 {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 0.6rem;
	letter-spacing: 0.02em;
}

.processo-step p {
	font-size: 0.82rem;
	color: var(--gray-500);
	line-height: 1.65;
	font-weight: 300;
}

/* ─── DEPOIMENTOS ─── */
#depoimentos {
	background: var(--black-soft);
	padding: 6rem 7%;
}

.depo-header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.depo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.depo-card {
	background: var(--black-card);
	border: 1px solid var(--border);
	border-radius: 4px;
	padding: 2.2rem;
	transition:
		border-color 0.3s,
		transform 0.3s;
	position: relative;
	overflow: hidden;
}

.depo-card::before {
	content: '"';
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	font-family: 'Playfair Display', serif;
	font-size: 5rem;
	color: rgba(200, 16, 46, 0.08);
	line-height: 1;
	font-weight: 700;
}

.depo-card:hover {
	border-color: var(--border-red);
	transform: translateY(-4px);
}

.depo-stars {
	color: var(--red);
	font-size: 0.9rem;
	margin-bottom: 1.2rem;
	letter-spacing: 0.12em;
}

.depo-text {
	font-family: 'Playfair Display', serif;
	font-size: 1.05rem;
	font-style: italic;
	font-weight: 400;
	color: var(--gray-100);
	line-height: 1.75;
	margin-bottom: 1.8rem;
}

.depo-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 1.2rem;
	border-top: 1px solid var(--border);
}

.depo-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--red);
}

.depo-name {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--white);
}

.depo-role {
	font-size: 0.73rem;
	color: var(--gray-500);
	margin-top: 0.15rem;
}

/* ─── CONTATO ─── */
#contato {
	/* background: var(--black); */
	background: var(--black-soft);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
	padding: 6rem 7%;
}

.contato-info h2 {
	margin-bottom: 1.2rem;
}

.contato-info p {
	color: var(--gray-500);
	line-height: 1.8;
	font-weight: 300;
	margin-bottom: 2.5rem;
	font-size: 0.95rem;
}

.contato-channels {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.contato-channel {
	display: flex;
	align-items: center;
	gap: 1rem;
	text-decoration: none;
	color: var(--gray-100);
	font-size: 0.88rem;
	transition: color 0.2s;
}

.contato-channel:hover {
	color: var(--red);
}

.ch-icon {
	width: 40px;
	height: 40px;
	background: var(--red-glow);
	border: 1px solid var(--border-red);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	flex-shrink: 0;
	transition: background 0.2s;
}

.contato-channel:hover .ch-icon {
	background: var(--red);
	border-color: var(--red);
}

.ch-label {
	font-size: 0.65rem;
	color: var(--gray-500);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.15rem;
}

.ch-val {
	font-weight: 500;
}

.contato-form {
	background: var(--black-soft);
	padding: 2.6rem;
	border-radius: 4px;
	border: 1px solid var(--border);
}

.form-title {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 0.4rem;
}

.form-sub {
	font-size: 0.82rem;
	color: var(--gray-500);
	margin-bottom: 2rem;
}

.form-group {
	margin-bottom: 1.3rem;
}

.form-group label {
	display: block;
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gray-500);
	margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--border);
	border-radius: 2px;
	font-family: 'Inter', sans-serif;
	font-size: 0.88rem;
	color: var(--white);
	/* background: var(--black); */
	background: var(--black-soft);
	transition: border-color 0.2s;
	outline: none;
	resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--gray-700);
}

.form-group select option {
	/* background: var(--black); */
	background: var(--black-soft);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-color: var(--red);
}

.form-group textarea {
	min-height: 110px;
}

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

.form-submit {
	width: 100%;
	justify-content: center;
	font-size: 0.82rem;
	padding: 1.05rem 2rem;
	margin-top: 0.3rem;
}

/* ─── FOOTER ─── */
footer {
	background: var(--black-mid);
	color: var(--white);
	padding: 3.5rem 7% 1.8rem;
	border-top: 1px solid var(--border);
}

.footer-top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--border);
	margin-bottom: 1.8rem;
}

.footer-brand p {
	font-size: 0.82rem;
	color: var(--gray-500);
	line-height: 1.7;
	font-weight: 300;
	margin-top: 1rem;
}

.footer-social {
	display: flex;
	gap: 0.7rem;
	margin-top: 1.4rem;
}

.footer-social a {
	width: 34px;
	height: 34px;
	border: 1px solid var(--border);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray-500);
	text-decoration: none;
	font-size: 0.85rem;
	transition: all 0.2s;
}

.footer-social a:hover {
	border-color: var(--red);
	color: var(--red);
}

.footer-col h4 {
	font-size: 0.68rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--red);
	margin-bottom: 1.2rem;
}

.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.footer-col ul li a {
	font-size: 0.82rem;
	color: var(--gray-500);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-col ul li a:hover {
	color: var(--white);
}

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

.footer-bottom p {
	font-size: 0.72rem;
	color: var(--gray-700);
}

.footer-bottom a {
	color: var(--gray-700);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-bottom a:hover {
	color: var(--red);
}

/* ─── WHATSAPP FLOAT ─── */
.wpp-float {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 998;
	width: 56px;
	height: 56px;
	background: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
	text-decoration: none;
	animation: pulse-green 2.5s infinite;
	transition: transform 0.2s;
}

.wpp-float:hover {
	transform: scale(1.1);
}

.wpp-float svg {
	width: 26px;
	height: 26px;
	fill: white;
}

@keyframes pulse-green {
	0%,
	100% {
		box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
	}

	50% {
		box-shadow: 0 4px 32px rgba(37, 211, 102, 0.55);
	}
}

/* ─── ANIMATIONS ─── */
.fade-in {
	opacity: 0;
	transform: translateY(22px);
	transition:
		opacity 0.7s ease,
		transform 0.7s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: none;
}

.d1 {
	transition-delay: 0.1s;
}

.d2 {
	transition-delay: 0.2s;
}

.d3 {
	transition-delay: 0.3s;
}

.d4 {
	transition-delay: 0.4s;
}

/* ─── DIVIDER ─── */
.divider {
	height: 1px;
	background: linear-gradient(to right, transparent, var(--red), transparent);
	opacity: 0.3;
	margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
	.servicos-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 900px) {
	#hero {
		grid-template-columns: 1fr;
	}

	.hero-right {
		height: 55vw;
	}

	.hero-right::after {
		display: none;
	}

	#sobre {
		grid-template-columns: 1fr;
	}

	.sobre-img-wrap {
		aspect-ratio: 16/9;
	}

	.sobre-img-badge {
		right: 1rem;
	}

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

	.portfolio-item:first-child {
		grid-column: span 2;
	}

	.processo-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}

	.processo-steps::before {
		display: none;
	}

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

	#contato {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 600px) {
	nav {
		padding: 1rem 5%;
	}

	.nav-links {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}

	section,
	#sobre,
	#contato {
		padding: 4rem 5%;
	}

	h1 {
		font-size: 2.1rem;
	}

	.hero-right {
		display: none;
	}

	.hero-left {
		padding: 2rem 5%;
	}

	.hero-stats {
		gap: 1.5rem;
		flex-wrap: wrap;
	}

	.servicos-grid {
		grid-template-columns: 1fr;
		border-radius: 4px;
	}

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

	.portfolio-item:first-child {
		grid-column: span 1;
		aspect-ratio: 4/3;
	}

	.processo-steps {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

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

	.footer-top {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

	.sobre-img-badge {
		position: relative;
		right: 0;
		margin-top: 1rem;
		display: inline-flex;
		align-items: center;
		gap: 0.7rem;
	}

	.sobre-img-badge .num {
		font-size: 1.5rem;
		display: inline;
	}
}

/* Ajustes do Carrossel */
.hero-right {
	position: relative;
	height: 100%;
}

.hero-carousel {
	position: relative;
	height: 100%;
	width: 100%;
}

.carousel-item {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.8s ease,
		visibility 0.8s;
	z-index: 1;
}

.carousel-item.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

/* Botões de Navegação */
.carousel-controls {
	position: absolute;
	bottom: 2.5rem;
	right: 2rem;
	z-index: 10;
	display: flex;
	gap: 0.5rem;
}

.carousel-controls button {
	background: white;
	border: 1px solid var(--border);
	color: var(--dark);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	border-radius: 2px;
}

.carousel-controls button:hover {
	background: var(--gold);
	color: white;
	border-color: var(--gold);
}

/* Garante que o card acompanhe a imagem no mobile se necessário */
@media (max-width: 1024px) {
	.hero-right {
		height: 600px;
		/* Altura fixa para o carrossel no tablet/mobile */
	}
}
