/* ─── Variables ─────────────────────────────────────────────────────────────── */
:root {
	/* Greens — forest palette matching mockup */
	--green-900:    #0d2116;
	--green-800:    #12311f;
	--green-700:    #1a4228;
	--green-600:    #1f5233;
	--green-500:    #2d6a4f;
	--green-400:    #40916c;
	--green-300:    #52b788;
	--green-200:    #95d5b2;
	--green-100:    #d8f3dc;
	--green-50:     #f0faf2;

	/* Neutrals */
	--gray-900:     #111827;
	--gray-800:     #1f2937;
	--gray-700:     #374151;
	--gray-400:     #9ca3af;
	--gray-200:     #e5e7eb;
	--gray-100:     #f3f4f6;
	--gray-50:      #f9fafb;

	--white:        #ffffff;
	--text:         #1f2937;
	--text-muted:   #6b7280;

	--font:         'Inter', system-ui, -apple-system, sans-serif;

	--max-w:        1200px;
	--max-w-narrow: 780px;
	--radius:       8px;
	--radius-lg:    14px;
	--radius-xl:    20px;
	--gap:          1.5rem;
	--shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.05);
	--shadow:       0 4px 6px rgba(0,0,0,.07), 0 10px 24px rgba(0,0,0,.08);
	--shadow-lg:    0 8px 16px rgba(0,0,0,.1), 0 24px 48px rgba(0,0,0,.12);
}

/* ─── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font);
	color: var(--text);
	background: var(--white);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Utility ───────────────────────────────────────────────────────────────── */
.container {
	width: 100%;
	max-width: var(--max-w);
	margin-inline: auto;
	padding-inline: 1.5rem;
}
.container--narrow { max-width: var(--max-w-narrow); }

.section { padding: 5rem 0; }
.section--alt { background: var(--gray-50); }

.section-eyebrow {
	display: inline-block;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--green-300);
	margin-bottom: .75rem;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--gray-900); line-height: 1.2; margin-bottom: .75rem; }
.section-title--light { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .625rem 1.375rem;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: .9rem;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
	text-decoration: none;
	white-space: nowrap;
	line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

/* Primary */
.btn--primary { background: var(--green-500); color: var(--white); border-color: var(--green-500); }
.btn--primary:hover { background: var(--green-600); border-color: var(--green-600); box-shadow: 0 4px 16px rgba(45,106,79,.35); color: var(--white); }

/* Outline dark (on light backgrounds) */
.btn--outline-dark { background: transparent; color: var(--green-600); border-color: var(--green-500); }
.btn--outline-dark:hover { background: var(--green-500); color: var(--white); }

/* Outline light (on dark backgrounds) */
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }

/* Hero buttons */
.btn--hero-primary { background: var(--white); color: var(--green-700); border-color: var(--white); }
.btn--hero-primary:hover { background: var(--green-100); border-color: var(--green-100); color: var(--green-700); }
.btn--hero-outline { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.4); backdrop-filter: blur(4px); }
.btn--hero-outline:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.7); color: var(--white); }

/* CTA section buttons */
.btn--cta-primary { background: var(--white); color: var(--green-700); border-color: var(--white); }
.btn--cta-primary:hover { background: var(--green-100); color: var(--green-700); border-color: var(--green-100); }
.btn--cta-whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn--cta-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; color: var(--white); }

/* WhatsApp contact page */
.btn--whatsapp { background: #25d366; color: var(--white); border-color: #25d366; width: 100%; justify-content: center; margin-top: 1.5rem; }
.btn--whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; color: var(--white); }

/* Header CTA */
.btn--header { padding: .5rem 1.125rem; font-size: .85rem; background: var(--green-600); color: var(--white); border-radius: var(--radius); border-color: var(--green-600); }
.btn--header:hover { background: var(--green-700); border-color: var(--green-700); color: var(--white); transform: none; }

/* Sizes */
.btn--lg { padding: .875rem 2rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ─── Header ────────────────────────────────────────────────────────────────── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--white);
	border-bottom: 1px solid var(--gray-200);
	padding: 1rem 0;
	transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.1); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

