:root {
	--roxo: #4B2D8F;
	--roxo-dk: #311c63;
	--laranja: #F5A623;
	--creme: #FDF6EC;
	--branco: #ffffff;
	--texto: #1a1a2e;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--branco);
	color: var(--texto);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display-font {
	font-family: 'Sora', sans-serif;
}

/* ─── NAVBAR ─── */
.navbar {
	background: var(--roxo);
	padding: 1rem 2rem;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: .6rem;
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	font-size: 1.4rem;
	color: var(--branco) !important;
	letter-spacing: -.5px;
}

.logo-icon {
	width: 38px;
	height: 38px;
}

.brand-sub {
	font-size: .65rem;
	font-weight: 300;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--laranja);
	display: block;
	line-height: 1;
}

.navbar .nav-link {
	color: rgba(255, 255, 255, .8) !important;
	font-weight: 500;
	font-size: .9rem;
	padding: .4rem .9rem !important;
	border-radius: 6px;
	transition: all .2s;
}

.navbar .nav-link:hover {
	color: var(--branco) !important;
	background: rgba(255, 255, 255, .1);
}

.btn-nav-cta {
	background: var(--laranja);
	color: var(--roxo-dk) !important;
	font-weight: 700 !important;
	border-radius: 50px !important;
	padding: .45rem 1.3rem !important;
}

.btn-nav-cta:hover {
	background: #f0920d !important;
}

/* ─── HERO CAROUSEL ─── */
#heroCarousel {
	position: relative;
}

.hero-slide {
	min-height: 92vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 5rem 0;
}

/* Slide 1 — roxo escuro (principal) */
.hero-slide-1 {
	background: var(--roxo);
}

.hero-slide-1::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: var(--laranja);
	opacity: .12;
	bottom: -200px;
	right: -150px;
	pointer-events: none;
}

.hero-slide-1::after {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: var(--laranja);
	opacity: .08;
	top: -80px;
	left: -80px;
	pointer-events: none;
}

/* Slide 2 — roxo escuro com accent diferente */
.hero-slide-2 {
	background: var(--roxo-dk);
}

.hero-slide-2::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 80% 50%, rgba(245, 166, 35, .15) 0%, transparent 65%);
	pointer-events: none;
}

/* Slide 3 — laranja invertido */
.hero-slide-3 {
	background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 60%, #4B2D8F 100%);
}

.hero-slide-3::before {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: var(--laranja);
	opacity: .1;
	top: -120px;
	right: -100px;
	pointer-events: none;
}

/* Textos comuns de slide */
.hero-tag {
	display: inline-block;
	background: var(--laranja);
	color: var(--roxo-dk);
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: .72rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: .3rem .9rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-size: clamp(2.2rem, 4.5vw, 3.8rem);
	font-weight: 800;
	color: var(--branco);
	line-height: 1.08;
	margin-bottom: 1.2rem;
}

.hero-title span {
	color: var(--laranja);
}

.hero-desc {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, .75);
	max-width: 480px;
	line-height: 1.7;
	margin-bottom: 2.2rem;
}

.btn-hero-primary {
	background: var(--laranja);
	color: var(--roxo-dk);
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: .95rem;
	padding: .85rem 2.2rem;
	border-radius: 50px;
	border: none;
	text-decoration: none;
	display: inline-block;
	transition: transform .2s, box-shadow .2s;
	box-shadow: 0 8px 30px rgba(245, 166, 35, .35);
}

.btn-hero-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(245, 166, 35, .5);
	color: var(--roxo-dk);
}

.btn-hero-ghost {
	border: 2px solid rgba(255, 255, 255, .3);
	color: var(--branco);
	font-family: 'Sora', sans-serif;
	font-weight: 600;
	font-size: .95rem;
	padding: .8rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	display: inline-block;
	transition: all .2s;
}

.btn-hero-ghost:hover {
	border-color: var(--laranja);
	color: var(--laranja);
}

/* Card flutuante lado direito */
.hero-right-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-blob {
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: var(--laranja);
	opacity: .15;
	z-index: 0;
}

.hero-card-float {
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 24px;
	padding: 2.2rem 2rem;
	max-width: 340px;
	width: 100%;
	animation: float 4s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}
}

.hero-card-float .tagline {
	font-family: 'Sora', sans-serif;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--branco);
	line-height: 1.25;
}

.hero-card-float .tagline em {
	color: var(--laranja);
	font-style: normal;
}

.hero-stat {
	margin-top: 1.4rem;
	display: flex;
	gap: 1.2rem;
}

.hero-stat .num {
	font-family: 'Sora', sans-serif;
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--laranja);
	line-height: 1;
}

