/* ============================================
   LOGIX — Landing Page Principal
   Paleta: escuro + nuances âmbar/amarelo
   ============================================ */

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

:root {
	--bg-main: #08090b;
	--bg-card: #0f1115;
	--bg-card-hover: #141720;
	--border: rgba(255, 255, 255, 0.07);
	--border-hover: rgba(0, 166, 90, 0.25);
	--text-soft: #8a939f;
	--text-mid: #c4cad3;
	--yellow: #00A65A;
	--yellow-dim: #00874a;
	--yellow-dark: #005a30;
	--gradient: linear-gradient(135deg, #00A65A 0%, #00c874 100%);
	--gradient-v: linear-gradient(180deg, #00A65A 0%, #007a40 100%);
}

/* ---- TIPOGRAFIA BASE ---- */
body {
	background: var(--bg-main);
	color: #fff;
	font-family: "Inter", sans-serif;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1 {
	font-size: clamp(30px, 4.5vw, 60px);
	line-height: 1;
	font-weight: 900;
	letter-spacing: -1.8px;
}

h2 {
	font-size: clamp(25px, 3.5vw, 45px);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -1.5px;
}

h3 {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.3px;
}

p {
	color: var(--text-soft);
	line-height: 1.75;
	font-size: 16px;
}

/* ---- UTILITÁRIOS ---- */
.container {
	width: 100%;
	max-width: 1240px;
	margin: auto;
	padding: 0 24px;
}

section {
	padding: 100px 0;
	position: relative;
}

.gradient-text {
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.yellow {
	color: var(--yellow);
}

.tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid rgba(0, 166, 90, 0.2);
	background: rgba(0, 166, 90, 0.05);
	margin-bottom: 24px;
	font-size: 11px;
	letter-spacing: 1.5px;
	font-weight: 600;
	color: var(--yellow-dim);
	text-transform: uppercase;
}

.tag::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--yellow);
	flex-shrink: 0;
}

.section-header {
	max-width: 760px;
}

.section-header p {
	margin-top: 20px;
	font-size: 17px;
	color: var(--text-mid);
}

/* ---- BOTÕES ---- */
.btn-primary {
	background: var(--gradient);
	color: #08090b;
	padding: 15px 30px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	letter-spacing: 0.3px;
	transition:
		opacity 0.2s,
		transform 0.2s;
}

.btn-primary:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}

.btn-secondary {
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--text-mid);
	padding: 15px 30px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition:
		border-color 0.2s,
		color 0.2s;
}

.btn-secondary:hover {
	border-color: rgba(0, 166, 90, 0.3);
	color: #fff;
}

/* ---- HEADER ---- */
.header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: rgba(8, 9, 11, 0.88);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
}

.logo-text {
	font-size: 22px;
	font-weight: 900;
	letter-spacing: -0.5px;
	color: #fff;
	text-decoration: none;
}

.logo-text span {
	color: var(--yellow);
}

/* menu removido da LP — header só logo + CTA */

/* ---- HERO ---- */
.hero {
	padding-top: 80px;
	padding-bottom: 80px;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 48px;
}

.hero p {
	margin-top: 24px;
	font-size: 17px;
	color: var(--text-mid);
	max-width: 500px;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 14px;
	margin-top: 40px;
	flex-wrap: wrap;
	align-items: center;
}

/* Painel/mockup hero */
.hero-panel {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 6px;
	position: relative;
	overflow: hidden;
	min-height: 340px;
	display: flex;
	align-items: stretch;
}

.hero-panel::after {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	border-radius: 24px;
	border: 1px solid transparent;
	background: var(--gradient) border-box;
	-webkit-mask:
		linear-gradient(#fff 0 0) padding-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: destination-out;
	mask-composite: exclude;
	opacity: 0.35;
	pointer-events: none;
}

.hero-panel img {
	width: 100%;
	max-height: 440px;
	object-fit: cover;
	object-position: center top;
	border-radius: 20px;
	display: block;
}

/* Barra de estatísticas hero */
.hero-stats {
	display: flex;
	gap: 32px;
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--border);
}

.hero-stat strong {
	display: block;
	font-size: 26px;
	font-weight: 900;
	color: #fff;
	letter-spacing: -0.5px;
}

.hero-stat span {
	font-size: 12px;
	color: var(--text-soft);
	margin-top: 2px;
	display: block;
}

/* ---- DIVISÓRIA LOGOS ---- */
.divider-strip {
	padding: 32px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.01);
}

.divider-strip p {
	font-size: 12px;
	letter-spacing: 1px;
	color: var(--text-soft);
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 20px;
}

/* ---- PROBLEMA ---- */
.problem-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 56px;
}

.problem-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 28px 22px;
	transition:
		border-color 0.25s,
		background 0.25s;
}