/* Logo text fallback */
.site-logo {
	display: flex;
	align-items: center;
	gap: .5rem;
	text-decoration: none;
}
.site-logo__icon { flex-shrink: 0; width: 44px; height: 44px; object-fit: contain; }
.site-name {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--green-600);
	letter-spacing: -.02em;
}

/* Nav */
.primary-nav { display: flex; align-items: center; gap: 2.5rem; }
.nav-list { display: flex; align-items: center; gap: 1.75rem; }
.nav-list a {
	font-size: .875rem;
	font-weight: 500;
	color: var(--gray-700);
	transition: color .2s;
	position: relative;
}
.nav-list a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--green-500);
	transform: scaleX(0);
	transition: transform .2s;
	border-radius: 2px;
}
.nav-list a:hover { color: var(--green-600); }
.nav-list a:hover::after,
.nav-list .current-menu-item > a::after { transform: scaleX(1); }
.nav-list .current-menu-item > a { color: var(--green-600); }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .25s; }

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
	display: flex;
	min-height: 620px;
	overflow: hidden;
}

/* Split layout */
.hero--split { flex-direction: row; }

.hero__left {
	flex: 0 0 52%;
	display: flex;
	align-items: center;
	background: var(--green-800);
	padding: 4rem 5% 4rem 8%;
}

.hero__right {
	flex: 0 0 48%;
	position: relative;
	overflow: hidden;
}

.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.hero__content { max-width: 520px; }

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	background: rgba(255,255,255,.12);
	backdrop-filter: blur(6px);
	color: var(--green-200);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .04em;
	padding: .4rem .9rem;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.15);
	margin-bottom: 1.5rem;
}

.hero__title {
	font-size: clamp(2.25rem, 5vw, 3.25rem);
	font-weight: 800;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 1.25rem;
	letter-spacing: -.02em;
}

