:root {
	--sage: #8aab8a;
	--sage-light: #b5c9b0;
	--sage-dark: #5c7d5c;
	--cream: #f5f0e8;
	--sand: #c9b49a;
	--white: #faf8f4;
	--text-dark: #2d3a2d;
	--text-mid: #4a5a4a;
	--text-light: #7a8a7a;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--white);
	color: var(--text-dark);
	overflow-x: hidden;
}

/* ── NAV ── */
nav {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
	padding: 1.2rem 5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(250, 248, 244, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(138, 171, 138, 0.15);
	transition: all .3s ease;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: .6rem;
	text-decoration: none;
}

.logo-icon {
	width: 36px;
	height: 36px;
}

.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.logo-text span:first-child {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--text-dark);
	letter-spacing: .02em;
}

.logo-text span:last-child {
	font-size: .6rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--text-light);
}

.nav-links {
	display: flex;
	gap: 2.4rem;
	list-style: none;
}

.nav-links a {
	text-decoration: none;
	font-size: .85rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--text-mid);
	position: relative;
	padding-bottom: 2px;
	transition: color .2s;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--sage);
	transition: width .3s ease;
}

.nav-links a:hover {
	color: var(--sage-dark);
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-cta {
	background: var(--sage);
	color: var(--white) !important;
	padding: .55rem 1.4rem !important;
	border-radius: 50px;
	transition: background .2s !important;
}

.nav-cta:hover {
	background: var(--sage-dark) !important;
}

.nav-cta::after {
	display: none !important;
}

/* ── HERO ── */
#hero {
	/*min-height: 100vh;*/
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	/*padding: 7rem 5% 4rem;*/
	/*padding: 6rem 5% 0rem;*/
	position: relative;
	overflow: hidden;


}


.hero-left {
	display: flex;
	align-items: center;
	padding: 8rem 5% 5rem 5%;
	background: var(--white);
	position: relative;
	z-index: 2;
}

.hero-right {
	position: relative;
	/*overflow: hidden;*/
}

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


.hero-right::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 10px;
	height: 100%;
	z-index: 1;

}

.hero-bg-shape {
	position: absolute;
	right: -80px;
	top: -60px;
	width: 700px;
	height: 700px;
	background: radial-gradient(ellipse at 60% 40%, #d1e0c8 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
	animation: floatShape 8s ease-in-out infinite;
}

.hero-blob {
	position: absolute;
	right: 3%;
	top: 50%;
	transform: translateY(-50%);
	width: 520px;
	height: 580px;
	z-index: 1;
	animation: floatShape 10s ease-in-out infinite reverse;
}

@keyframes floatShape {

	0%,
	100% {
		transform: translateY(-50%) scale(1);
	}

	50% {
		transform: translateY(-52%) scale(1.02);
	}
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-tag {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: rgba(138, 171, 138, .15);
	color: var(--sage-dark);
	padding: .4rem 1rem;
	border-radius: 50px;
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 2rem;
	animation: fadeUp .8s ease both;
}

.hero-tag::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--sage);
}

h1 {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2.8rem, 5vw, 4.5rem);
	font-weight: 400;
	line-height: 1.1;
	color: var(--text-dark);
	animation: fadeUp .8s .1s ease both;
}

h1 em {
	font-style: italic;
	color: var(--sage-dark);
}

.hero-desc {
	margin: 1.8rem 0 2.8rem;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--text-mid);
	max-width: 480px;
	font-weight: 300;
	animation: fadeUp .8s .2s ease both;
}

.hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	animation: fadeUp .8s .3s ease both;
}

.btn-primary {
	background: var(--sage);
	color: var(--white);
	padding: .9rem 2.2rem;
	border-radius: 50px;
	text-decoration: none;
	font-size: .9rem;
	letter-spacing: .04em;
	transition: all .25s;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 20px rgba(138, 171, 138, .35);
}

.btn-primary:hover {
	background: var(--sage-dark);
	box-shadow: 0 6px 28px rgba(92, 125, 92, .4);
	transform: translateY(-2px);
}

.btn-secondary {
	color: var(--text-dark);
	padding: .9rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-size: .9rem;
	letter-spacing: .04em;
	border: 1.5px solid rgba(138, 171, 138, .5);
	transition: all .25s;
}