.problem-card:hover {
	border-color: var(--border-hover);
	background: var(--bg-card-hover);
}

.problem-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(0, 166, 90, 0.08);
	border: 1px solid rgba(0, 166, 90, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 18px;
}

.problem-card h3 {
	font-size: 15px;
	margin-bottom: 10px;
	color: #fff;
}

.problem-card p {
	font-size: 13px;
	line-height: 1.6;
}

/* ---- O QUE É A LOGIX ---- */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 80px;
	margin-top: 60px;
}

.products-stack {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.product-item {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 18px;
	padding: 22px 24px;
	transition: border-color 0.25s;
	cursor: default;
}

.product-item:hover {
	border-color: var(--border-hover);
}

.product-num {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--gradient);
	color: #08090b;
	font-weight: 800;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.product-item h3 {
	font-size: 15px;
	margin-bottom: 6px;
}

.product-item p {
	font-size: 13px;
}

/* ---- COMO FUNCIONA ---- */
.timeline {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	margin-top: 64px;
	position: relative;
}

/* Linha conectora */
.timeline::before {
	content: "";
	position: absolute;
	top: 33px;
	left: 26px;
	right: 26px;
	height: 1px;
	background: linear-gradient(90deg, rgba(0, 166, 90, 0.6), rgba(0, 166, 90, 0.1));
	z-index: 0;
}

.timeline-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 24px 20px;
	position: relative;
	z-index: 1;
	transition: border-color 0.25s;
}

.timeline-card:hover {
	border-color: var(--border-hover);
}

.timeline-number {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #08090b;
	font-weight: 900;
	font-size: 14px;
	margin-bottom: 20px;
}

.timeline-card h3 {
	font-size: 15px;
	margin-bottom: 8px;
}

.timeline-card p {
	font-size: 13px;
}

.timeline-cta {
	text-align: center;
	margin-top: 40px;
	color: var(--text-soft);
	font-size: 15px;
}

.timeline-cta a {
	color: var(--yellow);
	text-decoration: none;
	font-weight: 600;
}

/* ---- PLATAFORMA ---- */
.platform-feature-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 32px 0;
}

.platform-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: var(--text-mid);
}

.platform-feature::before {
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--gradient);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2308090b'%3E%3Cpath d='M13.485 1.929L5.5 9.914 2.515 6.929 1.1 8.343l4.4 4.4 9.4-9.4-1.415-1.414z'/%3E%3C/svg%3E");
	background-size: 10px;
	background-repeat: no-repeat;
	background-position: center;
}

.dashboard-wrap {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 24px;
	overflow: hidden;
	margin-top: 60px;
}

.dashboard-wrap img {
	width: 100%;
	display: block;
}

/* ---- RESULTADOS ---- */
.results-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 56px;
}

.result-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 22px;
	padding: 40px 36px;
	transition: border-color 0.25s;
}

.result-card:hover {
	border-color: var(--border-hover);
}

.result-number {
	font-size: 52px;
	font-weight: 900;
	letter-spacing: -2px;
	line-height: 1;
	margin-bottom: 12px;
}

.result-card p {
	font-size: 14px;
}

/* ---- CTA / FORMULÁRIO ---- */
.cta-block {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 28px;
	padding: 64px;
	position: relative;
	overflow: hidden;
}

/* brilho sutil de fundo */
.cta-block::before {
	content: "";
	position: absolute;
	bottom: -120px;
	right: -120px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 166, 90, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

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

.cta-grid input,
.cta-grid select,
.cta-grid textarea {
	width: 100%;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 16px 18px;
	color: #fff;
	font-size: 14px;
	font-family: "Inter", sans-serif;
	transition: border-color 0.2s;
	outline: none;
}

.cta-grid input:focus,
.cta-grid select:focus,
.cta-grid textarea:focus {
	border-color: rgba(0, 166, 90, 0.35);
}

.cta-grid select option {
	background: #0f1115;
}

.cta-grid textarea {
	min-height: 120px;
	grid-column: span 2;
	resize: vertical;
}

.cta-action {
	margin-top: 24px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.cta-note {
	font-size: 12px;
	color: var(--text-soft);
}

/* ---- FOOTER ---- */
footer {
	border-top: 1px solid var(--border);
	padding: 48px 0;
	margin-top: 80px;
}

.footer-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}

.footer-links {
	display: flex;
	gap: 28px;
}

.footer-links a {
	color: var(--text-soft);
	text-decoration: none;
	font-size: 13px;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: var(--yellow);
}

.footer-copy {
	font-size: 13px;
	color: var(--text-soft);
	margin-top: 24px;
}

.footer-flags {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--text-soft);
}

/* ---- SEÇÕES COM FUNDO FOTOGRÁFICO ---- */
.section-bg {
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

.section-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(8, 9, 11, 0.87);
	z-index: 0;
	pointer-events: none;
}