.hero__lead {
	font-size: 1.1rem;
	color: rgba(255,255,255,.8);
	margin-bottom: 2.25rem;
	line-height: 1.7;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ─── Trust strip ───────────────────────────────────────────────────────────── */
.trust-strip {
	background: var(--white);
	border-bottom: 1px solid var(--gray-200);
	padding: 2rem 0;
}
.trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.trust-item {
	display: flex;
	align-items: flex-start;
	gap: .875rem;
}
.trust-item__icon {
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	background: var(--green-50);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-500);
}
.trust-item__icon svg { width: 1.2rem; height: 1.2rem; }
.trust-item__title {
	display: block;
	font-size: .9rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: .2rem;
}
.trust-item__desc {
	display: block;
	font-size: .8rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* ─── Services preview ──────────────────────────────────────────────────────── */
.services-preview { background: var(--green-50); }

/* Tabs */
.services-tabs {
	display: flex;
	justify-content: center;
	gap: .35rem;
	width: fit-content;
	margin-inline: auto;
	margin-bottom: 2.5rem;
	background: var(--white);
	border: 1.5px solid var(--gray-200);
	border-radius: 999px;
	padding: .3rem;
}
.services-tab {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .6rem 1.75rem;
	border-radius: 999px;
	font-size: .9rem;
	font-weight: 600;
	border: none;
	background: transparent;
	color: var(--text-muted);
	cursor: pointer;
	transition: background .2s, color .2s;
	line-height: 1;
}
.services-tab.is-active {
	background: var(--green-600);
	color: var(--white);
}
.services-tab:not(.is-active):hover {
	background: var(--green-50);
	color: var(--green-700);
}

/* Panels */
.services-panel { display: none; }
.services-panel.is-active { display: block; }

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

/* ─── Service card ──────────────────────────────────────────────────────────── */
.service-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 1.75rem 1.5rem;
	transition: border-color .2s, box-shadow .2s, transform .2s;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.service-card:hover {
	border-color: var(--green-400);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

/* Icon-only variant (no image) */
.service-card__icon {
	width: 3rem;
	height: 3rem;
	background: var(--green-100);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.125rem;
	color: var(--green-600);
	transition: background .2s;
}
.service-card:hover .service-card__icon { background: var(--green-600); color: var(--white); }
.service-card__icon svg { width: 1.5rem; height: 1.5rem; }

/* Image variant */
.service-card--has-img {
	padding: 0;
	border: none;
}
.service-card--has-img:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-card__img {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .45s ease;
}
.service-card--has-img:hover .service-card__img img { transform: scale(1.06); }

.service-card__img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		rgba(13, 33, 22, .35) 0%,
		rgba(45, 106, 79, .55) 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 1rem 1.25rem;
	transition: background .3s;
}
.service-card--has-img:hover .service-card__img-overlay {
	background: linear-gradient(
		160deg,
		rgba(13, 33, 22, .45) 0%,
		rgba(45, 106, 79, .7) 100%
	);
}
.service-card__img-icon {
	width: 2.5rem;
	height: 2.5rem;
	background: rgba(255,255,255,.2);
	backdrop-filter: blur(4px);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
}
.service-card__img-icon svg { width: 1.25rem; height: 1.25rem; }

.service-card__body {
	padding: 1.25rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
	border: 1px solid var(--gray-200);
	border-top: none;
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.service-card--has-img .service-card__body { background: var(--white); }

.service-card__title { font-size: .95rem; font-weight: 700; color: var(--gray-900); margin-bottom: .5rem; line-height: 1.4; }
.service-card__desc { font-size: .825rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.service-card__link { font-size: .825rem; font-weight: 600; color: var(--green-600); margin-top: auto; display: inline-flex; align-items: center; gap: .25rem; }
.service-card__link:hover { color: var(--green-700); gap: .4rem; }

/* ─── About section ─────────────────────────────────────────────────────────── */
.about-section { background: var(--green-800); }
.about-section__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.about-section__content .section-title { margin-bottom: 1.25rem; }
.about-section__text { color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }

.about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255,255,255,.12);
}
.about-stat { text-align: center; }
.about-stat__number {
	display: block;
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--green-300);
	line-height: 1.1;
	margin-bottom: .35rem;
}
.about-stat__label {
	font-size: .75rem;
	color: rgba(255,255,255,.55);
	line-height: 1.4;
}
.about-stat__icon {
	width: 2rem;
	height: 2rem;
	color: var(--green-300);
	margin-inline: auto;
	margin-bottom: .35rem;
	display: block;
}

.about-section__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 1rem;
	display: block;
}

.about-section__img-placeholder {
	aspect-ratio: 4/5;
	background: linear-gradient(160deg, var(--green-700) 0%, var(--green-900) 100%);
	border-radius: var(--radius-xl);
	opacity: .5;
}

