/* ===================================================== */
/* HEADER BASE */
/* ===================================================== */

#site-header {
	position: relative;
	z-index: 3001;
}

/* ===================================================== */
/* FONTES */
/* ===================================================== */

@font-face {
	font-family: 'ArialRounded';
	src: url('../fonts/arial-rounded-bold.woff2') format('woff2'),
	     url('../fonts/arial-rounded-bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* ===================================================== */
/* NAVBAR FIXA NO TOPO, SIMPLES, CENTRALIZADA */
/* ===================================================== */

#mainNavbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
	border-radius: 0;
	transform: none;
	padding-inline: 0;
	z-index: 3001;
}

/* Conteúdo centralizado como no flutuante */
#mainNavbar > .container-fluid {
	max-width: 1200px;
	width: calc(100% - 40px);
	margin: 0 auto;
	padding-inline: 0;
}

/* Tipografia do menu */
#mainNavbar .nav-link {
	font-family: 'ArialRounded', Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #111;
	padding-top: 8px;
	padding-bottom: 8px;
}

/* ===================================================== */
/* MENU SANDUÍCHE PRETO */
/* ===================================================== */

#mainNavbar .navbar-toggler-icon {
	filter: brightness(0);
}

#mainNavbar .navbar-toggler {
	border-color: #000;
}

/* ===================================================== */
/* AFINAR ALTURA DA NAVBAR */
/* ===================================================== */

#mainNavbar .logo-img {
	max-height: 75px;
	max-width: 320px;
	height: auto;
	width: auto;
}

#mainNavbar .navbar-brand {
	padding-top: 0;
	padding-bottom: 0;
	margin: 0;
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
}

/* ===================================================== */
/* COMPENSAÇÃO DO CONTEÚDO (pra não ficar embaixo da navbar) */
/* ===================================================== */
/* Ajuste fino se precisar: 90px, 96px, 104px... depende da altura final */
:root {
	--navbar-height: 80px;
}

.hero {
	padding-top: var(--navbar-height);
}

.page-content {
	padding-top: calc(var(--navbar-height) + 48px) !important;
}

/* ============================= */
/* DROPDOWN FERMAWI - ALINHADO AO MENU */
/* ============================= */

#mainNavbar .dropdown-menu {
	border: none;
	border-radius: 12px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
	padding: 10px 0;
	min-width: 260px;
	margin-top: 12px;

	/* visual limpo e consistente */
	background-color: #fff;
}

#mainNavbar .dropdown-item {
	font-family: 'ArialRounded', Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.4px;
	color: #111;

	padding: 12px 18px;
	transition: all 0.2s ease;
	border-radius: 10px;
	margin: 2px 8px;
}

#mainNavbar .dropdown-item:hover,
#mainNavbar .dropdown-item:focus {
	background-color: #f2f3f7;
	color: #111;
	transform: translateX(2px);
	outline: none;
}

/* item ativo (quando você estiver na página correspondente) */
#mainNavbar .dropdown-item.active,
#mainNavbar .dropdown-item:active {
	background-color: #43429e;
	color: #fff;
}

/* seta do dropdown mais “fina” e alinhada */
#mainNavbar .dropdown-toggle::after {
	margin-left: 8px;
	vertical-align: 0.15em;
}

/* melhora a sensação do clique no mobile */
#mainNavbar .dropdown-menu {
	overflow: hidden;
}

/* ===================================================== */
/* SEÇÃO DE CONTEÚDO - FERMAWI */
/* ===================================================== */

.section-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 80px 20px;
	font-family: 'Inter', sans-serif;
}

.section-content h1 {
	font-weight: 700; /* forte */
	margin-bottom: 24px;
}

.section-content p {
	font-weight: 400; /* leve */
	text-align: justify;
	line-height: 1.6;
	margin-bottom: 18px;
}

/* ===================================================== */
/* SEÇÃO SOLUÇÕES */
/* ===================================================== */