.section-bg > .container {
	position: relative;
	z-index: 1;
}

/* ---- IMAGEM "QUEM SOMOS" ---- */
.about-img-wrap {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid var(--border);
}

.about-img-wrap img {
	width: 100%;
	display: block;
	object-fit: cover;
	border-radius: 24px;
}

.about-img-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: rgba(8, 9, 11, 0.75);
	backdrop-filter: blur(10px);
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 10px 18px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.badge-flag {
	font-size: 18px;
}

/* ---- CTA — bloco escuro sobre foto da section ---- */
.cta-block {
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

/* ---- RESPONSIVO ---- */
@media (max-width: 1100px) {
	.timeline {
		grid-template-columns: repeat(3, 1fr);
	}
	.timeline::before {
		display: none;
	}
	.problem-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	section {
		padding: 72px 0;
	}

	.hero-grid,
	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.hero-stats {
		flex-wrap: wrap;
		gap: 20px;
	}

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

	.cta-block {
		padding: 40px 28px;
	}

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

	.cta-grid textarea {
		grid-column: span 1;
	}

	nav.menu {
		display: none;
	}

	.footer-content {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.timeline {
		grid-template-columns: 1fr;
	}

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

	h1 {
		letter-spacing: -1.5px;
	}
	h2 {
		letter-spacing: -1px;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ============================================
   FORMULÁRIO DE QUALIFICAÇÃO (logixflash)
   ============================================ */
.cta-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.cta-urgency-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(0, 166, 90, 0.1);
	border: 1px solid rgba(0, 166, 90, 0.3);
	color: #00c874;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 7px 18px;
	border-radius: 50px;
	margin-bottom: 20px;
}
.urgency-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #00A65A;
	animation: blink 1s infinite;
}
@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.3; }
}

.trust-badges {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 32px;
}
.trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.trust-icon {
	width: 40px;
	height: 40px;
	background: rgba(0, 166, 90, 0.08);
	border: 1px solid rgba(0, 166, 90, 0.2);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.trust-icon svg {
	width: 20px;
	height: 20px;
	color: #00A65A;
}
.trust-text-title {
	font-size: 0.82rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}
.trust-text-sub {
	font-size: 0.75rem;
	color: var(--text-soft);
}

/* Form Card */
.lead-form-wrap {
	background: var(--bg-card);
	border: 1px solid rgba(0, 166, 90, 0.2);
	border-radius: 24px;
	padding: 40px 36px;
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
	position: relative;
	overflow: hidden;
}
.lead-form-wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #00A65A, #00c874);
}
.lead-form-title {
	font-size: 1.2rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 4px;
	letter-spacing: -0.3px;
}
.lead-form-sub {
	font-size: 0.82rem;
	color: var(--text-soft);
	margin-bottom: 24px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.form-field {
	position: relative;
	margin-bottom: 12px;
}
.form-field.full {
	grid-column: 1 / -1;
}
.form-field label {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--text-mid);
	margin-bottom: 6px;
	letter-spacing: 0.3px;
}
.form-field input,
.form-field select {
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1.5px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 0.9rem;
	padding: 13px 16px;
	outline: none;
	transition: border-color 0.22s, background 0.22s;
	-webkit-appearance: none;
}
.form-field input::placeholder {
	color: rgba(255, 255, 255, 0.25);
}
.form-field select option {
	background: #0f1115;
	color: #fff;
}
.form-field input:focus,
.form-field select:focus {
	border-color: rgba(0, 166, 90, 0.5);
	background: rgba(0, 166, 90, 0.04);
}

.btn-submit {
	width: 100%;
	background: linear-gradient(135deg, #00A65A, #00c874);
	color: #fff;
	font-family: "Inter", sans-serif;
	font-weight: 800;
	font-size: 0.95rem;
	padding: 16px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 8px;
	transition: transform 0.25s, box-shadow 0.25s;
	box-shadow: 0 8px 28px rgba(0, 166, 90, 0.3);
}
.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 40px rgba(0, 166, 90, 0.45);
}
.btn-submit:disabled {
	opacity: 0.7;
	box-shadow: none;
	transform: none;
	cursor: default;
}
.form-note {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	color: var(--text-soft);
	margin-top: 16px;
}
.form-note svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	color: var(--text-soft);
}

/* ============================================
   VÍDEO EMBED
   ============================================ */
.video-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 */
	border-radius: 18px;
	overflow: hidden;
	flex: 1;
}
.video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 18px;
}

/* garante que o video-wrap dentro do hero-panel preencha o painel */
.hero-panel .video-wrap {
	min-height: 320px;
}

@media (max-width: 900px) {
	.cta-two-col {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.lead-form-wrap {
		padding: 28px 20px;
	}
}