.hero-stat .lbl {
	font-size: .72rem;
	color: rgba(255, 255, 255, .6);
	line-height: 1.3;
	margin-top: .2rem;
}

.hero-stat .item {
	flex: 1;
}

/* Card slide 2 — ícones de serviços */
.svc-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.svc-list li {
	display: flex;
	align-items: center;
	gap: .8rem;
	padding: .7rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	font-family: 'Sora', sans-serif;
	font-size: .88rem;
	font-weight: 600;
	color: var(--branco);
}

.svc-list li:last-child {
	border-bottom: none;
}

.svc-list li .si {
	width: 32px;
	height: 32px;
	min-width: 32px;
	background: var(--laranja);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--roxo-dk);
	font-size: .9rem;
}

/* Card slide 3 — propósito */
.proposito-card-hero {
	font-family: 'Sora', sans-serif;
	color: var(--branco);
}

.proposito-card-hero .pq {
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--laranja);
	margin-bottom: .4rem;
}

.proposito-card-hero h4 {
	font-size: 1.1rem;
	font-weight: 800;
	margin-bottom: .8rem;
	line-height: 1.3;
}

.proposito-card-hero p {
	font-size: .83rem;
	color: rgba(255, 255, 255, .7);
	line-height: 1.6;
	margin: 0;
}

.proposito-card-hero strong {
	color: var(--laranja);
}

/* Controles do carrossel customizados */
.carousel-control-prev,
.carousel-control-next {
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	bottom: auto;
	transition: background .2s;
}

.carousel-control-prev {
	left: 1.5rem;
}

.carousel-control-next {
	right: 1.5rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
	background: var(--laranja);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 18px;
	height: 18px;
}

/* Indicators customizados */
.carousel-indicators {
	bottom: 1.5rem;
	gap: .4rem;
	margin: 0;
	justify-content: center;
}

.carousel-indicators [data-bs-target] {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .35);
	border: none;
	transition: all .3s;
	flex-shrink: 0;
}

.carousel-indicators .active {
	background: var(--laranja);
	width: 28px;
	border-radius: 4px;
}

/* Barra de progresso do slide */
.slide-progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background: var(--laranja);
	width: 0%;
	z-index: 10;
	transition: none;
}

.slide-progress-bar.running {
	animation: slideProgress 5s linear forwards;
}

@keyframes slideProgress {
	from {
		width: 0%;
	}

	to {
		width: 100%;
	}
}

/* ─── SECTION COMMONS ─── */
section {
	padding: 5rem 0;
}

.section-label {
	font-family: 'Sora', sans-serif;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--laranja);
	margin-bottom: .6rem;
}

.section-title {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 800;
	line-height: 1.15;
}

/* ─── QUEM SOMOS ─── */
#quem-somos {
	background: var(--creme);
}

.qs-card {
	background: var(--branco);
	border-radius: 20px;
	padding: 2.5rem;
	height: 100%;
	border: 1px solid rgba(0, 0, 0, .06);
	box-shadow: 0 4px 30px rgba(0, 0, 0, .05);
	transition: transform .3s, box-shadow .3s;
}

.qs-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 50px rgba(75, 45, 143, .12);
}

.qs-icon {
	width: 54px;
	height: 54px;
	background: var(--roxo);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--laranja);
	margin-bottom: 1.2rem;
}

/* ─── O QUE FAZEMOS ─── */
#o-que-fazemos {
	background: var(--roxo);
	color: var(--branco);
}

#o-que-fazemos .section-title {
	color: var(--branco);
}

.service-item {
	display: flex;
	gap: 1.2rem;
	padding: 1.4rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .1);
	transition: background .25s;
}

.service-item:hover {
	background: rgba(255, 255, 255, .12);
}

.service-dot {
	width: 44px;
	height: 44px;
	min-width: 44px;
	border-radius: 12px;
	background: var(--laranja);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--roxo-dk);
}

.service-item h5 {
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: .95rem;
	color: var(--branco);
	margin-bottom: .3rem;
}

.service-item p {
	font-size: .85rem;
	color: rgba(255, 255, 255, .65);
	margin: 0;
	line-height: 1.5;
}

.modelo-box {
	background: var(--laranja);
	border-radius: 20px;
	padding: 2.2rem;
	color: var(--roxo-dk);
	margin-top: 2rem;
}

.modelo-box h4 {
	font-family: 'Sora', sans-serif;
	font-weight: 800;
	font-size: 1.3rem;
	margin-bottom: .5rem;
}

.modelo-box p {
	font-size: .95rem;
	margin: 0;
	line-height: 1.6;
}

/* ─── NOSSAS SOLUÇÕES ─── */
#nossas-solucoes {
	background: var(--branco);
}

