:root {
	--green: #a1ec2f;
	--dark-bg: #20284e;
	--card-bg: #2b335d;
	--text-light: #f2f3f8;
	--text-gray: #ffffff;

	--bg-main: #20284e;
	--bg-soft: #242d57;
	--bg-card: #2b335d;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}

html {
	scroll-behavior: smooth;
}
body {
	background: var(--dark-bg);
	color: var(--text-light);
	overflow-x: hidden;
}
/* ===== HEADER ===== */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(14, 18, 37, 0.9);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	z-index: 10;
}

.header-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0.8rem 0.5rem; /* logo agora alinhada com o footer */
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header img {
	width: 55px;
}

nav a {
	margin-left: 2rem;
	color: var(--text-light);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s;
}

nav a:hover {
	color: var(--green);
}

/* ===== HERO ===== */
.hero {
	min-height: 100vh;
	padding: 9rem 2rem 6rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
	gap: 2rem;
}

@media (max-width: 900px) {
	.hero {
		margin-top: 3rem;
	}
}

.hero-text {
	flex: 1;
	max-width: 540px;
}

.hero-text h1 {
	font-size: 3.2rem;
	font-weight: 800;
	color: var(--green);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.hero-text span {
	color: #fff;
}

.hero-text p {
	font-size: 1.1rem;
	color: var(--text-gray);
	margin-bottom: 2rem;
	line-height: 1.6;
}

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

.hero-buttons a {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-primary {
	background: var(--green);
	color: var(--dark-bg);

	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
}

.btn-primary:hover {
	background: #b6ff5f;
	transform: translateY(-1px);
}

.btn-outline {
	border: 2px solid var(--green);
	color: var(--green);
}

.btn-outline:hover {
	background: var(--green);
	color: var(--dark-bg);
	transform: translateY(-2px);
}

/* ===== MOCKUPS ===== */
.hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
}

.mockup-container {
	display: flex;
	gap: 2rem;
	perspective: 1200px;
	justify-content: center;
	align-items: center;
}

.mockup {
	width: 260px;
	height: 540px;
	background: linear-gradient(145deg, #1a1f3a, #0b0e1c);
	border-radius: 36px;
	box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5),
		inset 0 2px 5px rgba(255, 255, 255, 0.1);
	overflow: hidden;
	border: 8px solid #1f2238;
	position: relative;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mockup::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 6px;
	background: #444a6b;
	border-radius: 3px;
}

.mockup-left {
	transform: rotateY(20deg) translateY(20px);
	opacity: 0.9;
}
.mockup-center {
	transform: scale(1.05);
	z-index: 2;
}
.mockup-right {
	transform: rotateY(-20deg) translateY(20px);
	opacity: 0.9;
}

.mockup:hover {
	transform: rotateY(0deg) scale(1.07);
	box-shadow: 0 40px 70px rgba(0, 0, 0, 0.6);
	z-index: 3;
}

.screen {
	width: 100%;
	height: 100%;
	border-radius: 28px;
	overflow: hidden;
}

.screen img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 20px;
	margin: 5% auto;
	display: block;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.card-cel {
	width: 100%;
	height: 100%;
	overflow: hidden;
	flex: 0 1 300px;
}

.card-cel img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	/* border: 1px solid black; */
}

/* ===== SOBRE ===== */
.about {
	padding: 3rem 2rem;
	text-align: center;
	max-width: 900px;
	margin: auto;
}

.about h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--green);
	margin-bottom: 1.5rem;
}

.about p {
	color: var(--text-gray);
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

/* ===== FEATURES ===== */
.features {
	text-align: center;
	padding: 3rem 2rem;
	max-width: 1100px;
	margin: auto;
}

.features h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--green);
	margin-bottom: 1rem;
}

.features p {
	max-width: 700px;
	margin-top: 10px;
	color: var(--text-gray);
}

.feature-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.feature {
	background: var(--card-bg);
	border-radius: 16px;
	padding: 2rem;
	margin: 1rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(161, 236, 47, 0.4);
	max-width: 700px;
	width: 100%;
}

.feature:hover {
	transform: translateY(-6px);
}

.feature h3 {
	display: flex;
	flex-direction: column; /* ícone acima do texto */
	align-items: center; /* centraliza tudo */
	text-align: center;
	gap: 12px;
	white-space: normal; /* permite quebra de linha natural agora */
}

/* Permite quebra normalmente em telas pequenas para não estourar o layout */
@media (max-width: 520px) {
	.feature h3 {
		white-space: normal; /* permite quebra entre palavras */
		flex-wrap: wrap; /* permite o título ocupar 2 linhas quando necessário */
		gap: 8px;
	}
}

/* Ícones maiores */
.feature h3 svg {
	width: 40px !important; /* você pode ajustar para 50, 60 etc */
	height: 40px !important;
	stroke: var(--green);
}