.solucoes-wrapper {
	max-width: 900px;   /* igual .section-content */
	margin: 0 auto;
	padding: 80px 20px;
	font-family: 'Inter', sans-serif;
}

.solucoes-wrapper h1 {
	font-weight: 700;
	margin-bottom: 24px;
}

.solucoes {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	margin-top: 40px;
}

@media (min-width: 768px) {
	.solucoes {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Card com altura igual + empurrar botão para baixo */
.card-solucao {
	background: #f8f9fc;
	border-radius: 16px;
	padding: 36px;
	transition: transform 0.2s ease;

	display: flex;
	flex-direction: column;
	height: 100%;
}

.card-solucao:hover {
	transform: translateY(-4px);
}

/* ÍCONE GRANDE do topo (não pega o ícone do botão) */
.card-solucao > i {
	font-size: 40px;
	color: #43429e;
	margin-bottom: 18px;
}

.card-solucao h2 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 12px;
}

/* Texto */
.card-solucao p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #444;
	margin-bottom: 0; /* evita espaço extra antes da lista */
}

/* ============================= */
/* LISTA DE DESTAQUES (SEM TRAVESSÃO) */
/* ============================= */

.solucoes-lista {
	list-style: none;
	padding: 0;
	margin: 16px 0 0 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #444;
}

.solucoes-lista li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 6px;
}

.solucoes-lista li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	color: #43429e;
}

/* Botão no card: centralizado, fino e com ícone sempre visível */
.card-solucao .btn-fermawi {
	align-self: center;
	margin-top: auto; /* joga o botão para o rodapé do card */
	padding: 8px 14px;
	gap: 8px;
	font-size: 0.95rem;
	border-radius: 10px;
}

.card-solucao .btn-fermawi i {
	font-size: 1em;
	margin: 0;
	color: currentColor;
	display: inline-block;
	opacity: 1;
	visibility: visible;
	transform: none;
}

/* ===================================================== */
/* SEÇÃO SEGMENTOS - CARDS MINIMALISTAS */
/* ===================================================== */

.segmentos-wrapper {
	max-width: 900px;
	margin: 0 auto;
	padding: 80px 20px;
	font-family: 'Inter', sans-serif;
}

.segmentos-wrapper h1 {
	font-weight: 700;
	margin-bottom: 24px;
}

.segmentos-lead {
	font-weight: 400;
	line-height: 1.6;
	color: #444;
	margin: 18px 0 0 0;
}

.segmentos-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 32px;
}

@media (min-width: 768px) {
	.segmentos-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
}

/* Card minimalista */
.card-segmento {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.10);
	border-radius: 14px;
	padding: 18px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-segmento:hover {
	transform: translateY(-2px);
	border-color: rgba(0,0,0,0.16);
	box-shadow: 0 10px 22px rgba(0,0,0,0.06);
}

.card-segmento i {
	font-size: 18px;
	color: #43429e;
	flex: 0 0 auto;
	width: 22px;
	text-align: center;
}

.card-segmento h2 {
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	color: #111;
	line-height: 1.35;
}


/* ===================================================== */
/* SEÇÃO SERVIÇOS COM IMAGEM */
/* ===================================================== */

.servicos-wrapper h1 {
	font-weight: 700;
	margin-bottom: 24px;
}

.servicos-wrapper {
	max-width: 900px;
	margin: 0 auto;
	padding: 80px 20px;
	font-family: 'Inter', sans-serif;
}

.servicos {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
	margin-top: 40px;
}

.servico-item {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(0,0,0,0.06);
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease;
}

.servico-item:hover {
	transform: translateY(-4px);
}

/* imagem */
.servico-item img {
	width: 100%;
	aspect-ratio: 1 / 1;   /* mantém quadrado */
	object-fit: contain;   /* mostra 100% da imagem */
	background: #f2f3f7;   /* fundo neutro pra não ficar feio */
	padding: 12px;         /* respiro elegante */
	display: block;
}

