@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("fontawesome-all.min.css");

:root {
	--bg: #f7f7f1;
	--bg-soft: #edf3e6;
	--surface: #ffffff;
	--surface-alt: #f3f7ef;
	--ink: #173a22;
	--ink-soft: #5f7263;
	--brand: #235d30;
	--brand-dark: #184422;
	--accent: #a8e63f;
	--accent-deep: #91d42c;
	--border: rgba(19, 58, 31, 0.08);
	--shadow: 0 20px 40px rgba(18, 47, 26, 0.12);
	--radius-lg: 28px;
	--radius-md: 22px;
	--radius-sm: 16px;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	background: var(--bg);
	color: var(--ink);
	line-height: 1.6;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

.page-shell {
	overflow-x: hidden;
}

.container {
	width: min(calc(100% - 2rem), var(--container));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	padding: 0.7rem 0;
	background: rgba(24, 68, 34, 0.96);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 3.5rem;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	flex-shrink: 0;
}

.brand-logo {
	height: 2.6rem;
	width: auto;
	filter: drop-shadow(0 6px 14px rgba(145, 212, 44, 0.22));
}

.brand-name {
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #ffffff;
	white-space: nowrap;
}

.brand-name span {
	color: var(--accent);
}

.site-nav ul,
.footer-grid ul,
.feature-list,
.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-nav ul {
	display: flex;
	align-items: center;
	gap: 1.35rem;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.site-nav a {
	position: relative;
	padding: 0.35rem 0;
	transition: color 0.2s ease;
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.1rem;
	height: 2px;
	border-radius: 999px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.site-nav a:hover::after {
	transform: scaleX(1);
}

.site-nav a:hover,
.footer-grid a:hover {
	color: var(--accent);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.85rem 1.4rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-weight: 700;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.button:hover {
	transform: translateY(-1px);
}

.button-primary {
	background: var(--accent);
	color: #173111;
	box-shadow: 0 10px 20px rgba(144, 212, 44, 0.25);
}

.button-primary:hover {
	background: var(--accent-deep);
}

.button-secondary {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.4);
}

.button-secondary:hover {
	background: rgba(255, 255, 255, 0.16);
}

.button-block {
	width: 100%;
}

.compact {
	min-height: 2.25rem;
	padding: 0.55rem 1rem;
	font-size: 0.76rem;
	letter-spacing: 0.01em;
}

.navbar-whatsapp {
	background: rgba(37, 211, 102, 0.16);
	border: 1px solid rgba(37, 211, 102, 0.48);
	color: #ffffff;
	gap: 0.45rem;
}

.whatsapp-icon-image {
	width: 1rem;
	height: 1rem;
	object-fit: contain;
	flex-shrink: 0;
}

.navbar-whatsapp:hover {
	background: rgba(37, 211, 102, 0.28);
	color: #ffffff;
}

.navbar-whatsapp .icon {
	font-size: 0.95rem;
	color: #25d366;
}

.hero-section {
	position: relative;
	background: linear-gradient(135deg, rgba(20, 63, 33, 0.9), rgba(20, 63, 33, 0.45)), url("../../images/hero.png") center/cover no-repeat;
	color: #ffffff;
	padding-top: 4.5rem;
}

.hero-backdrop {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(168, 230, 63, 0.3), transparent 28%);
	pointer-events: none;
}

.hero-grid {
	position: relative;
	min-height: 42rem;
	display: grid;
	align-items: center;
	padding: 4.5rem 0 8rem;
}

.hero-copy {
	max-width: 38rem;
	padding: 2rem 0;
}

.eyebrow {
	display: inline-flex;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(168, 230, 63, 0.16);
	border: 1px solid rgba(168, 230, 63, 0.25);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	font-weight: 800;
	color: #d9f79e;
	margin-bottom: 1.2rem;
}

.eyebrow-dark {
	background: rgba(35, 93, 48, 0.08);
	border-color: rgba(35, 93, 48, 0.08);
	color: #5a7b53;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2 {
	margin: 0;
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.hero-copy h1 {
	font-size: clamp(3rem, 7vw, 5.3rem);
	max-width: 10ch;
}

.hero-copy h1 span,
.section-copy h2 span,
.section-heading h2 span {
	color: var(--accent);
}

.hero-copy p,
.section-copy p,
.section-heading p,
.section-note,
.benefit-card p,
.process-card p,
.contact-copy p,
.site-footer p,
.footer-grid li {
	color: var(--ink-soft);
	font-size: 1rem;
}

.hero-copy p {
	color: rgba(255, 255, 255, 0.82);
	max-width: 35rem;
	margin: 1.3rem 0 0;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 2rem;
}

.hero-stats {
	position: relative;
	margin-top: -3rem;
	padding-bottom: 2.5rem;
	z-index: 1;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 0 0 28px 28px;
	padding: 1.4rem 1.6rem;
	box-shadow: var(--shadow);
}

.stats-grid article {
	text-align: center;
	padding: 0.4rem 0.8rem;
	position: relative;
}

.stats-grid article:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 20%;
	width: 1px;
	height: 60%;
	background: rgba(19, 58, 31, 0.1);
}

.stats-grid strong {
	display: block;
	font-size: 2rem;
	font-weight: 800;
	color: var(--brand);
	line-height: 1;
}

.stats-grid span {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.92rem;
	color: var(--ink-soft);
}

.section {
	padding: 6rem 0;
}

.about-section {
	background: linear-gradient(180deg, rgba(237, 243, 230, 0.58), transparent 35%), var(--bg);
}

.about-grid,
.contact-grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 3.5rem;
	align-items: center;
}

.about-visual {
	position: relative;
	padding-top: 1rem;
}

.about-visual img {
	width: 100%;
	max-width: 28rem;
	aspect-ratio: 0.8;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.badge-card {
	position: absolute;
	right: 1rem;
	top: 0;
	background: var(--brand);
	color: #fff;
	padding: 1rem 1.15rem;
	border-radius: 1.2rem;
	box-shadow: var(--shadow);
	max-width: 9rem;
}

.badge-card strong {
	display: block;
	font-size: 2rem;
	line-height: 1;
	font-weight: 800;
}

.badge-card span {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.8rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.8);
}

.section-copy h2,
.section-heading h2 {
	font-size: clamp(2.3rem, 4vw, 3.45rem);
	margin-bottom: 1rem;
	color: var(--brand-dark);
}

.feature-list {
	display: grid;
	gap: 0.8rem;
	margin: 1.8rem 0 2rem;
}

.feature-list li {
	position: relative;
	padding-left: 1.7rem;
	font-weight: 600;
	color: var(--ink);
}

.feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 6px rgba(168, 230, 63, 0.18);
}