.btn-secondary:hover {
	border-color: var(--sage);
	color: var(--sage-dark);
	transform: translateY(-2px);
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── STATS STRIP ── */
.stats-strip {
	background: var(--sage-dark);
	color: var(--white);
	padding: 2.5rem 5%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

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

.stat-num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.8rem;
	font-weight: 300;
	line-height: 1;
	display: block;
}

.stat-label {
	font-size: .78rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	opacity: .8;
	margin-top: .3rem;
}

/* ── SECTIONS COMMON ── */
section {
	padding: 6rem 5%;
}

.section-tag {
	font-size: .75rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--sage);
	font-weight: 500;
	margin-bottom: .8rem;
}

.section-title {
	font-family: 'Cormorant Garamond', serif;
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 400;
	line-height: 1.15;
	color: var(--text-dark);
}

.section-title em {
	font-style: italic;
	color: var(--sage-dark);
}

/* ── ABOUT ── */
#sobre {
	background: var(--cream);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.about-visual {
	position: relative;
	height: 500px;
}

.about-card {
	position: absolute;
	border-radius: 24px;
	overflow: hidden;
	background: var(--white);
	box-shadow: 0 20px 60px rgba(45, 58, 45, .1);
}

.about-card-main {
	width: 75%;
	height: 380px;
	top: 0;
	left: 0;
	background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-card-secondary {
	width: 55%;
	height: 200px;
	bottom: 0;
	right: 0;
	background: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.8rem;
}

.leaf-svg {
	width: 120px;
	opacity: .3;
}

.about-quote {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-style: italic;
	color: var(--sage-dark);
	line-height: 1.4;
	margin-bottom: .8rem;
}

.about-text {
	margin-top: 1.6rem;
	font-size: .96rem;
	line-height: 1.8;
	color: var(--text-mid);
	font-weight: 300;
}

.about-text p+p {
	margin-top: 1rem;
}

.values-list {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	margin-top: 2rem;
}

.value-chip {
	background: rgba(138, 171, 138, .15);
	color: var(--sage-dark);
	padding: .45rem 1rem;
	border-radius: 50px;
	font-size: .82rem;
	letter-spacing: .04em;
}

/* ── SERVICES ── */
#servicos {
	background: var(--white);
}

.services-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: end;
	margin-bottom: 4rem;
}

.services-desc {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-mid);
	font-weight: 300;
}

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

.service-card {
	background: var(--white);
	border-radius: 20px;
	padding: 2.2rem;
	border: 1px solid rgba(138, 171, 138, .2);
	transition: all .3s ease;
	cursor: default;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--sage), var(--sage-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(45, 58, 45, .1);
	border-color: rgba(138, 171, 138, .4);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(138, 171, 138, .12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.4rem;
	font-size: 1.4rem;
}

.service-card h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.service-card ul {
	list-style: none;
}

.service-card li {
	font-size: .88rem;
	color: var(--text-mid);
	padding: .35rem 0;
	border-bottom: 1px solid rgba(138, 171, 138, .1);
	display: flex;
	align-items: center;
	gap: .5rem;
	font-weight: 300;
}

.service-card li:last-child {
	border-bottom: none;
}

.service-card li::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--sage);
	flex-shrink: 0;
}

/* ── WHY US ── */
#diferenciais {
	background: var(--sage-dark);
	color: var(--white);
}

#diferenciais .section-tag {
	color: var(--sage-light);
}

#diferenciais .section-title {
	color: var(--white);
}

.diff-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-top: 3.5rem;
}

.diff-card {
	background: rgba(255, 255, 255, .07);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(255, 255, 255, .1);
	transition: background .3s;
}

.diff-card:hover {
	background: rgba(255, 255, 255, .12);
}

.diff-num {
	font-family: 'Cormorant Garamond', serif;
	font-size: 3rem;
	font-weight: 300;
	color: var(--sage-light);
	opacity: .5;
	line-height: 1;
	margin-bottom: 1rem;
}

.diff-card h4 {
	font-size: 1.05rem;
	font-weight: 500;
	margin-bottom: .7rem;
	color: var(--white);
}

.diff-card p {
	font-size: .88rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, .65);
	font-weight: 300;
}

/* ── CONTACT ── */
#contato {
	background: var(--cream);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: center;
}

#contato .section-title {
	margin-bottom: 1rem;
}

.contact-desc {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-mid);
	font-weight: 300;
	margin-bottom: 2.5rem;
}

.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-card {
	background: var(--white);
	border-radius: 18px;
	padding: 1.6rem 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	box-shadow: 0 4px 20px rgba(45, 58, 45, .07);
	text-decoration: none;
	color: inherit;
	transition: all .25s;
	border: 1px solid rgba(138, 171, 138, .15);
}