/* conteúdo */
.servico-item h3 {
	font-size: 1.15rem;
	font-weight: 600;
	margin: 16px 18px 6px 18px;
}

.servico-item p {
	font-size: 0.92rem;
	line-height: 1.5;
	color: #555;
	margin: 0 18px 18px 18px;
	flex: 1;
}

/* ===================================================== */
/* SEÇÃO CTA – CHAMADA */
/* ===================================================== */

.cta-wrapper {
	padding: 100px 20px;
	background: linear-gradient(135deg, #43429e, #586b95);
	margin-top: 80px;
}

.cta-box {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	color: #fff;
	font-family: 'Inter', sans-serif;
}

.cta-box h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 18px;
}

.cta-box p {
	font-size: 1.05rem;
	line-height: 1.6;
	opacity: 0.95;
	margin-bottom: 28px;
}

/* botão branco sobre fundo roxo */
.cta-box .btn-fermawi {
	background: #ffffff;
	color: #43429e;
	font-weight: 600;
}

.cta-box .btn-fermawi:hover {
	background: #f0f0f5;
	transform: translateY(-1px);
}

/* ===================================================== */
/* DIVISOR DE SEÇÃO */
/* ===================================================== */

.section-divider {
	border: none;
	height: 2px;
	background: linear-gradient(to right, transparent, #000, transparent);
	margin: 10px 0;
	opacity: 0.25;
}

/* ===================================================== */
/* MOBILE: garantir que o menu abra PARA BAIXO (Bootstrap) */
/* ===================================================== */

@media (max-width: 991.98px) {
	#mainNavbar > .container-fluid {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap; /* ESSENCIAL: permite o collapse descer pra linha de baixo */
		gap: 10px;
	}

	#mainNavbar .navbar-toggler {
		flex: 0 0 auto;
		white-space: nowrap;
	}

	/* Faz o collapse ocupar a linha toda e abrir pra baixo */
	#mainNavbar .navbar-collapse {
		flex-basis: 100%;
		width: 100%;
	}

	#mainNavbar .navbar-nav {
		width: 100%;
	}

	#mainNavbar .nav-link {
		text-align: left;
	}
}

/* ===================================================== */
/* Ajustes finos para telas muito estreitas */
/* ===================================================== */

@media (max-width: 360px) {
	#mainNavbar > .container-fluid {
		width: calc(100% - 24px);
	}
	#mainNavbar .logo-img {
		max-width: 210px;
	}
}

@media (max-width: 320px) {
	#mainNavbar > .container-fluid {
		width: calc(100% - 16px);
	}
	#mainNavbar .logo-img {
		max-width: 170px;
	}
}

/* caso “<277px” */
@media (max-width: 277px) {
	#mainNavbar > .container-fluid {
		width: calc(100% - 12px);
		gap: 8px;
	}

	#mainNavbar .logo-img {
		max-width: 140px;
	}

	#mainNavbar .navbar-toggler {
		padding: 6px 8px;
	}
}
/*FIM DO HEADER*/

/* ===================================================== */
/* CAROUSEL HERO FERMAWI */
/* ===================================================== */

#carouselFermawi {
	margin-top: -80px;
}
					
/* Carousel ocupa largura total da tela */
#carouselFermawi {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	overflow: hidden;
}

/* vídeo realmente full width */
#carouselFermawi .carousel-media {
	width: 100%;
	max-width: 100%;
	height: clamp(380px, 60vh, 720px);
	object-fit: cover;
	display: block;
}

html,
body {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

/* Garante que vídeo se comporte como imagem */
#carouselFermawi video.carousel-media{
	display: block;
}

/* overlay */
#carouselFermawi .carousel-overlay{
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.20) 55%, rgba(0,0,0,0) 100%);
}

/* legenda */
#carouselFermawi .carousel-caption{
	left: 8%;
	right: 8%;
	bottom: 12%;
	z-index: 2;
}

#carouselFermawi .carousel-title{
	font-weight: 700;
	letter-spacing: -0.02em;
}