.services-section,
.benefits-section {
	background: var(--bg-soft);
}

.section-heading {
	max-width: 42rem;
	margin-bottom: 2.6rem;
}

.section-heading.centered {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.section-heading.narrow {
	max-width: 34rem;
}

.section-heading.light h2,
.section-heading.light p {
	color: #ffffff;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.service-card,
.portfolio-card,
.benefit-card,
.contact-card {
	background: var(--surface);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow);
}

.service-card {
	padding: 0.6rem;
	position: relative;
	border: 1px solid var(--border);
}

.service-card img {
	width: 100%;
	aspect-ratio: 1.18;
	object-fit: cover;
	border-radius: 1rem;
}

.service-card h3 {
	margin: 0.85rem 0 0.35rem;
	font-size: 1rem;
	line-height: 1.3;
	padding: 0 0.25rem 0.35rem;
	color: var(--brand-dark);
}

.service-index {
	position: absolute;
	top: 0.9rem;
	left: 0.9rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--accent);
	color: var(--brand-dark);
	display: grid;
	place-items: center;
	font-size: 0.75rem;
	font-weight: 800;
	box-shadow: 0 8px 16px rgba(145, 212, 44, 0.28);
}

.section-note {
	text-align: center;
	max-width: 36rem;
	margin: 1.5rem auto 0;
}

.portfolio-section {
	background: #fcfcf8;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.portfolio-card {
	overflow: hidden;
	border-radius: var(--radius-sm);
	background: transparent;
	box-shadow: none;
}

.portfolio-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
}

.portfolio-wide {
	grid-column: span 4;
	height: 18rem;
}

.portfolio-tall {
	grid-column: span 2;
	height: 23rem;
}

.portfolio-wide-small {
	grid-column: span 3;
	height: 18rem;
}

.portfolio-wide-full {
	grid-column: span 4;
	height: 17rem;
}

