:root {
	--background: #f1f1f1;
	--primary: #AADB1E;
	--secondary: #003B49;
	--black: #09090a;
	--white: #fff;
	--white-ice: #f1f1f1;
	--radius: 8px;
	--shadow: 0 4px 24px rgba(0, 59, 73, 0.1);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

::-webkit-scrollbar {
	width: 6px;
	height: 0;
}

::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 3px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

html {
	background: var(--background);
	scroll-behavior: smooth;
}

body {
	font-family: 'Red Hat Display', sans-serif;
	color: var(--secondary);
	margin: 0;
}

blockquote, body, dd, dl, dt, fieldset, figure,
h1, h2, h3, h4, h5, h6, hr, html, iframe, legend,
li, ol, p, pre, textarea, ul {
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	line-height: 100%;
}

a {
	text-decoration: none;
}

a, button {
	cursor: pointer;
	transition: var(--transition);
}

mark {
	background-color: transparent;
}

img {
	max-width: 100%;
	height: auto;
}

ul {
	padding-left: 30px;
}

ul li {
	font-size: 20px;
	line-height: 36px;
}

b {
	font-weight: 800;
}


/* ─── Containers ─────────────────────────────────── */

.container-fluid {
	width: 100%;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 1200px) {
	.container-fluid {
		max-width: 90%;
	}
}


/* ─── Utility ────────────────────────────────────── */

.color-primary    { color: var(--primary); }
.color-secondary  { color: var(--secondary); }
.color-white      { color: var(--white); }
.color-white-ice  { color: var(--white-ice); }

.bg-primary   { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }

.bg-natural-kraft {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

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


/* ─── Typography ─────────────────────────────────── */

.title-main {
	font-size: 60px;
	letter-spacing: -1px;
}

.title-main mark {
	font-size: 70px;
	display: block;
	letter-spacing: -2px;
}

.text-main {
	font-size: 22px;
	line-height: 36px;
}


/* ─── Layout ─────────────────────────────────────── */

.flex-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.flex-center {
	display: flex;
	align-items: center;
}

.group-infos {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

@media (max-width: 992px) {
	.flex-group {
		display: flex;
		flex-direction: column;
		text-align: center;
	}

	.group-infos {
		align-items: center;
	}

	.title-main {
		font-size: 40px;
	}

	.title-main mark {
		font-size: 50px;
	}

	.text-main {
		font-size: 18px;
		line-height: 30px;
	}
}


/* ─── Buttons ────────────────────────────────────── */

.button {
	background: transparent;
	border-width: 2px;
	border-style: solid;
	text-align: center;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	border-radius: 50px;
	font-family: 'Red Hat Display', sans-serif;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.button-md {
	padding: 11px 32px;
	font-size: 15px;
}

.button-primary {
	color: #fff;
	border-color: var(--primary);
}

.button-primary:hover {
	background-color: var(--primary);
	color: var(--secondary);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(170, 219, 30, 0.35);
}

.button-secondary {
	color: var(--secondary);
	border-color: var(--primary);
}

.button-secondary:hover {
	background-color: var(--primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(170, 219, 30, 0.35);
}


/* ─── Scroll animations ──────────────────────────── */

.fade-up {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }


/* ─── Header ─────────────────────────────────────── */

.header {
	position: fixed;
	padding: 14px 0;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	z-index: 9999;
	transition: background 0.35s ease, box-shadow 0.35s ease;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(0, 59, 73, 0.18);
}

.header-fixed,
.force-header-fixed {
	background: rgba(0, 59, 73, 0.96) !important;
	backdrop-filter: blur(20px) !important;
	-webkit-backdrop-filter: blur(20px) !important;
	border-bottom-color: rgba(255, 255, 255, 0.07);
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.18);
}

.header-flex {
	display: grid;
	grid-template-columns: max-content 1fr max-content;
	gap: 30px;
	align-items: center;
}


/* ─── Menu ───────────────────────────────────────── */

.header-menu-open {
	display: block !important;
}

.menu-list {
	display: flex;
	gap: 32px;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
}

.menu-list a {
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	position: relative;
	padding-bottom: 2px;
}

.menu-list a::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	border-radius: 2px;
	transition: width 0.3s ease;
}

.menu-list a:hover {
	color: var(--primary);
}

.menu-list a:hover::after {
	width: 100%;
}

.menu-button {
	display: none;
	background: transparent;
	border: none;
	padding: 4px;
}

.menu-button svg line {
	stroke: var(--primary);
}

.menu-button-access {
	display: none;
}

@media (max-width: 992px) {
	.header-flex {
		display: flex;
		justify-content: space-between;
	}

	.header-menu {
		position: absolute;
		display: none;
		top: 85px;
		left: 0;
		width: 100%;
		padding: 40px;
		background: rgba(0, 59, 73, 0.97);
		backdrop-filter: blur(24px);
		-webkit-backdrop-filter: blur(24px);
		border-top: 1px solid rgba(170, 219, 30, 0.2);
	}

	.menu-list {
		flex-direction: column;
		gap: 36px;
		align-items: center;
	}

	.menu-button {
		display: block;
	}
}

@media (max-width: 600px) {
	.menu-button {
		position: absolute;
		top: 28px;
		left: 28px;
	}

	.header-flex {
		justify-content: center;
	}

	.header-button-access {
		display: none;
	}

	.menu-button-access {
		display: block;
		margin-top: 10px;
		width: 100% !important;
		justify-content: center;
	}
}


/* ─── Cover / Hero ───────────────────────────────── */

.cover {
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	display: flex;
	align-items: center;
	position: relative;
}

.cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 59, 73, 0.55) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.cover .container {
	position: relative;
	z-index: 1;
}

.cover-infos {
	max-width: 380px;
}

.cover-infos h1 {
	font-size: 80px;
	color: var(--primary);
	font-weight: 300;
	letter-spacing: -3px;
	line-height: 0.95;
}

.cover-infos p {
	font-size: 26px;
	color: #fff;
	line-height: 1.45;
	font-weight: 300;
}

@media (max-width: 992px) {
	.cover-infos {
		max-width: 90%;
		margin: 0 auto;
		text-align: center;
	}
}


/* ─── Sections ───────────────────────────────────── */

.section-spacing {
	padding: 80px 0;
}

.section-about {
	padding-top: 80px;
	padding-bottom: 150px;
}

.section-generators {
	padding-top: 40px;
	padding-bottom: 80px;
}

.generators-img {
	position: relative;
	text-align: center;
	top: 30px;
	margin-top: 50px;
	margin-bottom: 30px;
}

.generators-img > img {
	margin-top: -120px;
	margin-bottom: -20px;
	filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.22));
}

