/**
 * Quem Somos Page Styles
 * Woodev Theme
 *
 * @package Woodev
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Reset & Variables ── */
.qs-page *,
.qs-page *::before,
.qs-page *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.qs-page {
	--cream:   #faf6f0;
	--petal:   #e8c5b0;
	--blush:   #d4937a;
	--stem:    #ca2b39;
	--leaf:    #a7212d;
	--bark:    #a7212d;
	--gold:    #c9a96e;
	--text:    #2a2420;
	--muted:   #7a6a60;
	--ff-head: 'Cormorant Garamond', Georgia, serif;
	--ff-body: 'Jost', sans-serif;
	--ease:    cubic-bezier(.25,.46,.45,.94);

	background-color: var(--cream);
	font-family: var(--ff-body);
	color: var(--text);
	overflow-x: hidden;
}

/* ── Hero ── */
.qs-hero {
	position: relative;
	min-height: 92vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	overflow: hidden;
}

.qs-hero__image-col {
	position: relative;
	overflow: hidden;
}

.qs-hero__image-col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 8s var(--ease);
}

.qs-hero__image-col:hover img {
	transform: scale(1.04);
}

/* botanical overlay */
.qs-hero__image-col::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg,
		rgba(44,58,47,.18) 0%,
		rgba(44,58,47,.04) 60%,
		transparent 100%
	);
	pointer-events: none;
}

.qs-hero__text-col {
	background: linear-gradient(160deg, #ca2b39 0%, #a7212d 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
	position: relative;
	overflow: hidden;
}

.qs-hero__label {
	font-family: var(--ff-body);
	font-weight: 300;
	font-size: .72rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--petal);
	margin-bottom: 1.4rem;
	display: flex;
	align-items: center;
	gap: .75rem;
}

.qs-hero__label::before {
	content: '';
	display: inline-block;
	width: 36px;
	height: 1px;
	background: var(--petal);
	opacity: .7;
}

.qs-hero__title {
	font-family: var(--ff-head);
	font-size: clamp(2.8rem, 5vw, 4.4rem);
	font-weight: 300;
	line-height: 1.12;
	color: #fff;
	margin-bottom: 1.8rem;
}

.qs-hero__title em {
	font-style: italic;
	color: var(--petal);
}

.qs-hero__subtitle {
	font-family: var(--ff-body);
	font-size: .95rem;
	font-weight: 300;
	line-height: 1.85;
	color: rgba(255,255,255,.72);
	max-width: 380px;
	margin-bottom: 2.5rem;
}

.qs-hero__since {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 100px;
	padding: .6rem 1.4rem;
	color: rgba(255,255,255,.65);
	font-size: .78rem;
	font-weight: 300;
	letter-spacing: .1em;
}

.qs-hero__since span {
	font-family: var(--ff-head);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--gold);
}

/* corner decoration */
.qs-hero__corner {
	position: absolute;
	top: 2rem;
	right: 2rem;
	width: 80px;
	height: 80px;
	opacity: .15;
}

/* ── Stats Strip ── */
.qs-stats {
	background: var(--bark);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.qs-stat {
	padding: 2.5rem 2rem;
	text-align: center;
	border-right: 1px solid rgba(255,255,255,.07);
	transition: background .3s var(--ease);
}

.qs-stat:last-child { border-right: none; }
.qs-stat:hover { background: rgba(255,255,255,.04); }

.qs-stat__number {
	font-family: var(--ff-head);
	font-size: 3rem;
	font-weight: 300;
	color: var(--gold);
	line-height: 1;
	margin-bottom: .4rem;
}

.qs-stat__label {
	font-size: .75rem;
	font-weight: 300;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: rgba(255,255,255,.5);
}

/* ── Story Section ── */
.qs-story {
	padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 5vw, 6rem);
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: center;
}

.qs-story__eyebrow {
	font-size: .72rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--blush);
	margin-bottom: 1.2rem;
	display: flex;
	align-items: center;
	gap: .6rem;
}

.qs-story__eyebrow::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--petal);
	opacity: .5;
	max-width: 48px;
}

.qs-story__heading {
	font-family: var(--ff-head);
	font-size: clamp(2.2rem, 3.5vw, 3.2rem);
	font-weight: 300;
	line-height: 1.2;
	color: var(--bark);
	margin-bottom: 1.8rem;
}

.qs-story__heading em {
	font-style: italic;
	color: var(--leaf);
}

.qs-story__text {
	font-size: .95rem;
	font-weight: 300;
	line-height: 1.9;
	color: var(--muted);
	margin-bottom: 1.2rem;
}

.qs-story__text:last-of-type { margin-bottom: 0; }

/* visual side */
.qs-story__visual {
	position: relative;
}

.qs-story__img-wrap {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 32px 64px rgba(44,58,47,.18);
}

.qs-story__img-wrap img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 6s var(--ease);
}

.qs-story__img-wrap:hover img { transform: scale(1.03); }

/* floating badge */
.qs-story__badge {
	position: absolute;
	bottom: -2rem;
	left: -2rem;
	width: 120px;
	height: 120px;
	background: var(--gold);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0 16px 40px rgba(201,169,110,.35);
}

.qs-story__badge-year {
	font-family: var(--ff-head);
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--bark);
	line-height: 1;
}

.qs-story__badge-text {
	font-size: .6rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--bark);
	opacity: .75;
}

/* decorative line frame */
.qs-story__frame {
	position: absolute;
	top: -1.5rem;
	right: -1.5rem;
	width: 60%;
	height: 60%;
	border: 1.5px solid var(--petal);
	border-radius: 4px;
	pointer-events: none;
	z-index: -1;
	opacity: .55;
}