.feature p {
	color: var(--text-gray);
}

/* ===== CTA ===== */
.cta {
	background: linear-gradient(135deg, #2b335d, #2b335d);
	color: white;
	text-align: center;
	padding: 3rem 2rem;
	border-radius: 24px;
	margin: 3rem 2rem;
}

.cta h2 {
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--green);
}

.cta p {
	max-width: 650px;
	margin: auto;
	color: #bbb;
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.cta blockquote {
	font-style: italic;
	color: #ccc;
	font-size: 1.2rem;
	margin: 1.5rem auto;
	max-width: 600px;
}

/* ===== FOOTER ===== */
footer {
	background: #12142a;
	color: #999;
	font-size: 0.95rem;
	padding: 0.3rem 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	text-align: center;
}

.footer-left {
	justify-self: start;
}

.footer-center {
	justify-self: center;
}

.footer-right {
	justify-self: end;
}

.footer-logo {
	width: 60px;
	opacity: 0.9;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo:hover {
	opacity: 1;
	transform: scale(1.05);
}

.footer-right a,
.footer-center a {
	color: var(--green);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.footer-right a:hover,
.footer-center a:hover {
	color: #b6ff5f;
	text-decoration: underline;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
	.hero {
		flex-direction: column;
		text-align: center;
	}

	header {
		padding: 1rem 2rem;
	}

	.hero-text h1 {
		font-size: 2.4rem;
	}

	.hero-buttons {
		justify-content: center;
		text-align: center;
	}

	.hero-buttons a {
		padding: 0.8rem 1.6rem;
	}

	.mockup-container {
		flex-direction: column;
		gap: 1.5rem;
	}

	.mockup {
		transform: none !important;
		width: 240px;
		height: 500px;
		margin: auto;
	}

	.footer-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 0.8rem;
	}

	.footer-left,
	.footer-center,
	.footer-right {
		justify-self: center;
	}

	.footer-logo {
		margin-bottom: 0.5rem;
	}
}

/* ===== AJUSTE DE SCROLL ===== */
section {
	scroll-margin-top: 60px;
}

/* ===== COMO FUNCIONA ===== */
.how-it-works {
	padding: 3rem 2rem;
	text-align: center;
	max-width: 1100px;
	margin: auto;
}
.how-it-works h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--green);
	margin-bottom: 1rem;
}
.steps {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
}
.step {
	background: var(--card-bg);
	border-radius: 16px;
	padding: 2rem;
	max-width: 300px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.step span {
	font-size: 2rem;
	color: var(--white);
	font-weight: 700;
}
.step h3 {
	margin-top: 1rem;
	color: var(--green);
}
.step p {
	color: var(--text-gray);
	margin-top: 0.5rem;
	font-size: 1rem;
}

/* ===== DEPOIMENTOS ===== */
.testimonials {
	padding: 3rem 2rem;
	text-align: center;
	max-width: 1000px;
	margin: auto;
}
.testimonials h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--green);
	margin-bottom: 3rem;
}
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}
.testimonial {
	background: var(--card-bg);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	color: var(--text-gray);
}
.testimonial p {
	font-style: italic;
	margin-bottom: 1rem;
}
.testimonial h4 {
	color: var(--green);
	font-weight: 700;
}

/* ===== FAQ ===== */
.faq {
	padding: 3rem 2rem;
	max-width: 700px;
	margin: auto;
}
.faq h2 {
	text-align: center;
	color: var(--green);
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 2.5rem;
}
.faq-item {
	background: var(--card-bg);
	border-radius: 14px;
	margin-bottom: 1.2rem;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 1.4rem 1.8rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--text-light);
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	text-align: left;
}

.faq-question:hover {
	color: var(--green);
}
.faq-icon {
	font-size: 1.6rem;
	font-weight: 700;
	transition: transform 0.3s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 1.8rem;
	transition: max-height 0.4s ease, opacity 0.3s ease;
	opacity: 0;
}

.faq-answer p {
	padding: 0rem 0 1.4rem;
	color: var(--text-gray);
	line-height: 1.6;
}

/* Estado ativo */
.faq-item.active .faq-answer {
	max-height: 200px;
	opacity: 1;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg); /* vira um X */
}

/* ===== QUEM SOMOS ===== */
.team {
	background: var(--card-bg);
	padding: 3rem 2rem;
	border-radius: 24px;
	text-align: center;
	max-width: 900px;
	margin: 3rem auto;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
	.team {
		margin: 3rem 2rem;
		padding: 3rem 1.2rem;
	}
}

.team h2 {
	font-size: 2.4rem;
	color: var(--green);
	margin-bottom: 1.2rem;
	font-weight: 800;
}
.team p {
	color: var(--text-gray);
	font-size: 1.1rem;
	line-height: 1.8;
	max-width: 750px;
	margin: auto;
}