/* ─── CTA banner ────────────────────────────────────────────────────────────── */
.cta-banner {
	background: linear-gradient(135deg, var(--green-600) 0%, var(--green-400) 100%);
}
.cta-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
	flex-wrap: wrap;
}
.cta-banner__text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.cta-banner__text p { color: rgba(255,255,255,.85); }
.cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ─── Page hero ─────────────────────────────────────────────────────────────── */
.page-hero {
	background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
	padding: 4rem 0;
	color: var(--white);
	text-align: center;
}
.page-hero__title { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero__subtitle { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 600px; margin-inline: auto; }

/* ─── Services full page ────────────────────────────────────────────────────── */
.service-block {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 3rem;
	align-items: center;
	padding: 3rem 0;
	border-bottom: 1px solid var(--gray-200);
}
.service-block:last-child { border-bottom: none; }
.service-block--reverse { grid-template-columns: 1fr 280px; }
.service-block--reverse .service-block__content { order: -1; }

.service-block .service-card { height: 100%; }
.service-block__title { font-size: 1.75rem; font-weight: 800; color: var(--gray-900); margin-bottom: 1rem; }
.service-block__intro { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
.service-block__benefits { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: .6rem; }
.service-block__benefits li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; }
.service-block__benefits svg { color: var(--green-500); flex-shrink: 0; }

/* ─── Contact page ──────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; align-items: start; }
.contact-form-wrap__title,
.contact-info__title { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--gray-900); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--gray-800); }
.form-group label span { color: var(--green-600); }

.form-group input,
.form-group select,
.form-group textarea {
	padding: .65rem .95rem;
	border: 1.5px solid var(--gray-200);
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: .95rem;
	color: var(--text);
	background: var(--white);
	transition: border-color .2s, box-shadow .2s;
	appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--green-400);
	box-shadow: 0 0 0 3px rgba(64,145,108,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-group--checkbox .checkbox-label { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; color: var(--text-muted); cursor: pointer; }
.form-group--checkbox input[type="checkbox"] { width: 1.1rem; height: 1.1rem; accent-color: var(--green-500); flex-shrink: 0; margin-top: 2px; }
.form-group--checkbox a { color: var(--green-600); text-decoration: underline; }

.btn__loading { display: none; width: 1rem; height: 1rem; border: 2px solid rgba(255,255,255,.4); border-top-color: var(--white); border-radius: 50%; animation: spin .6s linear infinite; }
.btn.is-loading .btn__text { opacity: 0; position: absolute; }
.btn.is-loading .btn__loading { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-feedback { padding: .875rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: .9rem; font-weight: 500; display: none; }
.contact-feedback.is-success { background: var(--green-100); color: var(--green-700); border: 1px solid var(--green-200); display: block; }
.contact-feedback.is-error { background: #fce4e4; color: #c62828; border: 1px solid #ef9a9a; display: block; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.contact-details li { display: flex; align-items: flex-start; gap: .875rem; }
.contact-detail__icon { width: 2.25rem; height: 2.25rem; background: var(--green-100); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--green-600); flex-shrink: 0; }
.contact-detail__icon svg { width: 1.1rem; height: 1.1rem; }
.contact-details strong { display: block; font-size: .75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.contact-details a, .contact-details span { font-size: .95rem; color: var(--text); }
.contact-details a:hover { color: var(--green-600); }
.contact-map { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
	background: var(--green-900);
	color: rgba(255,255,255,.75);
	padding: 4rem 0 1.75rem;
}
.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255,255,255,.08);
	margin-bottom: 1.75rem;
}
.footer-logo { font-size: 1.3rem; font-weight: 800; color: var(--green-200); }
.footer-tagline { color: rgba(255,255,255,.45); font-size: .875rem; margin-top: .5rem; max-width: 240px; line-height: 1.6; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--green-600); color: var(--white); }

.footer-links__title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.footer-nav-list { display: flex; flex-direction: column; gap: .7rem; }
.footer-nav-list a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-nav-list a:hover { color: var(--green-200); }
.footer-contact-list { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-list li { display: flex; align-items: center; gap: .6rem; font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-contact-list svg { color: var(--green-400); flex-shrink: 0; }
.footer-contact-list a:hover { color: var(--green-200); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; }
.copyright { font-size: .8rem; color: rgba(255,255,255,.3); }
.copyright a { color: var(--green-400); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ─── WhatsApp floating ─────────────────────────────────────────────────────── */
.whatsapp-btn {
	position: fixed;
	bottom: 1.75rem;
	right: 1.75rem;
	z-index: 200;
	width: 3.5rem;
	height: 3.5rem;
	background: #25d366;
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37,211,102,.45);
	transition: transform .2s, box-shadow .2s;
}
.whatsapp-btn svg { width: 1.75rem; height: 1.75rem; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); color: var(--white); }

/* ─── Insurance product pages ───────────────────────────────────────────────── */