/* ── Values ── */
.qs-values {
	background: linear-gradient(160deg, var(--stem) 0%, var(--bark) 100%);
	padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 5vw, 6rem);
	position: relative;
	overflow: hidden;
}

.qs-values::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(201,169,110,.08) 0%, transparent 70%);
	pointer-events: none;
}

.qs-values__header {
	text-align: center;
	max-width: 540px;
	margin: 0 auto 4.5rem;
}

.qs-values__eyebrow {
	font-size: .72rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--petal);
	margin-bottom: 1rem;
}

.qs-values__title {
	font-family: var(--ff-head);
	font-size: clamp(2rem, 3vw, 2.8rem);
	font-weight: 300;
	color: #fff;
	line-height: 1.25;
}

.qs-values__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5px;
	max-width: 960px;
	margin: 0 auto;
	background: rgba(255,255,255,.06);
	border-radius: 8px;
	overflow: hidden;
}

.qs-value-card {
	background: rgba(255,255,255,.03);
	padding: 2.5rem 2rem;
	text-align: center;
	transition: background .3s var(--ease);
}

.qs-value-card:hover { background: rgba(255,255,255,.08); }

.qs-value-card__icon {
	font-size: 2rem;
	margin-bottom: 1.2rem;
	display: block;
}

.qs-value-card__title {
	font-family: var(--ff-head);
	font-size: 1.35rem;
	font-weight: 400;
	color: var(--petal);
	margin-bottom: .7rem;
}

.qs-value-card__text {
	font-size: .85rem;
	font-weight: 300;
	line-height: 1.75;
	color: rgba(255,255,255,.55);
}

/* ── Contact ── */
.qs-contact {
	padding: clamp(5rem, 8vw, 8rem) clamp(1.5rem, 5vw, 6rem);
	max-width: 1100px;
	margin: 0 auto;
}

.qs-contact__header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.qs-contact__eyebrow {
	font-size: .72rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--blush);
	margin-bottom: 1rem;
}

.qs-contact__title {
	font-family: var(--ff-head);
	font-size: clamp(2rem, 3vw, 2.8rem);
	font-weight: 300;
	color: var(--bark);
}

.qs-contact__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.qs-contact-card {
	border: 1.5px solid var(--petal);
	border-radius: 6px;
	padding: 2.2rem 2rem;
	position: relative;
	overflow: hidden;
	transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.qs-contact-card:hover {
	border-color: var(--blush);
	box-shadow: 0 12px 40px rgba(212,147,122,.12);
}

.qs-contact-card::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--blush), var(--gold));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s var(--ease);
}

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

.qs-contact-card__icon {
	font-size: 1.6rem;
	margin-bottom: 1rem;
	display: block;
}

.qs-contact-card__label {
	font-size: .7rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: .6rem;
}

.qs-contact-card__value {
	font-family: var(--ff-head);
	font-size: 1.1rem;
	font-weight: 400;
	color: var(--bark);
	line-height: 1.5;
}

.qs-contact-card__value a {
	color: inherit;
	text-decoration: none;
	transition: color .2s;
}

.qs-contact-card__value a:hover { color: var(--blush); }

/* ── CTA Banner ── */
.qs-cta {
	background: var(--cream);
	border-top: 1.5px solid var(--petal);
	padding: 4rem clamp(1.5rem, 5vw, 6rem);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1100px;
	margin: 0 auto;
	flex-wrap: wrap;
}

.qs-cta__heading {
	font-family: var(--ff-head);
	font-size: clamp(1.6rem, 2.5vw, 2.2rem);
	font-weight: 300;
	color: var(--bark);
	margin-bottom: .4rem;
}

.qs-cta__sub {
	font-size: .88rem;
	color: var(--muted);
	font-weight: 300;
}

.qs-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	background: var(--stem);
	color: #fff;
	text-decoration: none;
	font-family: var(--ff-body);
	font-size: .82rem;
	font-weight: 400;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: 1rem 2.2rem;
	border-radius: 100px;
	transition: background .3s var(--ease), transform .2s var(--ease), box-shadow .3s var(--ease);
	white-space: nowrap;
}

.qs-cta__btn:hover {
	background: var(--leaf);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(59,81,67,.3);
	color: #fff;
}

.qs-cta__btn::after {
	content: '→';
	transition: transform .2s var(--ease);
}

.qs-cta__btn:hover::after { transform: translateX(4px); }

/* ── Animations ── */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(28px); }
	to   { opacity: 1; transform: translateY(0); }
}

.anim-in {
	animation: fadeUp .8s var(--ease) both;
}

.anim-in:nth-child(2) { animation-delay: .12s; }
.anim-in:nth-child(3) { animation-delay: .24s; }
.anim-in:nth-child(4) { animation-delay: .36s; }

/* ── Responsive ── */
@media (max-width: 900px) {
	.qs-hero { grid-template-columns: 1fr; min-height: auto; }
	.qs-hero__image-col { aspect-ratio: 16/9; }
	.qs-story { grid-template-columns: 1fr; gap: 3rem; }
	.qs-story__visual { order: -1; }
	.qs-story__badge { bottom: -1rem; left: auto; right: 1rem; width: 90px; height: 90px; }
	.qs-values__grid { grid-template-columns: 1fr; }
	.qs-contact__grid { grid-template-columns: 1fr; }
	.qs-stats { grid-template-columns: 1fr; }
	.qs-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
	.qs-stat:last-child { border-bottom: none; }
}