.process-section {
	background: var(--brand);
	color: #ffffff;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.process-card {
	display: grid;
	grid-template-columns: 6rem 1fr;
	gap: 1rem;
	align-items: center;
	padding: 0.5rem;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-card img {
	width: 100%;
	height: 6rem;
	object-fit: cover;
	border-radius: 1rem;
}

.process-card strong {
	display: block;
	font-size: 1.55rem;
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
	margin-bottom: 0.4rem;
}

.process-card h3 {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.25;
}

.process-card p {
	margin: 0.45rem 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.94rem;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.3rem;
}

.benefit-card {
	padding: 2rem 1.5rem;
	text-align: center;
	border: 1px solid rgba(35, 93, 48, 0.08);
}

.benefit-icon,
.contact-list .icon {
	display: inline-grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: rgba(168, 230, 63, 0.2);
	color: var(--brand);
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.benefit-card h3 {
	margin: 0;
	font-size: 1.1rem;
	color: var(--brand-dark);
}

.benefit-card p {
	margin: 0.7rem 0 0;
}

.contact-section {
	background: #fcfcf8;
}

.contact-copy {
	max-width: 30rem;
}

.contact-list {
	display: grid;
	gap: 1rem;
	margin-top: 1.6rem;
}

.whatsapp-button {
	margin-top: 1.6rem;
	background: #25d366;
	color: #ffffff;
	gap: 0.65rem;
	box-shadow: 0 14px 26px rgba(37, 211, 102, 0.28);
}

.whatsapp-button:hover {
	background: #1fbb59;
}

.whatsapp-button .icon,
.whatsapp-float .icon {
	font-size: 1.1rem;
}

.whatsapp-float-image {
	width: 1.6rem;
	height: 1.6rem;
	object-fit: contain;
}

.contact-list li {
	display: grid;
	grid-template-columns: 3rem 1fr;
	gap: 0.9rem;
	align-items: center;
	color: var(--ink);
	font-weight: 600;
}

.contact-list .icon {
	margin-bottom: 0;
	width: 2.75rem;
	height: 2.75rem;
	font-size: 1rem;
}

.contact-card {
	background: linear-gradient(180deg, #275f31, #1e4f29);
	padding: 1.8rem;
	color: #ffffff;
}

.contact-card form {
	display: grid;
	gap: 1rem;
}

.contact-card label {
	display: grid;
	gap: 0.45rem;
	font-size: 0.92rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
}

.contact-card input,
.contact-card textarea {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0.9rem;
	padding: 0.95rem 1rem;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	resize: vertical;
	outline: none;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

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

.contact-card input:focus,
.contact-card textarea:focus {
	border-color: rgba(168, 230, 63, 0.55);
	background: rgba(255, 255, 255, 0.12);
}

.site-footer {
	background: var(--brand-dark);
	color: rgba(255, 255, 255, 0.8);
	padding: 3.6rem 0 1.4rem;
}

.whatsapp-float {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 25;
	width: 3.75rem;
	height: 3.75rem;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #25d366;
	color: #ffffff;
	box-shadow: 0 18px 30px rgba(37, 211, 102, 0.35);
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-float:hover {
	transform: translateY(-2px);
	background: #1fbb59;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 2rem;
}

.footer-logo {
	height: 2.6rem;
	margin-bottom: 1rem;
}

.footer-grid h3 {
	margin: 0 0 0.9rem;
	font-size: 0.95rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #ffffff;
}

.footer-grid li {
	margin-bottom: 0.5rem;
	color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
	padding-top: 1.4rem;
	margin-top: 1.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

@media screen and (max-width: 1080px) {
	.site-nav {
		display: none;
	}

	.nav-actions {
		margin-left: auto;
	}

	.about-grid,
	.contact-grid,
	.services-grid,
	.benefits-grid,
	.process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-grid,
	.contact-grid {
		gap: 2rem;
	}

	.portfolio-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.portfolio-wide,
	.portfolio-wide-full,
	.portfolio-wide-small,
	.portfolio-tall {
		grid-column: span 2;
	}

	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 760px) {
	.section {
		padding: 4.5rem 0;
	}

	.hero-section {
		padding-top: 1rem;
	}

	.hero-grid {
		min-height: auto;
		padding: 3rem 0 7rem;
	}

	.hero-copy h1 {
		font-size: clamp(2.5rem, 12vw, 4rem);
	}

	.stats-grid,
	.about-grid,
	.contact-grid,
	.services-grid,
	.benefits-grid,
	.process-grid,
	.footer-grid,
	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		border-radius: var(--radius-lg);
	}

	.stats-grid article:not(:last-child)::after {
		display: none;
	}

	.portfolio-wide,
	.portfolio-wide-full,
	.portfolio-wide-small,
	.portfolio-tall {
		grid-column: auto;
		height: 15rem;
	}

	.process-card {
		grid-template-columns: 1fr;
	}

	.process-card img {
		height: 10rem;
	}

	.footer-grid {
		gap: 1.25rem;
	}

	.whatsapp-float {
		right: 1rem;
		bottom: 1rem;
		width: 3.35rem;
		height: 3.35rem;
	}

	.nav-wrap {
		gap: 0.75rem;
	}

	.nav-actions {
		gap: 0.45rem;
	}

	.navbar-whatsapp span:last-child {
		display: none;
	}

	.navbar-whatsapp,
	.button.compact {
		padding-left: 0.85rem;
		padding-right: 0.85rem;
	}

	.brand-logo {
		height: 2rem;
	}

	.brand-name {
		font-size: 0.95rem;
	}

	.about-visual img {
		max-width: none;
	}

	.badge-card {
		right: 0.75rem;
	}
}