#carouselFermawi .carousel-text{
	max-width: 52ch;
	opacity: .95;
}

/* indicadores */
#carouselFermawi .carousel-indicators [data-bs-target]{
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

/* setas */
#carouselFermawi .carousel-control-prev-icon,
#carouselFermawi .carousel-control-next-icon{
	filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
}

@media (max-width: 576px){
	#carouselFermawi .carousel-caption{
		bottom: 10%;
	}
	#carouselFermawi .carousel-text{
		display: none;
	}
}


/* ===================================================== */
/* FOOTER STANDARD - FERMAWI (BRANCO, ESTILO NAVBAR) */
/* ===================================================== */

.footer-fermawi {
	background-color: #ffffff;
	color: #111;
	margin-top: 0;
	box-shadow: none;
}

.footer-fermawi .footer-inner {
	display: grid;
	gap: 32px;
	padding: 48px 24px;
	max-width: 1200px;
	margin: 0 auto;
	grid-template-columns: 1.2fr 1fr 1fr;
}

/* ===================================================== */
/* FOOTER – TIPOGRAFIA ALINHADA COM O MENU */
/* ===================================================== */

/* Títulos do footer */
.footer-fermawi .footer-title {
	font-family: 'ArialRounded', Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.4px;
}

/* Links do footer (menu, contato, social) */
.footer-fermawi a {
	font-family: 'ArialRounded', Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0.3px;
}

/* ===================================================== */
/* LOGO DO FOOTER – CONTROLE REAL DE TAMANHO */
/* ===================================================== */

.footer-fermawi .footer-logo img {
	width: 180px !important;  /* força o tamanho */
	max-width: 100%;
	height: auto;
	display: block;
}

/* Tablet */
@media (max-width: 768px) {
	.footer-fermawi .footer-logo img {
		width: 160px !important;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.footer-fermawi .footer-logo img {
		width: 140px !important;
	}
}

/* ===================================================== */
/* TEXTOS E LISTAS */
/* ===================================================== */

.footer-fermawi .footer-title {
	font-size: 16px;
	margin: 0 0 12px 0;
	font-weight: 700;
}

.footer-fermawi .footer-text {
	margin: 12px 0 0 0;
	line-height: 1.5;
	opacity: 0.9;
}

.footer-fermawi .footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 10px;
}

.footer-fermawi a {
	color: #111;
	text-decoration: none;
	opacity: 0.9;
}

.footer-fermawi a:hover {
	opacity: 1;
	text-decoration: underline;
}

.footer-fermawi .footer-list i {
	margin-right: 10px;
	opacity: 0.8;
}

/* ===================================================== */
/* REDES SOCIAIS */
/* ===================================================== */

.footer-fermawi .footer-social {
	display: flex;
	gap: 12px;
	margin-top: 14px;
}

.footer-fermawi .footer-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(0,0,0,0.06);
}

.footer-fermawi .footer-social-link:hover {
	background: rgba(0,0,0,0.1);
	text-decoration: none;
}

/* ===================================================== */
/* FOOTER BOTTOM */
/* ===================================================== */

.footer-fermawi .footer-bottom {
	border-top: 1px solid rgba(0,0,0,0.08);
	padding: 14px 24px;
	text-align: center;
	font-size: 14px;
	opacity: 0.85;
}

/* ===================================================== */
/* RESPONSIVO */
/* ===================================================== */

@media (max-width: 992px) {
	.footer-fermawi .footer-inner {
		grid-template-columns: 1fr;
		padding: 40px 20px;
	}
}

/* ===================================================== */
/* FOOTER – ALINHAMENTO DE ÍCONES (CONTATO) */
/* ===================================================== */

.footer-fermawi .footer-contact .footer-list li {
	display: flex;	
	align-items: center; /* centraliza verticalmente */
	gap: 10px;
}