.generators-img .phone-frame {
	margin-top: -120px;
	margin-bottom: -20px;
}

.section-colectors {
	padding-top: 40px;
	padding-bottom: 40px;
}

.section-download {
	padding: 80px 0;
}

.section-download .download__img {
	max-width: 200px;
}

@media (max-width: 992px) {
	.generators-img > img {
		max-width: 230px;
	}

	.generators-img .phone-frame {
		width: 230px;
	}
}


/* ─── Molduras das telas dos apps ────────────────── */

.phone-frame {
	display: inline-block;
	width: 300px;
	max-width: 100%;
	padding: 12px;
	background: #ffffff;
	border-radius: 54px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.phone-frame img {
	display: block;
	width: 100%;
	border-radius: 42px;
}

.browser-frame {
	display: inline-block;
	width: 100%;
	max-width: 640px;
	position: relative;
	padding: 34px 10px 10px;
	background: #06222b;
	border-radius: 14px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.browser-frame::before {
	content: '';
	position: absolute;
	top: 13px;
	left: 18px;
	width: 44px;
	height: 8px;
	background:
		radial-gradient(circle 4px at 4px 4px, #ff5f57 98%, transparent),
		radial-gradient(circle 4px at 22px 4px, #febc2e 98%, transparent),
		radial-gradient(circle 4px at 40px 4px, #28c840 98%, transparent);
}

.browser-frame img {
	display: block;
	width: 100%;
	border-radius: 6px;
}


/* ─── WhatsApp button ────────────────────────────── */

.whatsapp-button {
	z-index: 500;
	display: flex;
	bottom: 38px;
	position: fixed;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #04d361;
	right: 28px;
	box-shadow: 0 6px 24px rgba(4, 211, 97, 0.42);
	transition: var(--transition);
}

.whatsapp-button:hover {
	transform: scale(1.1) translateY(-2px);
	box-shadow: 0 10px 32px rgba(4, 211, 97, 0.52);
}

.whatsapp-button img {
	width: 28px;
}


/* ─── Page covers (inner pages) ──────────────────── */

.page-cover {
	width: 100%;
	min-height: 850px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	display: flex;
	align-items: center;
	padding-top: 120px;
	padding-bottom: 80px;
	position: relative;
}

.page-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 59, 73, 0.68) 0%, rgba(0, 0, 0, 0.28) 100%);
}

.page-cover .container {
	position: relative;
	z-index: 1;
}

.page-cover-infos {
	max-width: 850px;
}

.page-content {
	max-height: 600px;
	overflow: auto;
}

@media (max-width: 992px) {
	.page-cover-infos {
		max-width: 100%;
	}

	.page-content {
		max-height: none !important;
		overflow: hidden !important;
	}
}


/* ─── Access page ────────────────────────────────── */

.page-access {
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.access-options {
	min-height: 100vh;
	width: 100%;
	display: flex;
}

.access-option {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: background 0.4s ease;
	position: relative;
	padding: 40px;
	background: var(--background);
}

.access-option:hover {
	background: rgba(170, 219, 30, 0.07);
}

.access-option + .access-option {
	border-left: 2px solid var(--primary);
}

.access-option:hover .access-infos {
	transform: scale(1.06);
}

.access-infos {
	display: flex;
	flex-direction: column;
	gap: 28px;
	align-items: center;
	z-index: 2;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
}

.access-infos img {
	width: 280px;
	max-width: 100%;
}

.access-infos h3 {
	font-size: 32px;
	color: var(--secondary);
	font-weight: 400;
}

.access-infos p {
	max-width: 340px;
	font-size: 15px;
	line-height: 24px;
	color: var(--secondary);
	opacity: 0.72;
}

@media (max-width: 992px) {
	.page-access {
		display: block;
	}

	.access-options {
		flex-direction: column;
		height: auto;
		min-height: auto;
		padding-top: 100px;
	}

	.access-infos h3 {
		font-size: 26px;
	}

	.access-option {
		height: auto;
		padding: 60px 32px;
	}

	.access-option + .access-option {
		border-left: none;
		border-top: 2px solid var(--primary);
	}

	.access-option:hover .access-infos {
		transform: none;
	}
}


/* ─── Funcionalidades cards ──────────────────────── */

.funcionalidades-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	margin-bottom: 20px;
}

.func-card {
	background: var(--white);
	border: 1px solid rgba(0, 59, 73, 0.09);
	border-radius: var(--radius);
	padding: 18px 20px;
	transition: var(--transition);
}

.func-card:hover {
	border-color: var(--primary);
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.func-card h3 {
	font-size: 14px;
	margin-bottom: 5px;
	color: var(--secondary);
	font-weight: 600;
}

.func-card p {
	font-size: 13px;
	color: var(--secondary);
	opacity: 0.7;
	line-height: 1.55;
}

.funcionalidades-grid.on-dark .func-card {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.14);
}

.funcionalidades-grid.on-dark .func-card:hover {
	border-color: var(--primary);
	background: rgba(255, 255, 255, 0.11);
}

.funcionalidades-grid.on-dark .func-card h3,
.funcionalidades-grid.on-dark .func-card p {
	color: var(--white);
	opacity: 1;
}

.funcionalidades-grid.on-dark .func-card p {
	opacity: 0.75;
}

@media (max-width: 992px) {
	.funcionalidades-grid {
		grid-template-columns: 1fr;
		text-align: left;
	}
}


/* ─── Footer ─────────────────────────────────────── */

.footer {
	padding: 32px 0;
}

.copyright {
	font-size: 13px;
	color: var(--white-ice);
	opacity: 0.65;
}

.footer-left {
	gap: 18px;
}

.footer-nav {
	display: flex;
	gap: 24px;
	justify-content: flex-end;
}

.footer-nav a {
	color: var(--white-ice);
	font-size: 14px;
	opacity: 0.65;
}

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

@media (max-width: 992px) {
	.footer-left {
		display: flex;
		flex-direction: column;
	}

	.footer-nav {
		justify-content: center;
	}

	.flex-group.footer-grid {
		gap: 20px;
		text-align: center;
	}
}


/* ─── Privacy page ───────────────────────────────── */

.privacy-content {
	color: #fff;
}

.privacy-content h1,
.privacy-content h2 {
	font-weight: 600;
	margin-bottom: 12px;
	margin-top: 32px;
}

.privacy-content h1 {
	font-size: 42px;
	margin-top: 0;
}

.privacy-content h2 {
	font-size: 22px;
}

.privacy-content p {
	font-size: 16px;
	line-height: 1.7;
	opacity: 0.88;
	margin-bottom: 12px;
}

.privacy-content a {
	color: var(--primary);
	text-decoration: underline;
}