.contact-card:hover {
	border-color: var(--sage);
	box-shadow: 0 8px 32px rgba(138, 171, 138, .2);
	transform: translateX(4px);
}

.contact-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--sage), var(--sage-dark));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	flex-shrink: 0;
}

.contact-info small {
	display: block;
	font-size: .72rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: .2rem;
}

.contact-info strong {
	display: block;
	font-size: 1rem;
	color: var(--text-dark);
	font-weight: 500;
}

.contact-info span {
	font-size: .85rem;
	color: var(--sage-dark);
	font-weight: 300;
}

.contact-form-side {
	background: var(--white);
	border-radius: 28px;
	padding: 3rem;
	box-shadow: 0 20px 60px rgba(45, 58, 45, .1);
}

.contact-form-side h3 {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.6rem;
	font-weight: 400;
	margin-bottom: 1.8rem;
	color: var(--text-dark);
}

.form-group {
	margin-bottom: 1.2rem;
}

.form-group label {
	display: block;
	font-size: .78rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--text-light);
	margin-bottom: .5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: .85rem 1.1rem;
	border: 1.5px solid rgba(138, 171, 138, .25);
	border-radius: 12px;
	font-family: 'DM Sans', sans-serif;
	font-size: .95rem;
	color: var(--text-dark);
	background: var(--white);
	transition: border-color .2s;
	outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-color: var(--sage);
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.form-submit {
	width: 100%;
	padding: 1rem;
	background: var(--sage);
	color: var(--white);
	border: none;
	border-radius: 12px;
	font-family: 'DM Sans', sans-serif;
	font-size: .95rem;
	letter-spacing: .04em;
	cursor: pointer;
	transition: all .25s;
	box-shadow: 0 4px 16px rgba(138, 171, 138, .35);
}

.form-submit:hover {
	background: var(--sage-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 24px rgba(92, 125, 92, .4);
}

/* ── FOOTER ── */
footer {
	background: var(--text-dark);
	color: rgba(255, 255, 255, .5);
	padding: 2.5rem 5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: .6rem;
	text-decoration: none;
}

.footer-logo span:first-child {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.3rem;
	color: var(--white);
	font-weight: 400;
}

.footer-logo span:last-child {
	font-size: .6rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .4);
}

footer p {
	font-size: .82rem;
}

.footer-links {
	display: flex;
	gap: 1.5rem;
}

.footer-links a {
	color: rgba(255, 255, 255, .4);
	text-decoration: none;
	font-size: .82rem;
	transition: color .2s;
}

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

/* ── WHATSAPP FAB ── */
.whatsapp-fab {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 200;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #25D366;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
	text-decoration: none;
	font-size: 1.7rem;
	transition: all .25s;
	animation: pulse 2.5s infinite;
}

@keyframes pulse {

	0%,
	100% {
		box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
	}

	50% {
		box-shadow: 0 6px 32px rgba(37, 211, 102, .65);
	}
}

.whatsapp-fab:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 32px rgba(37, 211, 102, .6);
}

/* ── REVEAL ANIMATION ── */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ── RESPONSIVE ── */


@media (max-width: 900px) {
	#hero {
		grid-template-columns: 1fr;
		padding-top: 8rem;
	}
	
	.hero-right { display: none; }
  	.hero-left { padding: 7rem 5% 3rem; min-height: 100vh; }

	.hero-blob {
		display: none;
	}

	#sobre,
	#contato {
		grid-template-columns: 1fr;
	}

	.about-visual {
		height: 280px;
	}

	.services-intro {
		grid-template-columns: 1fr;
	}

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

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

	nav .nav-links {
		display: none;
	}

	.about-visual{
		margin-bottom: 15px;
	}
	.about-card-main{
		width: 100%;
	}
	.about-card-secondary{
		display: none;
	}
	.footer-logo{
		width: 100%;
		text-align: center;
	}
}

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

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

	.stats-strip {
		flex-direction: column;
		gap: 1.5rem;
	}
}


/* Esconde no desktop, aparece somente no mobile (telas até 767px) */
@media (max-width: 767px) {
	.mobile_show {
		display: block !important;
	}
}

/* Esconde no mobile, aparece somente no desktop (telas de 768px para cima) */
@media (min-width: 768px) {
	.mobile_hide {
		display: none !important;
	}
}