/* Ícones do contato */
.footer-fermawi .footer-contact .footer-list i {
	width: 20px;              /* largura fixa */
	min-width: 20px;
	text-align: center;       /* centraliza o ícone dentro do espaço */
	font-size: 16px;
	line-height: 1;
	margin-right: 0;          /* remove margem antiga */
}

/* FIM DO RODAPÉ */


/* ===================================================== */
/* BOTÕES FLUTUANTES – WHATSAPP, E-MAIL E VOLTAR AO TOPO */
/* ===================================================== */

/* ======================== */
/* Demais botões */
/* ======================== */

.btn-fermawi {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #43429e;
	color: #fff;
	padding: 12px 22px;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.25s ease;
}

.btn-fermawi:hover {
	background: #35348a;
	transform: translateY(-1px);
}


/* ======================== */
/* WhatsApp */
/* ======================== */

.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 20px;
	right: 20px;
	background-color: #25D366;
	color: #ffffff;
	border-radius: 50%;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
	transform: scale(1.08);
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.35);
}

.whatsapp-icon {
	font-size: 30px;
	line-height: 1;
}


/* ======================== */
/* E-mail */
/* ======================== */

.email-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 90px;
	right: 20px;
	background: linear-gradient(to right, #43429e, #586b95);
	color: #ffffff;
	border-radius: 50%;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.email-float:hover {
	transform: scale(1.08);
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.35);
}

.email-icon {
	font-size: 24px;
	line-height: 1;
}


/* ======================== */
/* Voltar ao Topo */
/* ======================== */

#myBtn {
	display: none; /* visível somente quando ativado via JS */
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 20px;
	right: 90px;
	background-color: #555;
	color: #ffffff;
	border: none;
	border-radius: 50%;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.2s ease;
}

#myBtn:hover {
	background-color: #333;
	transform: scale(1.08);
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.35);
}

#myBtn span,
#myBtn i {
	font-size: 24px;
	line-height: 1;
}


/* ======================== */
/* MOBILE – AJUSTES FINOS */
/* ======================== */

@media (max-width: 480px) {
	.whatsapp-float,
	.email-float,
	#myBtn {
		width: 54px;
		height: 54px;
	}

	.whatsapp-icon {
		font-size: 28px;
	}

	.email-icon,
	#myBtn span,
	#myBtn i {
		font-size: 22px;
	}

	.email-float {
		bottom: 84px;
	}

	#myBtn {
		right: 84px;
	}
}

/* FIM DO AJUSTES DOS BOTÕES */

/* ===================================================== */
/* CONTATO – PÁGINA */
/* ===================================================== */

.fw-contact-page {
	padding-top: 140px;
	padding-bottom: 60px;
}

.fw-contact-lead {
	max-width: 820px;
}

.fw-contact-footnote {
	font-size: 14px;
	opacity: 0.75;
}

/* Honeypot anti-spam */
.fw-honeypot {
	position: absolute;
	left: -9999px;
}