/* Hero */
.ins-hero {
	position: relative;
	background: linear-gradient(120deg, var(--green-900) 0%, var(--green-700) 100%);
	padding: 4.5rem 0 5rem;
	overflow: hidden;
}
.ins-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	z-index: 0;
}
.ins-hero .container { position: relative; z-index: 1; }
.ins-hero__content { max-width: 680px; }
.ins-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	background: rgba(255,255,255,.12);
	backdrop-filter: blur(6px);
	color: var(--green-200);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .35rem .9rem;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.15);
	margin-bottom: 1.25rem;
}
.ins-hero__title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--white);
	line-height: 1.15;
	letter-spacing: -.02em;
	margin-bottom: 1rem;
}
.ins-hero__tagline {
	font-size: 1.15rem;
	color: rgba(255,255,255,.8);
	line-height: 1.65;
	margin-bottom: 2rem;
	max-width: 560px;
}
.ins-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Intro layout */
.ins-intro__inner {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 3.5rem;
	align-items: start;
}
.ins-intro__text {
	font-size: 1.05rem;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 2.5rem;
}
.ins-section-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: 1.25rem;
}
.ins-section-title--center { text-align: center; margin-bottom: 2.5rem; }

/* Coverage list */
.coverage-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .6rem 1.5rem;
	margin-bottom: 2.5rem;
}
.coverage-item {
	display: flex;
	align-items: flex-start;
	gap: .6rem;
	font-size: .9rem;
	color: var(--text);
	line-height: 1.5;
}
.coverage-item__icon {
	color: var(--green-500);
	flex-shrink: 0;
	margin-top: 1px;
}

/* Target list */
.target-list { display: flex; flex-direction: column; gap: .6rem; }
.target-item {
	display: flex;
	align-items: center;
	gap: .6rem;
	font-size: .9rem;
	color: var(--text-muted);
}
.target-item__icon { color: var(--green-400); flex-shrink: 0; }

/* Sidebar card */
.ins-sidebar-card {
	background: var(--white);
	border: 1.5px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 2rem 1.75rem;
	position: sticky;
	top: 6rem;
	box-shadow: var(--shadow);
}
.ins-sidebar-card__icon {
	width: 3rem;
	height: 3rem;
	background: var(--green-100);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-600);
	margin-bottom: 1rem;
}
.ins-sidebar-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: .5rem;
	line-height: 1.4;
}
.ins-sidebar-card__text {
	font-size: .85rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}
.ins-sidebar-card .btn { margin-bottom: .75rem; }
.ins-sidebar-card .btn:last-child { margin-bottom: 0; }

/* Highlights */
.ins-highlights__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.ins-highlight-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 2rem 1.75rem;
	text-align: center;
	transition: box-shadow .2s, transform .2s;
}
.ins-highlight-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.ins-highlight-card__icon {
	width: 3.5rem;
	height: 3.5rem;
	background: var(--green-100);
	border-radius: var(--radius-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--green-600);
	margin: 0 auto 1.25rem;
}
.ins-highlight-card__title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: .5rem;
}
.ins-highlight-card__desc {
	font-size: .875rem;
	color: var(--text-muted);
	line-height: 1.65;
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
	background: var(--white);
	border: 1.5px solid var(--gray-200);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color .2s;
}
.faq-item[open] { border-color: var(--green-300); }
.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	font-weight: 600;
	font-size: .95rem;
	color: var(--gray-900);
	cursor: pointer;
	list-style: none;
	user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--green-700); }
.faq-icon { color: var(--green-500); flex-shrink: 0; transition: transform .25s; }
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-answer {
	padding: 0 1.5rem 1.25rem;
	border-top: 1px solid var(--gray-100);
}
.faq-answer p {
	font-size: .9rem;
	color: var(--text-muted);
	line-height: 1.75;
	padding-top: 1rem;
}

/* Responsive — insurance pages */
@media (max-width: 1024px) {
	.ins-intro__inner { grid-template-columns: 1fr; }
	.ins-sidebar-card { position: static; }
	.ins-intro__aside { order: -1; }
}
@media (max-width: 768px) {
	.ins-hero { padding: 3rem 0 3.5rem; }
	.ins-hero__actions { flex-direction: column; }
	.ins-hero__actions .btn { width: 100%; justify-content: center; }
	.coverage-list { grid-template-columns: 1fr; }
	.ins-highlights__grid { grid-template-columns: 1fr; }
}