/* ===== ESTATÍSTICAS ===== */
.stats {
	text-align: center;
	padding: 3rem 2rem;
	max-width: 1100px;
	margin: auto;
}

.stats h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--green);
	margin-bottom: 1rem;
}

.stats p {
	color: var(--text-gray);
	margin-bottom: 3rem;
	font-size: 1.1rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.stat-card {
	background: var(--card-bg);
	padding: 2.5rem 2rem;
	border-radius: 18px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.stat-card h3 {
	font-size: 4rem;
	font-weight: 800;
	color: var(--green);
	margin-bottom: 0.3rem;
}

.stat-card span {
	color: var(--text-gray);
	font-size: 1.2rem;
	letter-spacing: 0.5px;
	opacity: 0.8;
}

.icon-team {
	width: 64px;
	height: 64px;
	color: var(--green);
}

.how-it-works-accordion {
	padding: 3rem 2rem;
	text-align: center;
	max-width: 1100px;
	margin: auto;
}
.how-it-works-accordion h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--green);
	margin-bottom: 2rem;
}
/* Conteúdo interno alinhado à esquerda */
.how-it-works-steps {
	background: var(--card-bg);
	border-radius: 20px;
	padding: 32px 28px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Header do step */
.step-header {
	justify-content: flex-start;
}

/* Texto do accordion */
.step-content p {
	text-align: left;
	line-height: 1.6;
	/* margin-top: 8px; */
}

.how-it-works-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
}
.step-item {
	position: relative;
	transition: background 0.3s ease;
	padding: 20px 0;
}

.step-item.active {
	background: var(--dark-bg);
	border-radius: 14px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	padding: 8px 16px;
}

.step-item:not(:last-child) {
	margin-bottom: 16px;
}

/* Barra lateral de destaque */
.step-item.active::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0px;
	bottom: 0px;
	width: 4px;
	background: var(--green);
	border-radius: 2px;
}

/* Número ativo */
.step-item.active .step-header span {
	background: var(--green);
	color: var(--dark-bg);
}

.step-header {
	display: flex;
	align-items: center;
	gap: 16px;
	background: none;
	border: none;
	color: inherit;
	cursor: pointer;
	width: 100%;
	text-align: left;
	padding-bottom: 8px;
}
.step-header span {
	background: var(--green);
	color: #20284e;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

.step-content {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
	transform: translateY(-4px);
}

.step-item.active .step-content {
	max-height: 300px;
	opacity: 1;
	transform: translateY(0);
}

#step-image {
	transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
	.how-it-works-container {
		grid-template-columns: 1fr;
	}
}