/* Card padrão (reutilizável) */
.fw-card {
	padding: 24px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

@media (min-width: 768px) {
	.fw-card {
		padding: 48px;
	}
}

/* ===================================================== */
/* CONTATO – 2 COLUNAS COM MESMA ALTURA (LG+) */
/* ===================================================== */

@media (min-width: 992px) {
	.fw-contact-page .row.align-items-start > [class*="col-lg-"].d-flex {
		align-items: stretch;
	}

	.fw-contact-page .fw-card {
		height: 100%;
	}
}

/* ===================================================== */
/* CONTATO – ITENS (WHATS, TEL, EMAIL, ENDEREÇO) */
/* ===================================================== */

.fw-contact-item {
	padding: 16px;
	border: 1px solid rgba(0,0,0,0.12);
	border-radius: 12px;
	text-decoration: none;
	color: inherit;
	background: #ffffff;
	display: block;
}

.fw-contact-item:hover {
	border-color: rgba(0,0,0,0.18);
	text-decoration: none;
}

/* Ícone em caixa fixa */
.fw-contact-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(0,0,0,0.06);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.fw-contact-icon i {
	font-size: 20px;
	line-height: 1;
}

/* Texto secundário */
.fw-contact-sub {
	opacity: 0.85;
}

/* Texto final */
.fw-contact-note {
	opacity: 0.85;
}

/* ===================================================== */
/* MAPA – CONTATO */
/* ===================================================== */

.fw-map {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(0,0,0,0.12);
	background: #fff;
}

.fw-map iframe {
	width: 100%;
	height: 380px;
	border: 0;
	display: block;
}

@media (max-width: 768px) {
	.fw-map iframe {
		height: 320px;
	}
}

/* FIM DA PÁGINA DE CONTATO */


/* ===================================================== */
/* PÁGINA QUEM SOMOS */
/* ===================================================== */

/* Variáveis da página */
:root {
	--fw-steel: #1a2332;
	--fw-steel-mid: #2c3e55;
	--fw-accent: #e8a020;
	--fw-accent-light: #f5c458;
	--fw-surface: #f4f5f7;
	--fw-border: #dee2e9;
}

/* Hero banner */
.sobre-hero {
	background: linear-gradient(135deg, var(--fw-steel) 0%, var(--fw-steel-mid) 60%, #1e3a5f 100%);
	position: relative;
	overflow: hidden;
	padding: 4.5rem 0 3.5rem;
	padding-top: calc(var(--navbar-height) + 4.5rem);
}

.sobre-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(
			45deg,
			transparent,
			transparent 28px,
			rgba(255,255,255,0.025) 28px,
			rgba(255,255,255,0.025) 29px
		);
}

.sobre-hero::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--fw-accent) 0%, var(--fw-accent-light) 50%, var(--fw-accent) 100%);
}

.sobre-hero .badge-setor {
	background: rgba(232, 160, 32, 0.18);
	color: var(--fw-accent-light);
	border: 1px solid rgba(232, 160, 32, 0.35);
	font-size: .75rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-weight: 600;
	padding: .35rem .85rem;
	border-radius: 2rem;
}

.sobre-hero h1 {
	color: #fff;
	font-weight: 800;
	font-size: clamp(2rem, 5vw, 3rem);
	letter-spacing: -.02em;
	line-height: 1.1;
}

.sobre-hero h1 span {
	color: var(--fw-accent);
}

.sobre-hero .lead {
	color: rgba(255,255,255,.72);
	font-size: 1.05rem;
	max-width: 600px;
}

.hero-stat {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: .75rem;
	padding: 1rem 1.4rem;
	text-align: center;
}

.hero-stat .stat-num {
	display: block;
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--fw-accent);
	line-height: 1;
}

.hero-stat .stat-lbl {
	display: block;
	font-size: .72rem;
	color: rgba(255,255,255,.6);
	text-transform: uppercase;
	letter-spacing: .07em;
	margin-top: .3rem;
}

/* Diferenciais */
.diferencial-card {
	background: #fff;
	border: 1px solid var(--fw-border);
	border-radius: .875rem;
	padding: 1.4rem 1.5rem;
	height: 100%;
	transition: box-shadow .2s, transform .2s, border-color .2s;
}

.diferencial-card:hover {
	box-shadow: 0 8px 28px rgba(26,35,50,.1);
	transform: translateY(-3px);
	border-color: var(--fw-accent);
}

.diferencial-card .icon-wrap {
	width: 44px;
	height: 44px;
	border-radius: .6rem;
	background: linear-gradient(135deg, #fff8e8, #fde9b0);
	border: 1px solid #f5d06a;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: .9rem;
	font-size: 1.25rem;
}

.diferencial-card h3 {
	font-size: .95rem;
	font-weight: 700;
	color: var(--fw-steel);
	margin-bottom: .35rem;
}

.diferencial-card p {
	font-size: .875rem;
	color: #5c6780;
	margin: 0;
	line-height: 1.55;
}

/* Segmentos pills */
.segmento-pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: var(--fw-surface);
	border: 1px solid var(--fw-border);
	border-radius: 2rem;
	padding: .5rem 1rem;
	font-size: .875rem;
	color: var(--fw-steel);
	font-weight: 500;
	transition: background .15s, border-color .15s, color .15s;
}