/* ─── Entry content (static pages) ──────────────────────────────────────────── */
.entry-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 .75rem; }
.entry-content h3 { font-size: 1.2rem; font-weight: 700; margin: 1.5rem 0 .5rem; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content ul { list-style: disc; margin: 0 0 1.25rem 1.5rem; }
.entry-content a { color: var(--green-600); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Page: Seguros (/seguros/) ──────────────────────────────────────────────── */

.page-hero {
	background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
	color: var(--white);
	padding: 5rem 0 4rem;
	text-align: center;
}
.page-hero__title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: .75rem;
}
.page-hero__subtitle {
	font-size: 1.125rem;
	opacity: .85;
	max-width: 600px;
	margin: 0 auto;
}

.seguros-intro { text-align: center; }
.seguros-intro__text {
	font-size: 1.125rem;
	color: var(--text-muted);
	margin-bottom: 3rem;
	line-height: 1.75;
}
.seguros-intro__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
.seguros-intro__stat { display: flex; flex-direction: column; gap: .3rem; }
.seguros-intro__stat-num {
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--green-500);
	line-height: 1;
}
.seguros-intro__stat-label { font-size: .875rem; color: var(--text-muted); }

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}
.product-grid--2 { grid-template-columns: repeat(2, 1fr); }

.product-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: box-shadow .2s, transform .2s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* Product card — image variant */
.product-card--has-img {
	padding: 0;
	overflow: hidden;
}
.product-card__img {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
}
.product-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .45s ease;
}
.product-card--has-img:hover .product-card__img img { transform: scale(1.05); }
.product-card__img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(13,33,22,.3) 0%, rgba(45,106,79,.6) 100%);
	display: flex;
	align-items: flex-end;
	padding: 1rem 1.25rem;
	transition: background .3s;
}
.product-card--has-img:hover .product-card__img-overlay {
	background: linear-gradient(160deg, rgba(13,33,22,.4) 0%, rgba(45,106,79,.72) 100%);
}
.product-card__img-icon {
	width: 2.5rem;
	height: 2.5rem;
	background: rgba(255,255,255,.18);
	backdrop-filter: blur(4px);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
}
.product-card__img-icon svg { width: 1.25rem; height: 1.25rem; }
.product-card__body {
	padding: 1.5rem 1.75rem 1.75rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.product-card--has-img .product-card__body { padding-top: 1.25rem; }

.product-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: var(--radius);
	background: var(--green-50);
	color: var(--green-500);
	flex-shrink: 0;
}
.product-card__title { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.product-card__desc { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }
.product-card__benefits {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: .45rem;
	flex: 1;
}
.product-card__benefits li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-size: .875rem;
	color: var(--text);
}
.product-card__benefits li svg { flex-shrink: 0; margin-top: .15rem; color: var(--green-500); }
.product-card__link { margin-top: auto; align-self: flex-start; font-size: .875rem; }

.empresas-cta { margin-top: 2.5rem; }
.empresas-cta__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	background: var(--green-50);
	border: 1px solid var(--green-100);
	border-radius: var(--radius-lg);
	padding: 2rem 2.5rem;
}
.empresas-cta__inner > svg { color: var(--green-500); flex-shrink: 0; }
.empresas-cta__inner > div { flex: 1; }
.empresas-cta__inner h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .25rem; }
.empresas-cta__inner p { font-size: .9rem; color: var(--text-muted); }

/* ─── Page: Sobre Nós ─────────────────────────────────────────────────────── */

/* Missão — layout 2 colunas */
.sobre-missao__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}
.sobre-missao__text .section-label { display: block; margin-bottom: .75rem; }
.sobre-missao__text h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1.25rem; line-height: 1.25; }
.sobre-missao__text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }

/* Values list */
.sobre-values {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.sobre-value {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}
.sobre-value > svg {
	flex-shrink: 0;
	margin-top: .2rem;
	color: var(--green-500);
}
.sobre-value strong {
	display: block;
	font-size: .95rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-bottom: .2rem;
}
.sobre-value span {
	font-size: .875rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* Processo */
.processo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}
.processo-step {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}
.processo-step__num {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--green-100);
	line-height: 1;
}
.processo-step h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--gray-900);
}
.processo-step p {
	font-size: .875rem;
	color: var(--text-muted);
	line-height: 1.65;
}

/* Parceiros */
.section-sub {
	color: var(--text-muted);
	font-size: 1rem;
	margin-top: .5rem;
}
.parceiros-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-top: 2.5rem;
}
.parceiro-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 72px;
	background: var(--gray-50);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius);
	font-size: .8rem;
	font-weight: 600;
	color: var(--gray-400);
	letter-spacing: .05em;
	text-transform: uppercase;
}
.parceiros-nota {
	margin-top: 1rem;
	font-size: .8rem;
	color: var(--gray-400);
	font-style: italic;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
	.services-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.about-section__inner { grid-template-columns: 1fr; }
	.about-section__img-placeholder { display: none; }
	.about-section__img { border-radius: .5rem; max-height: 320px; }
	.about-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
	.trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
	.service-block, .service-block--reverse { grid-template-columns: 1fr; }
	.service-block--reverse .service-block__content { order: 0; }
	.footer-top { grid-template-columns: 1fr 1fr; }
	.cta-banner__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
	.section { padding: 3.5rem 0; }

	/* Nav */
	.primary-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--white);
		border-bottom: 1px solid var(--gray-200);
		padding: 1.25rem 1.5rem;
		box-shadow: var(--shadow);
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
	}
	.primary-nav.is-open { display: flex; }
	.primary-nav .nav-list { flex-direction: column; gap: 1rem; align-items: flex-start; }
	.site-header { position: relative; }
	.nav-toggle { display: flex; }

	/* Hero */
	.hero--split { flex-direction: column; }
	.hero__left { flex: none; width: 100%; padding: 3rem 1.5rem; }
	.hero__right { flex: none; width: 100%; height: 280px; }
	.hero__title { font-size: 2rem; }
	.hero__actions { flex-direction: column; }
	.hero__actions .btn { width: 100%; justify-content: center; }

	/* Sections */
	.services-grid { grid-template-columns: 1fr 1fr; }
	.services-grid--4 { grid-template-columns: 1fr 1fr; }
	.services-tabs { width: 100%; }
	.services-tab { flex: 1; justify-content: center; padding: .6rem 1rem; }

	/* Seguros page */
	.seguros-intro__stats { grid-template-columns: repeat(2, 1fr); }
	.product-grid { grid-template-columns: repeat(2, 1fr); }
	.product-grid--2 { grid-template-columns: 1fr; }
	.empresas-cta__inner { flex-direction: column; text-align: center; }

	/* Sobre nós */
	.sobre-missao__inner { grid-template-columns: 1fr; gap: 2.5rem; }
	.processo-grid { grid-template-columns: repeat(2, 1fr); }
	.parceiros-grid { grid-template-columns: repeat(4, 1fr); }

	/* About stats */
	.about-stats { grid-template-columns: repeat(2, 1fr); }

	/* CTA */
	.cta-banner__actions { width: 100%; justify-content: center; }

	/* Contact */
	.contact-grid { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }

	/* Footer */
	.footer-top { grid-template-columns: 1fr; gap: 2rem; }
	.footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
	.services-grid { grid-template-columns: 1fr; }
	.trust-strip__grid { grid-template-columns: 1fr; }
	.about-stats { grid-template-columns: repeat(2, 1fr); }
	.product-grid { grid-template-columns: 1fr; }
	.seguros-intro__stats { grid-template-columns: repeat(2, 1fr); }
	.processo-grid { grid-template-columns: 1fr; }
	.parceiros-grid { grid-template-columns: repeat(2, 1fr); }
}