/* ===== MOCKUP FRONT (SEM EFEITOS) ===== */
.mockup-front {
	transform: none !important;
	opacity: 1 !important;
	width: 280px;
	height: 560px;
	margin: 0 auto;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.mockup-front:hover {
	transform: none;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.how-it-works-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Container igual ao Hero */
.how-it-works-image .mockup-container {
	perspective: 1200px;
}

/* Mockup central, sem rotação */
.mockup-static {
	transform: none !important;
	opacity: 1;
	pointer-events: none; /* evita hover */
}

/* Desliga hover apenas nessa section */
.how-it-works-image .mockup:hover {
	transform: none;
	box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
}
@media (max-width: 900px) {
	.mockup {
		transform: none !important;
	}
}
/* ===== DESKTOP MOCKUP ===== */
.mockup-desktop {
	width: 520px;
	height: 340px;
	background: #111428;
	border-radius: 16px;
	padding: 14px;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
	position: absolute;
	opacity: 0;
	transform: scale(0.96);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Tela do notebook */
.screen-desktop {
	width: 100%;
	height: 100%;
	/* background: #000; */
	border-radius: 10px;
	overflow: hidden;
}

.screen-desktop img {
	width: 100%;
	height: 100%;
	/* object-fit: cover; */
	object-fit: contain; /* 🔑 ESSENCIAL */
	display: block;
}
.mockup-mobile {
	position: absolute;
	opacity: 0;
	transform: scale(0.96);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Ativo */
.mockup.active {
	opacity: 1;
	transform: scale(1);
	position: relative;
}
@media (max-width: 768px) {
	.mockup-desktop {
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
	}
}

/* ===== CARROSSEL CIDADAOS ===== */
.carousel-container {
	position: relative;
	max-width: 320px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel {
	overflow: hidden;
	width: 100%;
}

.carousel-track {
	display: flex;
	transition: transform 0.4s ease-in-out;
}

.carousel-item {
	min-width: 100%;
	display: flex;
	justify-content: center;
	margin-top: -60px;
}

.carousel-item img {
	width: 100%;
	max-height: 560px;
	object-fit: contain;
}

/* Botões */
.carousel-btn {
	position: absolute;
	transform: translateY(-50%);
	color: var(--dark-bg);
	background: var(--green);
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* seta */
.carousel-btn::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 3px solid var(--dark-bg);
	border-right: 3px solid var(--dark-bg);
}

/* esquerda */
.carousel-btn.prev::before {
	transform: rotate(-135deg);
	margin-left: 5px;
}

/* direita */
.carousel-btn.next::before {
	transform: rotate(45deg);
	margin-right: 5px;
}

.carousel-btn:hover {
	opacity: 0.8;
	transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
	left: -60px;
}

.carousel-btn.next {
	right: -60px;
}

/* Mobile */
@media (max-width: 500px) {
	.carousel-btn.prev {
		left: -16px;
	}
	.carousel-btn.next {
		right: -16px;
	}
}

/* ===== LEGENDA DO CARROSSEL ===== */
.carousel-caption {
	margin-top: -50px;
	text-align: center;
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-caption h3 {
	color: var(--green);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.carousel-caption p {
	color: var(--text-gray);
	font-size: 1rem;
	line-height: 1.5;
}

/* ===== INDICADORES DO CARROSSEL ===== */
.carousel-indicators {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}

.carousel-indicators button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.3s ease;
}

.carousel-indicators button.active {
	background: var(--green);
	transform: scale(1.2);
}

.carousel-indicators button:hover {
	transform: scale(1.3);
}

/* ===== PREFEITURAS ===== */
.prefeituras-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
	margin-top: 2rem;
}

.prefeitura-visual img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.prefeitura-content h2 {
	color: var(--green);
	font-size: 2.4rem;
	margin-bottom: 1rem;
}

.prefeitura-content p {
	color: var(--text-gray);
	margin-bottom: 1.5rem;
	text-align: left;
}

.prefeitura-list li {
	display: flex;
	align-items: flex-start;
	padding: 10px 0px;
	text-align: left;
}

.li-icon {
	width: 20px;
	height: 20px;
	fill: var(--green);
	flex-shrink: 0;
	margin-right: 10px;
}

#por-que-sentinela {
	margin-top: 4rem;
}

#por-que-sentinela .section-subtitle {
	max-width: 720px;
	margin: 0 auto 2rem;
	color: var(--text-gray);
	font-size: 1.1rem;
	line-height: 1.6;
}

@media (max-width: 900px) {
	.prefeituras-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/* ===== CTA FINAL SEGMENTADO ===== */
.cta-segmentado {
	text-align: center;
	padding: 4rem 2rem;
	max-width: 1100px;
	margin: 0 auto 4rem;
}

.cta-segmentado h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--green);
	margin-bottom: 0.5rem;
}

.cta-subtitle {
	color: var(--text-gray);
	max-width: 700px;
	margin: 0 auto 3rem;
	font-size: 1.1rem;
	line-height: 1.6;
}

/* Grid dividido */
.cta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
}

/* Card base */
.cta-card {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.3s ease;
}

.cta-card:hover {
	transform: translateY(-6px);
}

/* Títulos */
.cta-card h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--green);
	margin-bottom: 0.8rem;
}

/* Texto */
.cta-card p {
	color: var(--text-gray);
	margin-bottom: 2rem;
	line-height: 1.6;
}

/* Destaque sutil por público */
.cta-cidadao {
	border: 1px solid rgba(161, 236, 47, 0.35);
}

.cta-prefeitura {
	border: 1px solid rgba(161, 236, 47, 0.15);
}

/* Mobile */
@media (max-width: 600px) {
	.cta-segmentado {
		padding: 3rem 1.5rem;
	}
}

/* ===== CONTATO ===== */
.contact {
	padding: 4rem 2rem;
	max-width: 1100px;
	margin: 0 auto 4rem;
	text-align: center;
}

.contact h2 {
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--green);
	margin-bottom: 0.5rem;
}

.contact-subtitle {
	max-width: 720px;
	margin: 0 auto 3rem;
	color: var(--text-gray);
	font-size: 1.1rem;
	line-height: 1.6;
}

/* Grid */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

/* Texto */
.contact-info {
	text-align: left;
}

.contact-info h3 {
	color: var(--green);
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.contact-info p {
	color: var(--text-gray);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.contact-list {
	list-style: none;
	padding: 0;
}

.contact-list li {
	margin-bottom: 10px;
	color: var(--text-gray);
	font-size: 1.05rem;
}

/* Form */
.contact-form {
	background: var(--card-bg);
	border-radius: 20px;
	padding: 2.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border-radius: 12px;
	border: none;
	background: var(--bg-soft);
	color: var(--text-light);
	font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.contact-form button {
	margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
	border: 2px solid transparent;
	outline: none;
	transition: border 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(161, 236, 47, 0.15);
}

/* Mobile */
@media (max-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-info {
		text-align: center;
	}
}
