/* Centralizar logo do footer no mobile */
@media (max-width: 768px) {
	footer .footer-logo {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	footer .footer-logo img {
		margin: 0 auto;
		display: 180px;
	}
}

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	align-items: center;
	gap: 64px;
}

.hero-image {
	display: flex;
	justify-content: flex-end;
}

.hero-image img {
	width: 100%;
	max-width: 520px;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

@media (max-width: 992px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-image {
		justify-content: center;
		margin-top: 40px;
	}

	.hero-image img {
		max-width: 360px;
	}
}

.btn-primary-gradient {
	background: linear-gradient(135deg, #a70010, #77040e);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 14px 32px;
	font-weight: 600;
	box-shadow: 0 8px 24px rgba(180, 0, 0, 0.45);
	transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(180, 0, 0, 0.65);
	color: #fff;
}

.hero {
	min-height: 85vh;
	display: flex;
	align-items: center;
}

.hero-content {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.hero-text {
	text-align: left;
}

.hero-image img {
	width: 100%;
	max-width: 520px;
	height: auto;
	margin-left: auto;
}

/* Mobile */
@media (max-width: 992px) {
	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero-text {
		text-align: center;
	}

	.hero-image img {
		margin: 32px auto 0;
		max-width: 360px;
	}
}

.hero {
	background-image:
		linear-gradient(rgba(3, 7, 18, 0.85),
			rgba(3, 7, 18, 0.85)),
		url("/assets/img/hero.jpg");

	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* =========================
           COMPENSA HEADER FIXO
        ========================= */

/* Ajuste fino para mobile */
@media (max-width: 768px) {
	body {
		padding-top: 140px;
	}
}

body {
	font-family: 'Inter', sans-serif;
	color: #0f172a;
}

/* ===== NAVBAR ===== */
.navbar {
	background: #020617;
}

/* ===== HERO ===== */
.hero {
	background: linear-gradient(135deg, #020617, #0f172a);
	color: #fff;
	padding: 120px 0;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 800;
}

/* ===== SECTIONS ===== */
.section {
	padding: 90px 0;
}

.badge-pill {
	background: #a70010;
	color: #fff;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 0.85rem;
}

.feature {
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 30px;
	height: 100%;
	transition: .3s;
	text-align: left;

}

.feature:hover {
	transform: translateY(-6px);
	border-color: #4f46e5;
}

/* ===== CTA ===== */
.cta {
	background: linear-gradient(135deg, #4f46e5, #4338ca);
	color: #fff;
}

/* ===== FAQ ===== */
.accordion-button:not(.collapsed) {
	background: #eef2ff;
	color: #1e1b4b;
}

/* ===== FOOTER ===== */
footer {
	background: #020617;
	color: #cbd5f5;
}

.testimonials {
	padding: 80px 20px;
	background: #ffffff;
}

.testimonials h2 {
	font-size: 32px;
	margin-bottom: 40px;
	color: #111;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.testimonial-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 24px;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stars {
	color: #f97316;
	font-size: 18px;
	margin-bottom: 16px;
}

.testimonial-text {
	font-size: 16px;
	color: #fff;
	margin-bottom: 24px;
	line-height: 1.6;
}

.testimonial-user {
	color: #f97316;
	display: flex;
	align-items: center;
	gap: 12px;
}

.testimonial-user strong {
	color: #fff !important;
}

.avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #0f766e;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}

.testimonial-user strong {
	display: block;
	font-size: 15px;
	color: #111;
}

.testimonial-user span {
	font-size: 14px;
	color: #6b7280;
}

.trust {
	padding: 100px 20px;
	background: #ffffff;
}

.trust .container {
	max-width: 1200px;
	margin: 0 auto;
}

.trust-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 999px;
	background: #eef2f7;
	color: #1f4fd8;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 20px;
}

.trust h2 {
	font-size: 48px;
	line-height: 1.2;
	color: #111827;
	margin-bottom: 16px;
}

.trust-subtitle {
	font-size: 18px;
	color: #4b5563;
	margin-bottom: 48px;
	max-width: 600px;
	text-align: left;

}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.trust-card {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	padding: 40px 20px;
	text-align: center;
}

.trust-card strong {
	display: block;
	font-size: 48px;
	font-weight: 700;
	color: #0f4c81;
	margin-bottom: 8px;
}

.trust-card span {
	font-size: 16px;
	color: #4b5563;
}

/* Responsivo */
@media (max-width: 768px) {
	.trust h2 {
		font-size: 34px;
	}
}

.cta-form {
	padding: 120px 20px;
	background: #f7faf9;
	text-align: center;
}

.cta-form .container {
	max-width: 900px;
	margin: 0 auto;
}

.cta-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 999px;
	background: #fff1e6;
	color: #f97316;
	font-size: 14px;
	margin-bottom: 24px;
}

.cta-form h2 {
	font-size: 48px;
	color: #111827;
	margin-bottom: 16px;
}

.cta-subtitle {
	font-size: 18px;
	color: #4b5563;
	margin-bottom: 48px;
}

.form-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 48px;
	max-width: 600px;
	margin: 0 auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
	text-align: left;
}

.form-group {
	margin-bottom: 24px;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
}

.form-group input {
	width: 100%;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	font-size: 16px;
}

.form-group small {
	display: block;
	margin-top: 6px;
	color: #6b7280;
	font-size: 13px;
}

.btn-whatsapp {
	width: 100%;
	background: #ea7c1a;
	color: #fff;
	border: none;
	padding: 16px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 12px;
}

.btn-whatsapp i {
	margin-right: 6px;
}

.form-info {
	font-size: 13px;
	color: #6b7280;
	text-align: center;
	margin-top: 16px;
}

.form-card hr {
	margin: 40px 0;
	border: none;
	border-top: 1px solid #e5e7eb;
}

.form-proof {
	text-align: center;
}

.form-proof p {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 16px;
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.proof-grid strong {
	font-size: 24px;
	display: block;
}

.proof-grid span {
	font-size: 13px;
	color: #6b7280;
}

/* Responsivo */
@media (max-width: 768px) {
	.cta-form h2 {
		font-size: 34px;
	}

	.form-card {
		padding: 32px 24px;
	}
}

.footer-premium {
	background: radial-gradient(circle at top, #1f1f1f, #0b0b0b);
	color: #d1d5db;
	padding: 80px 20px 40px;
}

.footer-premium .container {
	max-width: 1200px;
	margin: 0 auto;
}

/* TOPO */
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px;
}

.footer-brand p {
	margin-top: 16px;
	color: #9ca3af;
	max-width: 360px;
}

.brand-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
}

.brand-icon {
	background: #f97316;
	color: #fff;
	border-radius: 8px;
	padding: 4px 8px;
	font-weight: bold;
}

.footer-nav h6,
.footer-social h6 {
	color: #fff;
	margin-bottom: 16px;
}

.footer-nav a {
	display: block;
	color: #9ca3af;
	text-decoration: none;
	margin-bottom: 10px;
	font-size: 14px;
}

.footer-nav a:hover {
	color: #f97316;
}

.social-icons a {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	background: #1f2937;
	border-radius: 10px;
	margin-right: 10px;
	color: #fff;
	font-size: 16px;
}

/* DIVISOR */
.footer-divider {
	border: none;
	border-top: 1px solid #1f2937;
	margin: 50px 0;
}

/* CARD TRANSPARÊNCIA */
.footer-transparency {
	background: #1a1a1a;
	border-radius: 16px;
	padding: 32px;
	margin-bottom: 50px;
}

.footer-transparency h5 {
	color: #fff;
	margin-bottom: 12px;
}

.footer-transparency p {
	color: #9ca3af;
	line-height: 1.6;
}

/* BASE */
.footer-bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-bottom h6 {
	color: #fff;
	margin-bottom: 10px;
}

.footer-bottom p {
	color: #9ca3af;
	font-size: 14px;
}

.footer-contact {
	text-align: right;
}

.footer-contact .copyright {
	margin-top: 12px;
	font-size: 13px;
	color: #6b7280;
}

/* RESPONSIVO */
@media (max-width: 900px) {
	.footer-top {
		grid-template-columns: 1fr;
	}

	.footer-contact {
		text-align: left;
	}
}

.solutions-section {
	padding: 100px 20px;
	background: radial-gradient(circle at top left, #e6f4ea, #eef6fb, #ffffff);
}

.solutions-section .container {
	max-width: 1200px;
	margin: 0 auto;
}

.solutions-header {
	max-width: 600px;
	margin-bottom: 60px;
}

.solutions-header h2 {
	font-size: 38px;
	font-weight: 600;
	margin-bottom: 12px;
}

.solutions-header p {
	color: #4b5563;
	font-size: 16px;
}

/* GRID */
.solutions-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

/* CARD */
.solution-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 28px 30px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
	border: 1px solid #e5e7eb;
}

.solution-card h5 {
	font-size: 20px;
	margin: 12px 0 18px;
}

/* BADGES */
.badge-problem {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 600;
	color: #065f46;
}

.badge-problem::before {
	content: "✓";
	background: #d1fae5;
	color: #065f46;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.badge-solution {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #15803d;
	margin-top: 8px;
}

/* TEXTO */
.solution-card strong {
	display: block;
	margin: 6px 0 6px;
	font-weight: 600;
}

.solution-card p {
	font-size: 14px;
	color: #4b5563;
	line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 900px) {
	.solutions-grid {
		grid-template-columns: 1fr;
	}

	.solutions-header h2 {
		font-size: 30px;
	}
}

.btn-cta-header {
	padding: 10px 22px;
	border-radius: 999px;
	background: linear-gradient(135deg, #a70010, #77040e);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(180, 0, 0, 0.35);
}

.btn-cta-header:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(180, 0, 0, 0.45);
	color: #fff;
}

/* =========================
       MOBILE FIRST (≤768px)
    ========================= */
@media (max-width: 768px) {

	/* ===== NAVBAR ===== */
	.navbar .container {
		flex-direction: column;
		gap: 10px;
	}

	.navbar-brand {
		font-size: 14px;
		text-align: center;
	}

	.navbar a.btn-cta-header {
		width: 100%;
		text-align: center;
	}

	/* ===== HERO ===== */
	.hero {
		padding: 100px 20px 80px;
	}

	.hero h1 {
		font-size: 28px;
		line-height: 1.2;
	}

	.hero p {
		font-size: 16px;
	}

	.hero .btn {
		width: 100%;
	}

	/* ===== TRUST / PROVA SOCIAL ===== */
	.trust {
		padding: 70px 20px;
		text-align: center;
	}

	.trust h2 {
		font-size: 28px;
	}

	.trust-subtitle {
		font-size: 16px;
		margin-bottom: 32px;
	}

	.trust-grid {
		grid-template-columns: 1fr;
	}

	.trust-card strong {
		font-size: 36px;
	}

	/* ===== SOLUÇÕES ===== */
	.solutions-section {
		padding: 70px 20px;
	}

	.solutions-header h2 {
		font-size: 28px;
	}

	.solutions-header p {
		font-size: 15px;
	}

	.solution-card {
		padding: 24px;
	}

	/* ===== FORMULÁRIO ===== */
	.cta-form {
		padding: 80px 20px;
	}

	.cta-form h2 {
		font-size: 30px;
	}

	.cta-subtitle {
		font-size: 16px;
	}

	.form-card {
		padding: 28px 20px;
	}

	.proof-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	/* ===== COMO FUNCIONA ===== */
	.section {
		padding: 70px 20px;
	}

	/* ===== FUNCIONALIDADES ===== */
	.section.bg-light .row>div {
		width: 100%;
	}

	/* ===== DEPOIMENTOS ===== */
	.testimonials {
		padding: 70px 20px;
	}

	.testimonials h2 {
		font-size: 26px;
		text-align: center;
	}

	.testimonial-text {
		font-size: 15px;
	}

	/* ===== FAQ ===== */
	.accordion-button {
		font-size: 15px;
	}

	/* ===== FOOTER ===== */
	.footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: left;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: left;
	}

	.footer-contact {
		text-align: left;
	}

}

@media (max-width: 768px) {
	.navbar {
		min-height: 96px;
		padding: 8px 0;
	}

	.navbar-brand img {
		max-height: 72px;
		height: auto;
	}
}


/* =========================
       AJUSTES MOBILE HEADER
    ========================= */
@media (max-width: 768px) {

	/* CENTRALIZA O LOGO */
	.navbar-brand {
		margin: 0 auto;
		display: block;
		text-align: center;
	}

	.navbar-brand img {
		margin: 0 auto;
		display: block;
	}

	/* ORGANIZA O HEADER */
	.navbar .container {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
		padding-bottom: 24px;
	}

	/* BOTÕES DO MENU */
	.navbar .btn,
	.navbar a {
		width: 100%;
		text-align: center;
	}

	/* ESPAÇO ENTRE HEADER E HERO */
	.hero {
		padding-top: 240px;
		/* aumenta respiro */
	}

}

/* =========================
           FIX HEADER / NAVBAR
        ========================= */

.navbar {
	padding: 14px 0;
}

.navbar .container {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0;
}

.navbar-brand img {
	height: 180px;
	width: auto;
}

/* AGRUPA OS BOTÕES */
.navbar-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* MOBILE */
@media (max-width: 768px) {

	.navbar .container {
		flex-direction: column;
		align-items: center;
		gap: 14px;
	}

	.navbar-actions {
		width: 100%;
		flex-direction: column;
	}

	.navbar-actions a {
		width: 100%;
		text-align: center;
	}
}

/* =========================
               SESSÃO CONFIANÇA
            ========================= */

.trust {
	background: linear-gradient(180deg,
			#050b1e 0%,
			#0a1433 100%);
	padding: 100px 0;
	color: #f5f7fb;
}

.trust-badge {
	display: inline-block;
	background: rgba(179, 0, 22, 0.15);
	color: #ffccd1;
	padding: 6px 16px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 16px;
}

.trust h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 16px;
	color: #ffffff;
}

.trust-subtitle {
	color: #b8c1d9;
	font-size: 18px;
	max-width: 720px;
	margin: 0 auto 56px;
}

/* GRID */
.trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

/* CARD */
.trust-card {
	background: linear-gradient(180deg,
			#0b2a5f 0%,
			#081b3a 100%);
	border-radius: 20px;
	padding: 48px 24px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
	transition: all 0.3s ease;
}

.trust-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 70px rgba(179, 0, 22, 0.35);
}

/* NÚMERO */
.trust-card strong {
	display: block;
	font-size: 48px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 8px;
}

/* LABEL */
.trust-card span {
	font-size: 16px;
	color: #b8c1d9;
}

/* RESPONSIVO */
@media (max-width: 992px) {
	.trust-grid {
		grid-template-columns: 1fr;
	}

	.trust h2 {
		font-size: 32px;
	}
}

/* =========================
                   SOLUÇÕES – NOVO VISUAL
                ========================= */

.solutions-section {
	position: relative;
	padding: 120px 20px;
	background-image:
		linear-gradient(rgba(2, 6, 23, 0.88),
			rgba(2, 6, 23, 0.88)),
		url("/assets/img/solutions-bg.png");
	/* troque pelo caminho da imagem */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* CONTAINER */
.solutions-section .container {
	position: relative;
	z-index: 2;
	max-width: 1200px;
}

/* HEADER */
.solutions-header {
	max-width: 620px;
	margin-bottom: 70px;
}

.solutions-header h2 {
	font-size: 42px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
}

.solutions-header p {
	font-size: 17px;
	color: #cbd5f5;
}

/* GRID */
.solutions-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px;
}

/* CARD */
.solution-card {
	background: linear-gradient(180deg,
			rgba(15, 23, 42, 0.85),
			rgba(2, 6, 23, 0.85));
	border-radius: 18px;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
	transition: all 0.35s ease;
}

/* HOVER */
.solution-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 70px rgba(167, 0, 16, 0.45);
	border-color: rgba(167, 0, 16, 0.6);
}

/* BADGE PROBLEMA */
.badge-problem {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	color: #86efac;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.badge-problem::before {
	content: "✓";
	width: 22px;
	height: 22px;
	background: rgba(22, 163, 74, 0.2);
	color: #22c55e;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

/* TÍTULO */
.solution-card h5 {
	font-size: 22px;
	color: #ffffff;
	margin: 14px 0 18px;
	font-weight: 700;
}

/* BADGE SOLUÇÃO */
.badge-solution {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: #fca5a5;
	text-transform: uppercase;
	margin-bottom: 6px;
}

/* DESTAQUE */
.solution-card strong {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #fecaca;
	margin-bottom: 8px;
}

/* TEXTO */
.solution-card p {
	font-size: 15px;
	color: #c7d2fe;
	line-height: 1.7;
}

/* RESPONSIVO */
@media (max-width: 992px) {
	.solutions-grid {
		grid-template-columns: 1fr;
	}

	.solutions-header h2 {
		font-size: 32px;
	}

	.solutions-header p {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.solutions-section {
		padding: 80px 20px;
	}

	.solution-card {
		padding: 26px;
	}
}

/* =========================
                       FORMULÁRIO – CTA PREMIUM
                    ========================= */

.cta-form {
	position: relative;
	padding: 140px 20px;
	background-image:
		linear-gradient(rgba(2, 6, 23, 0.9),
			rgba(2, 6, 23, 0.9)),
		url("/assets/img/form-bg.png");
	/* troque a imagem */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* CONTAINER */
.cta-form .container {
	position: relative;
	z-index: 2;
	max-width: 1000px;
}

/* BADGE */
.cta-badge {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 999px;
	background: rgba(167, 0, 16, 0.18);
	color: #fecaca;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 22px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* TÍTULO */
.cta-form h2 {
	font-size: 44px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 14px;
}

/* SUBTÍTULO */
.cta-subtitle {
	font-size: 18px;
	color: #cbd5f5;
	margin-bottom: 60px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* CARD */
.form-card {
	background: linear-gradient(180deg,
			rgba(15, 23, 42, 0.95),
			rgba(2, 6, 23, 0.95));
	border-radius: 22px;
	padding: 54px;
	max-width: 620px;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

/* FORM */
.form-group label {
	font-weight: 600;
	color: #e5e7eb;
	margin-bottom: 6px;
}

.form-group input {
	width: 100%;
	padding: 16px 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-size: 16px;
	outline: none;
	transition: all 0.3s ease;
}

.form-group input::placeholder {
	color: #94a3b8;
}

.form-group input:focus {
	border-color: #a70010;
	box-shadow: 0 0 0 3px rgba(167, 0, 16, 0.35);
	background: rgba(255, 255, 255, 0.08);
}

/* INFO */
.form-group small {
	color: #94a3b8;
	font-size: 13px;
}

/* BOTÃO */
.btn-whatsapp {
	width: 100%;
	background: linear-gradient(135deg, #25d366, #1ea75a);
	color: #ffffff;
	border: none;
	padding: 18px;
	border-radius: 14px;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	margin-top: 18px;
	transition: all 0.3s ease;
	box-shadow: 0 15px 40px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 60px rgba(37, 211, 102, 0.6);
}

/* TEXTO DE SEGURANÇA */
.form-info {
	font-size: 13px;
	color: #9ca3af;
	text-align: center;
	margin-top: 16px;
}

/* DIVISOR */
.form-card hr {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	margin: 44px 0;
}

/* PROVA SOCIAL */
.form-proof p {
	font-size: 14px;
	color: #cbd5f5;
	margin-bottom: 20px;
	text-align: center;
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	text-align: center;
}

.proof-grid strong {
	display: block;
	font-size: 26px;
	font-weight: 800;
	color: #ffffff;
}

.proof-grid span {
	font-size: 13px;
	color: #94a3b8;
}

/* RESPONSIVO */
@media (max-width: 768px) {
	.cta-form {
		padding: 90px 20px;
	}

	.cta-form h2 {
		font-size: 32px;
	}

	.cta-subtitle {
		font-size: 16px;
	}

	.form-card {
		padding: 34px 24px;
	}

	.proof-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* =========================
                           COMO FUNCIONA – PREMIUM
                        ========================= */

.section {
	position: relative;
	padding: 120px 20px;
	background: linear-gradient(180deg,
			#ffffff 0%,
			#f8fafc 100%);
}

/* TÍTULO */
.section h2 {
	font-size: 40px;
	font-weight: 800;
	color: #020617;
	margin-bottom: 60px;
}

/* GRID */
.section .row {
	justify-content: center;
}

/* CARD */
.feature {
	position: relative;
	background: #ffffff;
	border-radius: 20px;
	padding: 48px 32px;
	height: 100%;
	border: 1px solid #e5e7eb;
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
	transition: all 0.35s ease;
	text-align: center;
}

/* HOVER */
.feature:hover {
	transform: translateY(-6px);
	box-shadow: 0 30px 70px rgba(2, 6, 23, 0.15);
	border-color: #a70010;
}

/* ÍCONE */
.feature i {
	font-size: 48px;
	color: #a70010;
	margin-bottom: 20px;
	display: inline-block;
}

/* TÍTULO DO PASSO */
.feature h5 {
	font-size: 20px;
	font-weight: 700;
	color: #020617;
	margin-bottom: 12px;
}

/* TEXTO */
.feature p {
	font-size: 15px;
	color: #475569;
	line-height: 1.7;
	margin: 0;
}

/* NUMERAÇÃO (visual) */
.feature::before {
	content: "";
	position: absolute;
	top: 22px;
	right: 22px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(167, 0, 16, 0.1);
	border: 2px solid rgba(167, 0, 16, 0.35);
}

/* RESPONSIVO */
@media (max-width: 992px) {
	.section h2 {
		font-size: 32px;
		margin-bottom: 50px;
	}

	.feature {
		padding: 40px 26px;
	}
}

@media (max-width: 768px) {
	.section {
		padding: 80px 20px;
	}

	.section h2 {
		font-size: 28px;
	}

	.feature i {
		font-size: 42px;
	}
}

/* =========================
   FUNCIONALIDADES – PREMIUM
========================= */

.section.bg-light {
	position: relative;
	padding: 120px 20px;
	background: linear-gradient(180deg,
			#f8fafc 0%,
			#eef2f7 100%);
}

/* TÍTULO */
.section.bg-light h2 {
	font-size: 40px;
	font-weight: 800;
	color: #020617;
	margin-bottom: 60px;
}

/* GRID */
.section.bg-light .row {
	justify-content: center;
}

/* CARD FUNCIONALIDADE */
.section.bg-light .feature {
	background: #ffffff;
	border-radius: 18px;
	padding: 42px 24px;
	height: 100%;
	border: 1px solid #e5e7eb;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
	font-size: 16px;
	font-weight: 600;
	color: #020617;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

/* DETALHE SUPERIOR */
.section.bg-light .feature::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 4px;
	width: 100%;
	background: linear-gradient(90deg,
			#a70010,
			#77040e);
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* HOVER */
.section.bg-light .feature:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 70px rgba(2, 6, 23, 0.15);
	border-color: rgba(167, 0, 16, 0.35);
}

.section.bg-light .feature:hover::before {
	opacity: 1;
}

/* RESPONSIVO */
@media (max-width: 992px) {
	.section.bg-light h2 {
		font-size: 32px;
	}

	.section.bg-light .feature {
		padding: 36px 20px;
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.section.bg-light {
		padding: 80px 20px;
	}

	.section.bg-light h2 {
		font-size: 28px;
		margin-bottom: 40px;
	}
}

/* =========================
   DEPOIMENTOS – PROVA SOCIAL
========================= */

.section.testimonials {
	position: relative;
	padding: 120px 20px;
	background: linear-gradient(180deg,
			#020617 0%,
			#0f172a 100%);
	overflow: hidden;
}

/* TÍTULO */
.section.testimonials h2 {
	font-size: 40px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 60px;
}

/* GRID */
.section.testimonials .row {
	justify-content: center;
}

/* CARD */
.testimonial-card {
	position: relative;
	background: linear-gradient(180deg,
			rgba(15, 23, 42, 0.95),
			rgba(2, 6, 23, 0.95));
	border-radius: 22px;
	padding: 42px 32px;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
	transition: all 0.35s ease;
}

/* HOVER */
.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.75);
	border-color: rgba(167, 0, 16, 0.6);
}

/* ASPAS */
.testimonial-card::before {
	content: "“";
	position: absolute;
	top: 18px;
	left: 24px;
	font-size: 80px;
	font-weight: 800;
	color: rgba(167, 0, 16, 0.25);
	line-height: 1;
}

/* TEXTO */
.testimonial-card p {
	font-size: 16px;
	line-height: 1.7;
	color: #e5e7eb;
	margin-bottom: 26px;
	position: relative;
	z-index: 2;
}

/* AUTOR */
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* FOTO */
.testimonial-author img {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(167, 0, 16, 0.6);
}

/* NOME */
.testimonial-author strong {
	display: block;
	font-size: 15px;
	color: #ffffff;
	font-weight: 700;
}

/* CARGO / CIDADE */
.testimonial-author span {
	font-size: 13px;
	color: #94a3b8;
}

/* RESPONSIVO */
@media (max-width: 992px) {
	.section.testimonials h2 {
		font-size: 32px;
	}

	.testimonial-card {
		padding: 36px 26px;
	}
}

@media (max-width: 768px) {
	.section.testimonials {
		padding: 80px 20px;
	}

	.section.testimonials h2 {
		font-size: 28px;
		margin-bottom: 40px;
	}
}

/* =========================
   FAQ – PERGUNTAS FREQUENTES
========================= */

.section {
	position: relative;
	padding: 120px 20px;
	background: linear-gradient(180deg,
			#ffffff 0%,
			#f8fafc 100%);
}

/* TÍTULO */
.section h2 {
	font-size: 40px;
	font-weight: 800;
	color: #020617;
	margin-bottom: 50px;
}

/* ACCORDION */
.accordion {
	max-width: 820px;
	margin: 0 auto;
}

/* ITEM */
.accordion-item {
	background: #ffffff;
	border-radius: 16px;
	margin-bottom: 18px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}

/* BOTÃO */
.accordion-button {
	font-size: 16px;
	font-weight: 600;
	color: #020617;
	background: #ffffff;
	padding: 22px 26px;
	border: none;
	box-shadow: none;
	transition: all 0.3s ease;
}

/* SETA */
.accordion-button::after {
	background-size: 16px;
	filter: brightness(0.4);
}

/* HOVER */
.accordion-button:hover {
	background: #f1f5f9;
}

/* ATIVO */
.accordion-button:not(.collapsed) {
	background: linear-gradient(90deg,
			rgba(167, 0, 16, 0.1),
			rgba(167, 0, 16, 0.03));
	color: #020617;
	font-weight: 700;
}

/* CORPO */
.accordion-body {
	padding: 22px 26px;
	font-size: 15px;
	line-height: 1.7;
	color: #475569;
	background: #ffffff;
}

/* RESPONSIVO */
@media (max-width: 992px) {
	.section h2 {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.section {
		padding: 80px 20px;
	}

	.section h2 {
		font-size: 28px;
		margin-bottom: 40px;
	}

	.accordion-button {
		font-size: 15px;
		padding: 20px 22px;
	}

	.accordion-body {
		padding: 20px 22px;
	}
}

/* =========================
   FOOTER – INSTITUCIONAL
========================= */

footer {
	position: relative;
	background: linear-gradient(180deg,
			#020617 0%,
			#000000 100%);
	padding: 80px 20px 40px;
	color: #cbd5f5;
}

/* GRID */
footer .container {
	max-width: 1140px;
}

/* TÍTULOS */
footer h5 {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 18px;
}

/* TEXTO */
footer p {
	font-size: 14px;
	line-height: 1.7;
	color: #94a3b8;
	margin-bottom: 0;
}

/* LINKS */
footer a {
	font-size: 14px;
	color: #94a3b8;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 10px;
	transition: all 0.25s ease;
}

footer a:hover {
	color: #ffffff;
	transform: translateX(4px);
}

/* LISTAS */
footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* SOCIAL */
.footer-social {
	display: flex;
	gap: 14px;
	margin-top: 18px;
}

.footer-social a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 16px;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: #a70010;
	transform: translateY(-4px);
}

/* DIVISOR */
.footer-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin: 50px 0 25px;
}

/* COPYRIGHT */
.footer-copy {
	font-size: 13px;
	color: #64748b;
	text-align: center;
}

/* RESPONSIVO */
@media (max-width: 992px) {
	footer {
		padding: 70px 20px 35px;
	}
}

@media (max-width: 768px) {
	footer {
		text-align: center;
	}

	.footer-social {
		justify-content: center;
	}

	footer a:hover {
		transform: none;
	}
}

/* =========================
   FOOTER – CAMPANHA AZUL
========================= */

.footer-premium {
	--azul-header: #0b1c2d;

	background: linear-gradient(180deg,
			var(--azul-header) 0%,
			#050e18 100%);
	color: #e5e7eb;
	padding: 80px 0 40px;
	font-size: 14px;
}

/* CONTAINER */
.footer-premium .container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ===== TOPO ===== */
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 48px;
	align-items: flex-start;
}

/* BRAND */
.footer-brand img {
	max-width: 357px;
	margin-bottom: 18px;
}

.footer-brand p {
	color: #cbd5f5;
	line-height: 1.7;
	max-width: 420px;
}

/* NAVEGAÇÃO */
.footer-nav h6,
.footer-social h6 {
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 16px;
}

.footer-nav a {
	display: block;
	color: #cbd5f5;
	margin-bottom: 10px;
	text-decoration: none;
	transition: 0.25s ease;
}

.footer-nav a:hover {
	color: #ffffff;
	transform: translateX(6px);
}

/* SOCIAL */
.social-icons {
	display: flex;
	gap: 14px;
}

.social-icons a {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 16px;
	transition: 0.3s ease;
}

.social-icons a:hover {
	background: #2563eb;
	transform: translateY(-4px);
}

/* ===== DIVISOR ===== */
.footer-divider {
	margin: 60px 0 40px;
	border-color: rgba(255, 255, 255, 0.12);
}

/* ===== TRANSPARÊNCIA ===== */
.footer-transparency {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	padding: 32px;
	margin-bottom: 60px;
}

.footer-transparency h5 {
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
}

.footer-transparency p {
	color: #e2e8f0;
	line-height: 1.7;
}

/* ===== BASE ===== */
.footer-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: flex-start;
}

.footer-bottom h6 {
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 12px;
}

.footer-bottom p {
	color: #cbd5f5;
	margin-bottom: 6px;
}

/* CONTATO */
.footer-contact .copyright {
	margin-top: 18px;
	font-size: 13px;
	color: #94a3b8;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
	.footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-bottom {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.footer-brand p {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.social-icons {
		justify-content: center;
	}

	.footer-premium {
		text-align: center;
	}
}

/* =========================
   FOOTER – MOBILE CENTRALIZADO
========================= */

@media (max-width: 768px) {

	.footer-premium {
		text-align: center;
	}

	/* TOPO */
	.footer-top {
		justify-items: center;
		text-align: center;
	}

	.footer-brand,
	.footer-nav,
	.footer-social {
		align-items: center;
		text-align: center;
	}

	.footer-nav a {
		transform: none;
	}

	/* SOCIAL */
	.social-icons {
		justify-content: center;
	}

	/* TRANSPARÊNCIA */
	.footer-transparency {
		text-align: center;
	}

	/* BASE */
	.footer-bottom {
		justify-items: center;
		text-align: center;
	}

	.footer-bottom div {
		align-items: center;
		text-align: center;
	}
}

/* =========================
   HEADER / NAVBAR PREMIUM
========================= */

.navbar {
	background: rgba(2, 6, 23, 0.95);
	backdrop-filter: blur(10px);
	padding: 14px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

/* LOGO */
.navbar-brand img {
	width: 215px;
	height: auto;
}

/* BOTÕES */
.navbar-actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* CTA PRINCIPAL */
.btn-cta-header {
	padding: 10px 24px;
	border-radius: 999px;
	background: linear-gradient(135deg, #a70010, #77040e);
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(180, 0, 0, 0.45);
	white-space: nowrap;
}

.btn-cta-header:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(180, 0, 0, 0.6);
	color: #fff;
}

/* BOTÃO SECUNDÁRIO */
.btn-outline-header {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .35);
	box-shadow: none;
}

.btn-outline-header:hover {
	background: rgba(255, 255, 255, .1);
}

/* =========================
   MENU HAMBÚRGUER
========================= */

.navbar-toggler {
	border: none;
	padding: 6px 10px;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler-icon {
	filter: brightness(1.8);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

	.navbar-collapse {
		background: rgba(2, 6, 23, 0.98);
		border-radius: 16px;
		padding: 20px;
		margin-top: 16px;
		box-shadow: 0 20px 50px rgba(0, 0, 0, .55);
	}

	.navbar-actions {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}

	.navbar-actions a {
		width: 100%;
		text-align: center;
		padding: 14px;
	}
}

.texto-esquerda {
	text-align: left;
}
.hero-section {
    width: 100%;
}

/* Imagem ocupa o hero inteiro */
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Overlay escuro para leitura */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 6, 23, 0.65),
        rgba(15, 23, 42, 0.65)
    );
    z-index: 2;
}

/* Conteúdo acima de tudo */
.hero-content {
    z-index: 3;
}