.segmento-pill:hover {
	background: #fff8e8;
	border-color: var(--fw-accent);
	color: #8a5a00;
}

.segmento-pill .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fw-accent);
	flex-shrink: 0;
}

/* Timeline história */
.timeline {
	position: relative;
	padding-left: 2rem;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 9px; top: 6px; bottom: 6px;
	width: 2px;
	background: linear-gradient(to bottom, var(--fw-accent), #dee2e9);
}

.timeline-item {
	position: relative;
	padding-bottom: 2rem;
}

.timeline-item:last-child {
	padding-bottom: 0;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: -1.65rem;
	top: 6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--fw-accent);
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px var(--fw-accent);
}

.timeline-item p {
	font-size: .93rem;
	color: #3d4a60;
	line-height: 1.7;
	margin: 0;
}

/* Eyebrow + título de seção */
.section-eyebrow {
	display: inline-block;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--fw-accent);
	margin-bottom: .4rem;
}

.section-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--fw-steel);
	letter-spacing: -.02em;
}

/* Divisor dourado (renomeado para não colidir com .section-divider global) */
.section-divider-accent {
	width: 36px;
	height: 3px;
	background: var(--fw-accent);
	border-radius: 2px;
	margin: .6rem 0 1.5rem;
}

/* Quote block */
.sobre-quote {
	background: var(--fw-surface);
	border: 1px solid var(--fw-border);
}

.sobre-quote p {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--fw-steel);
	line-height: 1.6;
}

.sobre-quote-line {
	width: 32px;
	height: 3px;
	background: var(--fw-accent);
	border-radius: 2px;
}

/* CTA strip */
.cta-strip {
	background: linear-gradient(135deg, var(--fw-steel) 0%, var(--fw-steel-mid) 100%);
	border-radius: 1rem;
	padding: 2.5rem 2rem;
	position: relative;
	overflow: hidden;
}

.cta-strip::before {
	content: '';
	position: absolute;
	right: -40px; top: -40px;
	width: 200px; height: 200px;
	border-radius: 50%;
	background: rgba(232,160,32,.12);
}

.cta-strip h2 {
	color: #fff;
	font-weight: 800;
	font-size: 1.35rem;
	margin-bottom: .4rem;
}

.cta-strip p {
	color: rgba(255,255,255,.65);
	font-size: .92rem;
	margin: 0;
}

/* Botões do CTA */
.btn-fw-accent {
	background: var(--fw-accent);
	color: var(--fw-steel);
	font-weight: 700;
	font-size: .9rem;
	border: none;
	padding: .65rem 1.6rem;
	border-radius: .5rem;
	transition: background .15s, box-shadow .15s;
	text-decoration: none;
	display: inline-block;
}

.btn-fw-accent:hover {
	background: var(--fw-accent-light);
	box-shadow: 0 4px 16px rgba(232,160,32,.4);
	color: var(--fw-steel);
}

.btn-fw-outline {
	background: transparent;
	color: rgba(255,255,255,.85);
	font-weight: 600;
	font-size: .9rem;
	border: 1px solid rgba(255,255,255,.3);
	padding: .65rem 1.6rem;
	border-radius: .5rem;
	transition: border-color .15s, color .15s;
	text-decoration: none;
	display: inline-block;
}

.btn-fw-outline:hover {
	border-color: rgba(255,255,255,.7);
	color: #fff;
}

/* Responsivo */
@media (max-width: 576px) {
	.sobre-hero {
		padding: 2.5rem 0 2.5rem;
		padding-top: calc(var(--navbar-height) + 2.5rem);
	}
	.hero-stats {
		gap: .75rem !important;
	}
}

/* FIM PÁGINA QUEM SOMOS */