.sol-card {
	padding: 1.8rem;
	border-radius: 18px;
	border: 2px solid transparent;
	background: var(--creme);
	transition: all .3s;
	height: 100%;
}

.sol-card:hover {
	border-color: var(--roxo);
	background: var(--branco);
	box-shadow: 0 8px 40px rgba(75, 45, 143, .1);
}

.sol-card .si {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.sol-card h5 {
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--roxo);
	margin-bottom: .4rem;
}

.sol-card p {
	font-size: .87rem;
	color: #555;
	margin: 0;
	line-height: 1.6;
}

/* ─── DIFERENCIAIS ─── */
#diferenciais {
	background: var(--creme);
}

.diff-pill {
	display: flex;
	align-items: center;
	gap: .9rem;
	background: var(--branco);
	border-radius: 14px;
	padding: 1rem 1.4rem;
	font-family: 'Sora', sans-serif;
	font-weight: 600;
	font-size: .9rem;
	color: var(--roxo-dk);
	box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
	transition: transform .2s, box-shadow .2s;
}

.diff-pill:hover {
	transform: translateX(6px);
	box-shadow: 0 6px 25px rgba(75, 45, 143, .12);
}

.diff-pill .dp-icon {
	width: 38px;
	height: 38px;
	min-width: 38px;
	border-radius: 10px;
	background: var(--laranja);
	color: var(--roxo-dk);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

.proposito-box {
	background: var(--roxo);
	border-radius: 20px;
	padding: 2.5rem;
	color: var(--branco);
}

.proposito-box .pq {
	font-family: 'Sora', sans-serif;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--laranja);
	margin-bottom: .5rem;
}

.proposito-box h3 {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: .8rem;
}

.proposito-box p {
	color: rgba(255, 255, 255, .8);
	font-size: .95rem;
	line-height: 1.7;
	margin: 0;
}

.proposito-box strong {
	color: var(--laranja);
}

/* ─── CLIENTES ─── */
#clientes {
	background: var(--branco);
}

.logo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1.2rem;
}

.logo-box {
	background: var(--creme);
	border-radius: 14px;
	padding: 1.5rem 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--roxo-dk);
	text-align: center;
	border: 1px solid rgba(0, 0, 0, .06);
	transition: all .2s;
	min-height: 80px;
}

.logo-box:hover {
	background: var(--roxo);
	color: var(--branco);
	transform: scale(1.03);
}

.frase-clientes {
	margin-top: 2.5rem;
	background: var(--laranja);
	border-radius: 16px;
	padding: 1.5rem 2rem;
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	color: var(--roxo-dk);
	text-align: center;
}

/* ─── CONTATO / CTA ─── */
#contato {
	background: var(--roxo);
	color: var(--branco);
	text-align: center;
}

#contato .section-title {
	color: var(--branco);
}

.contact-card {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 20px;
	padding: 2rem;
	text-align: center;
	transition: background .25s;
}

.contact-card:hover {
	background: rgba(255, 255, 255, .14);
}

.contact-card .cc-icon {
	font-size: 2rem;
	color: var(--laranja);
	margin-bottom: .8rem;
}

.contact-card h6 {
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: .8rem;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .5);
	margin-bottom: .4rem;
}

.contact-card a,
.contact-card p {
	font-size: 1rem;
	font-weight: 500;
	color: var(--branco);
	text-decoration: none;
	word-break: break-all;
}

.contact-card a:hover {
	color: var(--laranja);
}

.btn-laranja {
	background: var(--laranja);
	color: var(--roxo-dk);
	font-family: 'Sora', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	border: none;
	text-decoration: none;
	display: inline-block;
	transition: transform .2s, box-shadow .2s;
	box-shadow: 0 8px 30px rgba(245, 166, 35, .3);
}

.btn-laranja:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 40px rgba(245, 166, 35, .5);
	color: var(--roxo-dk);
}

/* ─── FOOTER ─── */
footer {
	background: var(--roxo-dk);
	color: rgba(255, 255, 255, .5);
	text-align: center;
	padding: 1.5rem;
	font-size: .82rem;
}

footer span {
	color: var(--laranja);
}

/* ─── ANIMAÇÕES ─── */
.fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ─── RESPONSIVE TWEAKS ─── */
@media (max-width: 768px) {
	.hero-slide {
		min-height: auto;
		padding: 4rem 0 5rem;
	}

	.btn-hero-ghost {
		margin-left: 0;
		margin-top: .5rem;
	}

	.hero-right-wrap {
		margin-top: 2.5rem;
	}

	.hero-card-float {
		max-width: 100%;
	}

	.hero-blob {
		width: 260px;
		height: 260px;
	}

	.carousel-control-prev {
		left: .5rem;
	}

	.carousel-control-next {
		right: .5rem;
	}
}