@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Oswald:wght@400;600;700;800&display=swap");

:root {
	--orange: #ee731a;
	--orange-light: #f5943d;
	--orange-dark: #d4620f;
	--gray: #626264;
	--black: #000000;
	--dark: #0e0e0e;
	--dark-card: #141414;
	--dark-surface: #101010;
	--white: #ffffff;
	--grad-gray-start: #d9d9d9;
	--grad-gray-end: #7a7a7a;
	--cream: var(--grad-gray-start);
	--text-muted: var(--grad-gray-end);
	--fh: "Oswald", "Arial Narrow", sans-serif;
	--fb: "DM Sans", system-ui, sans-serif;
	--rocha-hero-image: url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1920&q=80");
	--rocha-mini-hero-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80");
}

/* ── Preloader ── */
.rocha-preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s, visibility 0.6s;
}

.rocha-preloader.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.rocha-preloader img {
	height: 70px;
	width: auto;
	animation: rocha-pulse 1.2s ease-in-out infinite;
}

.rocha-preloader-fallback {
	font-family: var(--fh);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--orange);
	animation: rocha-pulse 1.2s ease-in-out infinite;
}

@keyframes rocha-pulse {
	0%,
	100% {
		opacity: 0.3;
	}
	50% {
		opacity: 1;
	}
}

/* ── Nav ── */
.rocha-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 1rem 4%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.4s;
}

.rocha-nav.scrolled {
	background: rgba(0, 0, 0, 0.92);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(238, 115, 26, 0.12);
}

.rocha-nav .nav-links {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.rocha-nav .nav-links a {
	color: var(--white);
	text-decoration: none;
	font-family: var(--fh);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 0.3s;
}

.rocha-nav .nav-links a:hover {
	color: var(--orange);
}

.rocha-nav .nav-menu-placeholder,
.rocha-nav .rocha-nav-menu-placeholder {
	color: var(--text-muted);
	font-size: 0.75rem;
	font-family: var(--fb);
	max-width: 220px;
	line-height: 1.4;
}

.rocha-nav .nav-lang {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	line-height: 1;
}

.rocha-nav .nav-lang .gtranslate_wrapper,
.rocha-nav .nav-lang .gt_switcher {
	display: flex;
	align-items: center;
}

.rocha-nav .nav-lang a {
	color: var(--white);
	text-transform: none;
	letter-spacing: normal;
	font-family: var(--fb);
	font-size: 0.85rem;
}

.rocha-nav .nav-lang a:hover {
	color: var(--orange);
}

.rocha-nav .nav-cta {
	background: var(--orange) !important;
	color: var(--white) !important;
	padding: 0.6rem 1.3rem;
	transition: transform 0.3s, box-shadow 0.3s !important;
}

.rocha-nav .nav-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(238, 115, 26, 0.35);
}

.rocha-nav .mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 1001;
}

.rocha-nav .mobile-toggle span {
	width: 28px;
	height: 2px;
	background: var(--orange);
	transition: 0.3s;
}

.rocha-nav .nav-logo img {
	height: auto;
	width: 122px;
}

/* ── Hero centrado + buscador ── */
.rocha-hero-centered {
	position: relative;
	min-height: clamp(520px, 75vh, 860px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 8rem 6% 5rem;
	text-align: center;
}

.rocha-hero-centered .hero-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 18, 32, 0.72) 0%, rgba(10, 18, 32, 0.55) 45%, rgba(10, 18, 32, 0.78) 100%),
		var(--rocha-hero-image) center/cover;
}

.rocha-hero-centered .hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	animation: rocha-fade-up 1.2s ease-out 0.35s both;
}

@keyframes rocha-fade-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.rocha-hero-centered .section-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	font-family: var(--fh);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 1rem;
}

.rocha-hero-centered .section-eyebrow::before {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--orange);
}

.rocha-hero-centered .hero-title {
	font-family: var(--fh);
	font-size: clamp(2rem, 4.8vw, 3.75rem);
	font-weight: 800;
	line-height: 1.12;
	color: var(--white);
	margin: 0 auto 2rem;
	text-transform: none;
	max-width: 920px;
}

.rocha-hero-centered .hero-sub {
	font-size: clamp(0.95rem, 1.3vw, 1.05rem);
	line-height: 1.7;
	color: var(--cream);
	max-width: 680px;
	margin: 1.75rem auto 0;
}

.rocha-hero-centered .hero-search-slot {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	min-height: 4.5rem;
	padding: 0 1rem;
	box-sizing: border-box;
}

.rocha-hero-centered .hero-search-slot:empty {
	min-height: 0;
}

/* ── YouTube video ── */
.rocha-youtube-video {
	width: 100%;
	margin: 0 auto;
}

.rocha-youtube-video__placeholder {
	margin: 0;
	padding: 1.5rem;
	text-align: center;
	color: var(--gray);
	font-family: var(--fb);
}

.rocha-youtube-video__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--rocha-video-radius, 16px);
	overflow: hidden;
	background: var(--dark-card);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.rocha-youtube-video__trigger {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}

.rocha-youtube-video__poster {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rocha-youtube-video__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	border: 2px solid rgba(255, 255, 255, 0.92);
	color: #fff;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
	transition: transform 0.25s ease, background 0.25s ease;
}

.rocha-youtube-video__play svg {
	margin-left: 4px;
}

.rocha-youtube-video__trigger:hover .rocha-youtube-video__play,
.rocha-youtube-video__trigger:focus-visible .rocha-youtube-video__play {
	transform: translate(-50%, -50%) scale(1.06);
	background: rgba(238, 115, 26, 0.88);
	border-color: #fff;
}

.rocha-youtube-video__trigger:focus {
	outline: none;
}

.rocha-youtube-video__trigger:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 4px;
	border-radius: var(--rocha-video-radius, 16px);
}

.rocha-youtube-video__iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ── Footer ── */
.rocha-footer {
	padding: 3.5rem 6% 2rem;
	border-top: 3px solid var(--orange);
	background: var(--dark);
	font-family: var(--fb);
}

.rocha-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 2.5rem;
	max-width: 1280px;
	margin: 0 auto 2.5rem;
}

.rocha-footer__grid--cols-2 {
	grid-template-columns: 2fr 1.5fr;
}

.rocha-footer__grid--cols-3 {
	grid-template-columns: 2fr 1fr 1.5fr;
}

.rocha-footer__grid--cols-4 {
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
}

.rocha-footer__brand img {
	height: 45px;
	width: auto;
}

.rocha-footer__brand p {
	margin-top: 0.8rem;
	font-size: 0.78rem;
	color: var(--text-muted);
	line-height: 1.7;
	max-width: 280px;
}

.rocha-footer__social {
	display: flex;
	gap: 0.8rem;
	margin-top: 0.8rem;
}

.rocha-footer__social a {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(238, 115, 26, 0.2);
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.75rem;
	font-family: var(--fh);
	font-weight: 600;
	transition: all 0.3s ease;
}

.rocha-footer__social a:hover {
	border-color: var(--orange);
	color: var(--orange);
	background: rgba(238, 115, 26, 0.08);
}

.rocha-footer__col h5 {
	font-family: var(--fh);
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--orange);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 1rem;
}

.rocha-footer__col a {
	display: block;
	color: var(--text-muted);
	text-decoration: none;
	font-size: 0.78rem;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.rocha-footer__col a:hover {
	color: var(--orange);
}

.rocha-footer__contact p {
	font-size: 0.78rem;
	color: var(--text-muted);
	line-height: 1.6;
	margin: 0 0 0.35rem;
}

.rocha-footer__contact a {
	color: var(--orange);
}

.rocha-footer__phone {
	margin-top: 0.6rem !important;
}

.rocha-footer__langs {
	margin-top: 0.4rem !important;
	font-size: 0.72rem !important;
	color: var(--text-muted) !important;
}

.rocha-footer__bottom {
	text-align: center;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(238, 115, 26, 0.1);
	max-width: 1280px;
	margin: 0 auto;
}

.rocha-footer__bottom p {
	font-size: 0.68rem;
	color: rgba(122, 122, 122, 0.6);
	letter-spacing: 0.08em;
	margin: 0;
}

.rocha-whatsapp-float {
	position: fixed;
	bottom: 4.3rem;
	right: 1.2rem;
	z-index: 900;
	background: #25d366;
	color: var(--black);
	padding: 0.7rem 1.2rem;
	text-decoration: none;
	font-family: var(--fh);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
	transition: transform 0.3s ease;
}

.rocha-whatsapp-float:hover {
	transform: scale(1.05);
	color: var(--black);
}

.rocha-phone-float {
	position: fixed;
	bottom: 1.2rem;
	right: 1.2rem;
	z-index: 900;
	background: var(--orange);
	color: var(--white);
	padding: 0.7rem 1.2rem;
	text-decoration: none;
	font-family: var(--fh);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	box-shadow: 0 6px 30px rgba(238, 115, 26, 0.4);
	transition: transform 0.3s ease;
	animation: rocha-phone-pulse 3s ease-in-out infinite;
}

.rocha-phone-float:hover {
	transform: scale(1.05);
	color: var(--white);
}

@keyframes rocha-phone-pulse {
	0%,
	100% {
		box-shadow: 0 6px 30px rgba(238, 115, 26, 0.4);
	}
	50% {
		box-shadow: 0 6px 45px rgba(238, 115, 26, 0.6);
	}
}

/* ── Cities grid ── */
.rocha-cities-grid {
	background: #f3eee4;
	padding: 5rem 6%;
	font-family: var(--fb);
}

.rocha-cities-grid__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.rocha-cities-grid__header {
	max-width: 820px;
	margin-bottom: 2.75rem;
}

.rocha-cities-grid__title {
	margin: 0 0 1.25rem;
	font-family: var(--fh);
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.1;
	color: #1c2b4a;
	text-transform: none;
}

.rocha-cities-grid__title-line {
	display: block;
}

.rocha-cities-grid__subtitle {
	margin: 0;
	font-size: clamp(0.92rem, 1.2vw, 1rem);
	line-height: 1.75;
	color: #5c6478;
	max-width: 760px;
}

.rocha-cities-grid__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.rocha-cities-grid__card {
	position: relative;
	display: block;
	border-radius: 18px;
	overflow: hidden;
	min-height: 340px;
	text-decoration: none;
	box-shadow: 0 12px 36px rgba(28, 43, 74, 0.12);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rocha-cities-grid__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 44px rgba(28, 43, 74, 0.18);
}

.rocha-cities-grid__card-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rocha-cities-grid__card-image--placeholder {
	background: linear-gradient(135deg, #c8d2e4 0%, #8fa0bc 100%);
}

.rocha-cities-grid__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(12, 22, 42, 0.05) 35%, rgba(12, 22, 42, 0.82) 100%);
}

.rocha-cities-grid__card-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 1.5rem 1.4rem;
	z-index: 2;
}

.rocha-cities-grid__listings {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: #c8e063;
	letter-spacing: 0.02em;
}

.rocha-cities-grid__name {
	display: block;
	font-family: var(--fh);
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.15;
}

.rocha-cities-grid__empty {
	margin: 0;
	padding: 2rem;
	text-align: center;
	color: #5c6478;
	font-size: 0.9rem;
	background: rgba(255, 255, 255, 0.55);
	border-radius: 12px;
}

/* ── Featured houses (rochadirectory) ── */
.rocha-featured-houses {
	background: #f7f4ef;
	padding: 5rem 6%;
	font-family: var(--fb);
}

.rocha-featured-houses__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.rocha-featured-houses__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.rocha-featured-houses__eyebrow {
	display: block;
	margin-bottom: 0.65rem;
	font-family: var(--fh);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--orange);
}

.rocha-featured-houses__title {
	margin: 0;
	font-family: var(--fh);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	color: #1c2b4a;
}

.rocha-featured-houses__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 0.35rem;
	background: #ece8e1;
	border-radius: 999px;
}

.rocha-featured-houses__filter {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 1.15rem;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: #5c6478;
	font-family: var(--fb);
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.rocha-featured-houses__filter svg {
	flex-shrink: 0;
}

.rocha-featured-houses__filter.is-active {
	background: var(--orange);
	color: #fff;
	box-shadow: 0 8px 24px rgba(238, 115, 26, 0.28);
}

.rocha-featured-houses__filter:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 2px;
}

.rocha-featured-houses__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.rocha-featured-houses__card {
	display: grid;
	grid-template-columns: 168px minmax(0, 1fr);
	gap: 1.25rem;
	align-items: stretch;
	padding: 1rem;
	background: #fff;
	border: 1px solid #e6e1d8;
	border-radius: 18px;
	box-shadow: 0 10px 28px rgba(28, 43, 74, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rocha-featured-houses__card.is-hidden {
	display: none;
}

.rocha-featured-houses__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(28, 43, 74, 0.1);
}

.rocha-featured-houses__thumb {
	display: block;
	border-radius: 14px;
	overflow: hidden;
	min-height: 148px;
	background: linear-gradient(135deg, #d9dde8 0%, #aeb8cb 100%);
}

.rocha-featured-houses__thumb img,
.rocha-featured-houses__thumb-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 148px;
	object-fit: cover;
}

.rocha-featured-houses__body {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding-right: 2rem;
}

.rocha-featured-houses__favorite {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid #eadfd4;
	border-radius: 50%;
	background: #fff;
	color: #c4c8d4;
	cursor: pointer;
	transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rocha-featured-houses__favorite:hover,
.rocha-featured-houses__favorite.is-favorited {
	color: var(--orange);
	border-color: rgba(238, 115, 26, 0.35);
	background: rgba(238, 115, 26, 0.08);
}

.rocha-featured-houses__favorite.is-favorited svg path {
	fill: var(--orange);
}

.rocha-featured-houses__card-title {
	margin: 0 0 0.55rem;
	font-family: var(--fh);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	font-weight: 700;
	line-height: 1.25;
}

.rocha-featured-houses__card-title a {
	color: #1c2b4a;
	text-decoration: none;
}

.rocha-featured-houses__card-title a:hover {
	color: var(--orange);
}

.rocha-featured-houses__address {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	margin: 0 0 1rem;
	font-size: 0.82rem;
	line-height: 1.5;
	color: #6b7288;
}

.rocha-featured-houses__address svg {
	flex-shrink: 0;
	margin-top: 0.15rem;
	color: var(--orange);
}

.rocha-featured-houses__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
}

.rocha-featured-houses__status {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex: 1;
	min-width: 0;
}

.rocha-featured-houses__status--empty {
	min-height: 1px;
}

.rocha-featured-houses__progress {
	flex: 1;
	max-width: 180px;
	height: 8px;
	border-radius: 999px;
	background: #ece8e1;
	overflow: hidden;
}

.rocha-featured-houses__progress span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
}

.rocha-featured-houses__status-label {
	font-size: 0.75rem;
	font-weight: 600;
	color: #5c6478;
	white-space: nowrap;
}

.rocha-featured-houses__status-pill {
	display: inline-block;
	max-width: 100%;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: #f1ede6;
	font-size: 0.75rem;
	font-weight: 600;
	color: #5c6478;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rocha-featured-houses__details {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	flex-shrink: 0;
	padding: 0.65rem 1rem;
	border-radius: 999px;
	background: #1c2b4a;
	color: #fff;
	text-decoration: none;
	font-family: var(--fh);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	transition: background 0.25s ease, transform 0.25s ease;
}

.rocha-featured-houses__details svg {
	color: #f5c84c;
}

.rocha-featured-houses__details:hover {
	background: #243a66;
	transform: translateY(-1px);
	color: #fff;
}

.rocha-featured-houses__empty,
.rocha-featured-houses__empty-filter {
	margin: 0;
	padding: 2rem;
	text-align: center;
	color: #5c6478;
	font-size: 0.9rem;
	background: rgba(255, 255, 255, 0.65);
	border-radius: 12px;
}

/* ── Featured houses — dark ── */
.rocha-featured-houses--dark {
	background: var(--black);
}

.rocha-featured-houses--dark .rocha-featured-houses__title {
	color: var(--white);
}

.rocha-featured-houses--dark .rocha-featured-houses__filters {
	background: var(--dark-surface);
	border: 1px solid rgba(238, 115, 26, 0.12);
}

.rocha-featured-houses--dark .rocha-featured-houses__filter {
	color: var(--text-muted);
}

.rocha-featured-houses--dark .rocha-featured-houses__filter.is-active {
	color: var(--white);
}

.rocha-featured-houses--dark .rocha-featured-houses__card {
	background: var(--dark-card);
	border-color: rgba(238, 115, 26, 0.14);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.rocha-featured-houses--dark .rocha-featured-houses__card:hover {
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
	border-color: rgba(238, 115, 26, 0.28);
}

.rocha-featured-houses--dark .rocha-featured-houses__thumb {
	background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
}

.rocha-featured-houses--dark .rocha-featured-houses__favorite {
	background: var(--dark-surface);
	border-color: rgba(238, 115, 26, 0.18);
	color: var(--text-muted);
}

.rocha-featured-houses--dark .rocha-featured-houses__card-title a {
	color: var(--white);
}

.rocha-featured-houses--dark .rocha-featured-houses__address {
	color: var(--text-muted);
}

.rocha-featured-houses--dark .rocha-featured-houses__progress {
	background: rgba(255, 255, 255, 0.08);
}

.rocha-featured-houses--dark .rocha-featured-houses__status-label {
	color: var(--text-muted);
}

.rocha-featured-houses--dark .rocha-featured-houses__status-pill {
	background: var(--dark-surface);
	color: var(--cream);
	border: 1px solid rgba(238, 115, 26, 0.1);
}

.rocha-featured-houses--dark .rocha-featured-houses__details {
	background: var(--orange);
	color: var(--white);
}

.rocha-featured-houses--dark .rocha-featured-houses__details svg {
	color: var(--white);
}

.rocha-featured-houses--dark .rocha-featured-houses__details:hover {
	background: var(--orange-light);
	color: var(--white);
}

.rocha-featured-houses--dark .rocha-featured-houses__empty,
.rocha-featured-houses--dark .rocha-featured-houses__empty-filter {
	color: var(--text-muted);
	background: var(--dark-card);
	border: 1px solid rgba(238, 115, 26, 0.1);
}

/* ── Mini hero (inner pages) ── */
.rocha-mini-hero {
	position: relative;
	padding: 8.5rem 6% 4.5rem;
	background: var(--black);
	overflow: hidden;
}

.rocha-mini-hero__bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(
			135deg,
			rgba(0, 0, 0, 0.94) 0%,
			rgba(0, 0, 0, 0.7) 50%,
			rgba(0, 0, 0, 0.9) 100%
		),
		var(--rocha-mini-hero-image) center / cover;
	opacity: 0.9;
}

.rocha-mini-hero__accent {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 12% 30%, rgba(238, 115, 26, 0.2), transparent 55%),
		radial-gradient(circle at 85% 40%, rgba(98, 98, 100, 0.18), transparent 60%);
	pointer-events: none;
}

.rocha-mini-hero__content {
	position: relative;
	z-index: 1;
	max-width: 1100px;
	margin: 0 auto;
}

.rocha-mini-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	font-family: var(--fh);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 1rem;
}

.rocha-mini-hero__eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--orange);
}

.rocha-mini-hero__title {
	margin: 0 0 0.8rem;
	font-family: var(--fh);
	font-size: clamp(2rem, 4.2vw, 3.6rem);
	font-weight: 800;
	color: var(--white);
	text-transform: uppercase;
	line-height: 1.08;
}

.rocha-mini-hero__subtitle {
	margin: 0;
	color: var(--text-muted);
	max-width: 720px;
	line-height: 1.7;
	font-size: 0.95rem;
}

/* ── Text content ── */
.rocha-text-content {
	padding: 4.5rem 6%;
	font-family: var(--fb);
}

.rocha-text-content__inner {
	max-width: var(--rocha-text-max-width, 820px);
	margin: 0 auto;
}

.rocha-text-content--align-center .rocha-text-content__inner {
	text-align: center;
}

.rocha-text-content--align-center .rocha-text-content__eyebrow {
	justify-content: center;
}

.rocha-text-content--align-center .rocha-text-content__eyebrow::before {
	display: none;
}

.rocha-text-content--align-center .rocha-text-content__eyebrow::after {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--orange);
}

.rocha-text-content--has-accent {
	border-top: 3px solid var(--orange);
}

.rocha-text-content--dark {
	background: var(--black);
}

.rocha-text-content--light {
	background: #f7f4ef;
}

.rocha-text-content__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
	font-family: var(--fh);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--orange);
}

.rocha-text-content__eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--orange);
}

.rocha-text-content__title {
	margin: 0 0 1.25rem;
	font-family: var(--fh);
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 800;
	line-height: 1.12;
	text-transform: uppercase;
}

.rocha-text-content--dark .rocha-text-content__title {
	color: var(--white);
}

.rocha-text-content--light .rocha-text-content__title {
	color: #1c2b4a;
}

.rocha-text-content__body {
	font-size: clamp(0.92rem, 1.15vw, 1.02rem);
	line-height: 1.8;
}

.rocha-text-content--dark .rocha-text-content__body,
.rocha-text-content--dark .rocha-text-content__body p {
	color: var(--white);
}

.rocha-text-content--light .rocha-text-content__body,
.rocha-text-content--light .rocha-text-content__body p {
	color: #5c6478;
}

.rocha-text-content__body p {
	margin: 0 0 1.15rem;
}

.rocha-text-content__body p:last-child {
	margin-bottom: 0;
}

.rocha-text-content__body a {
	color: var(--orange);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.rocha-text-content__body a:hover {
	color: var(--orange-light);
}

.rocha-text-content__body strong {
	color: var(--white);
	font-weight: 600;
}

.rocha-text-content--light .rocha-text-content__body strong {
	color: #1c2b4a;
}

/* ── Models grid (rocha_models) ── */
.rocha-models-grid {
	padding: 5rem 6%;
	font-family: var(--fb);
}

.rocha-models-grid__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.rocha-models-grid--dark {
	background: var(--black);
}

.rocha-models-grid--light {
	background: #f7f4ef;
}

.rocha-models-grid__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 3rem;
}

.rocha-models-grid__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
	font-family: var(--fh);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--orange);
}

.rocha-models-grid__eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--orange);
}

.rocha-models-grid__title {
	margin: 0 0 1rem;
	font-family: var(--fh);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	line-height: 1.08;
	text-transform: uppercase;
}

.rocha-models-grid--dark .rocha-models-grid__title {
	color: var(--white);
}

.rocha-models-grid--light .rocha-models-grid__title {
	color: #1c2b4a;
}

.rocha-models-grid__subtitle {
	margin: 0 auto;
	max-width: 640px;
	font-size: 0.95rem;
	line-height: 1.7;
}

.rocha-models-grid--dark .rocha-models-grid__subtitle {
	color: var(--text-muted);
}

.rocha-models-grid--light .rocha-models-grid__subtitle {
	color: #5c6478;
}

.rocha-models-grid__cards {
	display: grid;
	grid-template-columns: repeat(var(--rocha-models-cols, 4), minmax(0, 1fr));
	gap: 1.2rem;
}

.rocha-models-grid__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 16px;
	background: var(--dark-card);
	border: 1px solid rgba(238, 115, 26, 0.08);
	text-decoration: none;
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.rocha-models-grid--light .rocha-models-grid__card {
	background: #fff;
	border-color: #e6e1d8;
	box-shadow: 0 10px 28px rgba(28, 43, 74, 0.06);
}

.rocha-models-grid__card--premium {
	border-color: rgba(238, 115, 26, 0.28);
}

.rocha-models-grid__card:hover {
	transform: translateY(-4px);
	border-color: rgba(238, 115, 26, 0.35);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.rocha-models-grid--light .rocha-models-grid__card:hover {
	box-shadow: 0 16px 36px rgba(28, 43, 74, 0.12);
}

.rocha-models-grid__image-wrap {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
}

.rocha-models-grid--light .rocha-models-grid__image-wrap {
	background: linear-gradient(135deg, #d9dde8 0%, #aeb8cb 100%);
}

.rocha-models-grid__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.rocha-models-grid__image--placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.rocha-models-grid__card:hover .rocha-models-grid__image {
	transform: scale(1.04);
}

.rocha-models-grid__image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}

.rocha-models-grid__body {
	padding: 1.15rem 1.2rem 1.35rem;
	text-align: center;
}

.rocha-models-grid__series {
	display: block;
	margin-bottom: 0.45rem;
	font-family: var(--fh);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--orange);
}

.rocha-models-grid__name {
	margin: 0;
	font-family: var(--fh);
	font-size: clamp(1.35rem, 2vw, 1.85rem);
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
}

.rocha-models-grid--dark .rocha-models-grid__name {
	color: var(--white);
}

.rocha-models-grid--light .rocha-models-grid__name {
	color: #1c2b4a;
}

.rocha-models-grid__empty {
	margin: 0;
	padding: 2rem;
	text-align: center;
	font-size: 0.9rem;
	border-radius: 12px;
}

.rocha-models-grid--dark .rocha-models-grid__empty {
	color: var(--text-muted);
	background: var(--dark-card);
}

.rocha-models-grid--light .rocha-models-grid__empty {
	color: #5c6478;
	background: rgba(255, 255, 255, 0.65);
}

/* ── Split 50/50 (image + text) ── */
.rocha-split {
	padding: 5rem 6%;
	background: var(--black);
	font-family: var(--fb);
}

.rocha-split__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
}

.rocha-split__media {
	position: relative;
}

.rocha-split__image {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.rocha-split__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rocha-split__image::after {
	content: "";
	position: absolute;
	bottom: -12px;
	right: -12px;
	width: 55%;
	height: 55%;
	border: 2px solid var(--orange);
	opacity: 0.2;
	z-index: -1;
	pointer-events: none;
}

.rocha-split__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
	font-family: var(--fh);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--orange);
}

.rocha-split__eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--orange);
}

.rocha-split__title {
	margin: 0 0 1.25rem;
	font-family: var(--fh);
	font-size: clamp(1.65rem, 3vw, 2.5rem);
	font-weight: 800;
	line-height: 1.12;
	text-transform: uppercase;
	color: var(--white);
}

.rocha-split__body {
	font-size: clamp(0.92rem, 1.1vw, 1.02rem);
	line-height: 1.8;
	color: var(--white);
}

.rocha-split__body p {
	margin: 0 0 1.15rem;
	color: var(--white);
}

.rocha-split__body p:last-child {
	margin-bottom: 0;
}

.rocha-split__body a {
	color: var(--orange);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.rocha-split__body a:hover {
	color: var(--orange-light);
}

.rocha-split__body strong {
	color: var(--white);
	font-weight: 600;
}

.rocha-split--image-right .rocha-split__media {
	order: 2;
}

.rocha-split--image-right .rocha-split__content {
	order: 1;
}

.rocha-split--image-right .rocha-split__image::after {
	right: auto;
	left: -12px;
}

.rocha-split__body ul {
	margin: 0 0 1.15rem;
	padding: 0;
	list-style: none;
}

.rocha-split__body ul li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.7rem;
	color: var(--white);
	line-height: 1.65;
}

.rocha-split__body ul li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--orange);
	font-weight: 700;
}

.rocha-split__body ul li:last-child {
	margin-bottom: 0;
}

/* ── Blog grid ── */
.rocha-blog-grid {
	padding: 5rem 6%;
	font-family: var(--fb);
}

.rocha-blog-grid__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.rocha-blog-grid--dark {
	background: var(--black);
}

.rocha-blog-grid--light {
	background: #f7f4ef;
}

.rocha-blog-grid__header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 3rem;
}

.rocha-blog-grid__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.8rem;
	margin-bottom: 1rem;
	font-family: var(--fh);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--orange);
}

.rocha-blog-grid__eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--orange);
}

.rocha-blog-grid__title {
	margin: 0 0 1rem;
	font-family: var(--fh);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	line-height: 1.08;
	text-transform: uppercase;
}

.rocha-blog-grid--dark .rocha-blog-grid__title {
	color: var(--white);
}

.rocha-blog-grid--light .rocha-blog-grid__title {
	color: #1c2b4a;
}

.rocha-blog-grid__subtitle {
	margin: 0 auto;
	max-width: 640px;
	font-size: 0.95rem;
	line-height: 1.7;
}

.rocha-blog-grid--dark .rocha-blog-grid__subtitle {
	color: var(--white);
}

.rocha-blog-grid--light .rocha-blog-grid__subtitle {
	color: #5c6478;
}

.rocha-blog-grid__cards {
	display: grid;
	grid-template-columns: repeat(var(--rocha-blog-cols, 2), minmax(0, 1fr));
	gap: 1.2rem;
}

.rocha-blog-grid__card {
	background: var(--dark-card);
	border: 1px solid rgba(238, 115, 26, 0.06);
	overflow: hidden;
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.rocha-blog-grid--light .rocha-blog-grid__card {
	background: #fff;
	border-color: #e6e1d8;
	box-shadow: 0 10px 28px rgba(28, 43, 74, 0.06);
}

.rocha-blog-grid__card:hover {
	transform: translateY(-3px);
	border-color: rgba(238, 115, 26, 0.2);
}

.rocha-blog-grid__media {
	display: block;
	overflow: hidden;
}

.rocha-blog-grid__media img,
.rocha-blog-grid__media-placeholder {
	display: block;
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.rocha-blog-grid__media-placeholder {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 55%, rgba(238, 115, 26, 0.25) 100%);
}

.rocha-blog-grid--light .rocha-blog-grid__media-placeholder {
	background: linear-gradient(135deg, #d9dde8 0%, #aeb8cb 100%);
}

.rocha-blog-grid__body {
	padding: 1.2rem;
}

.rocha-blog-grid__meta {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.rocha-blog-grid--dark .rocha-blog-grid__meta {
	color: rgba(255, 255, 255, 0.65);
}

.rocha-blog-grid--light .rocha-blog-grid__meta {
	color: #7a8498;
}

.rocha-blog-grid__post-title {
	margin: 0.7rem 0 0.6rem;
	font-family: var(--fh);
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
}

.rocha-blog-grid__post-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.rocha-blog-grid--dark .rocha-blog-grid__post-title {
	color: var(--white);
}

.rocha-blog-grid--light .rocha-blog-grid__post-title {
	color: #1c2b4a;
}

.rocha-blog-grid__post-title a:hover {
	color: var(--orange);
}

.rocha-blog-grid__excerpt {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.7;
}

.rocha-blog-grid--dark .rocha-blog-grid__excerpt {
	color: var(--white);
}

.rocha-blog-grid--light .rocha-blog-grid__excerpt {
	color: #5c6478;
}

.rocha-blog-grid__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	font-family: var(--fh);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orange);
	text-decoration: none;
	transition: color 0.25s ease, gap 0.25s ease;
}

.rocha-blog-grid__link:hover {
	color: var(--orange-light);
	gap: 0.65rem;
}

.rocha-blog-grid__footer {
	margin-top: 2.5rem;
	text-align: center;
}

.rocha-blog-grid__view-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.75rem 1.5rem;
	border: 1px solid rgba(238, 115, 26, 0.35);
	border-radius: 999px;
	font-family: var(--fh);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--orange);
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.rocha-blog-grid__view-all:hover {
	background: var(--orange);
	border-color: var(--orange);
	color: #fff;
}

.rocha-blog-grid__empty {
	margin: 0;
	padding: 2rem;
	text-align: center;
	border: 1px dashed rgba(238, 115, 26, 0.25);
	border-radius: 12px;
	color: var(--text-muted);
}

/* ── Guarantee block (split seal) ── */
.rocha-guarantee-block {
	position: relative;
	padding: 5rem 6%;
	background: linear-gradient(135deg, rgba(238, 115, 26, 0.12) 0%, var(--black) 42%, rgba(238, 115, 26, 0.06) 100%);
	overflow: hidden;
	font-family: var(--fb);
}

.rocha-guarantee-block__glow {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 50%, rgba(238, 115, 26, 0.18), transparent 42%),
		radial-gradient(circle at 88% 30%, rgba(98, 98, 100, 0.12), transparent 50%);
	pointer-events: none;
}

.rocha-guarantee-block__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto;
	padding: 2rem;
	border: 1px solid rgba(238, 115, 26, 0.2);
	border-radius: 24px;
	background: rgba(14, 14, 14, 0.82);
	backdrop-filter: blur(8px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.rocha-guarantee-block__seal {
	display: flex;
	justify-content: center;
}

.rocha-guarantee-block__seal-ring {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 280px;
	aspect-ratio: 1;
	padding: 1.5rem;
	border-radius: 50%;
	text-align: center;
	background:
		radial-gradient(circle at 30% 25%, rgba(238, 115, 26, 0.22), transparent 55%),
		var(--dark-card);
	border: 2px solid rgba(238, 115, 26, 0.45);
	box-shadow:
		0 0 0 8px rgba(238, 115, 26, 0.08),
		0 18px 40px rgba(0, 0, 0, 0.35);
}

.rocha-guarantee-block__shield {
	color: var(--orange);
	margin-bottom: 0.65rem;
}

.rocha-guarantee-block__seal-label {
	display: block;
	margin-bottom: 0.5rem;
	font-family: var(--fh);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--orange-light);
}

.rocha-guarantee-block__stat-num {
	display: block;
	font-family: var(--fh);
	font-size: clamp(3rem, 6vw, 4.5rem);
	font-weight: 800;
	line-height: 1;
	color: var(--white);
}

.rocha-guarantee-block__stat-label {
	display: block;
	margin-top: 0.35rem;
	max-width: 180px;
	font-family: var(--fh);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.35;
	color: var(--cream);
}

.rocha-guarantee-block__experience {
	display: inline-block;
	margin-top: 0.85rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	background: rgba(238, 115, 26, 0.15);
	border: 1px solid rgba(238, 115, 26, 0.35);
	font-family: var(--fh);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--orange);
}

.rocha-guarantee-block__title {
	margin: 0 0 1.25rem;
	font-family: var(--fh);
	font-size: clamp(1.75rem, 3.2vw, 2.6rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--white);
	text-transform: uppercase;
}

.rocha-guarantee-block__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	margin-top: 0.85rem;
	background: linear-gradient(90deg, var(--orange), var(--orange-light));
	border-radius: 999px;
}

.rocha-guarantee-block__body {
	font-size: clamp(0.92rem, 1.1vw, 1.02rem);
	line-height: 1.8;
	color: var(--white);
}

.rocha-guarantee-block__body p {
	margin: 0 0 1rem;
	color: var(--white);
}

.rocha-guarantee-block__body p:last-child {
	margin-bottom: 0;
}

.rocha-guarantee-block__footnote {
	margin: 1.25rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid rgba(238, 115, 26, 0.15);
	font-size: 0.75rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.75);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.rocha-split__inner {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.rocha-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

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

	.rocha-featured-houses__grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 768px) {
	.rocha-nav .nav-links {
		display: none;
	}

	.rocha-nav .mobile-toggle {
		display: flex;
	}

	.rocha-nav .nav-links.open {
		display: flex;
		flex-direction: column;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.98);
		justify-content: center;
		align-items: center;
		gap: 1.8rem;
		z-index: 999;
	}

	.rocha-nav .nav-links.open a {
		font-size: 1.1rem;
	}

	.rocha-nav .nav-links.open .nav-lang {
		margin: 0.25rem 0;
	}

	.rocha-hero-centered {
		min-height: clamp(480px, 70vh, 720px);
		padding: 7rem 5% 3.5rem;
	}

	.rocha-hero-centered .hero-title {
		font-size: clamp(1.85rem, 8vw, 2.6rem);
		margin-bottom: 1.25rem;
	}

	.rocha-footer__grid {
		grid-template-columns: 1fr;
	}

	.rocha-phone-float .rocha-float-label,
	.rocha-whatsapp-float .rocha-float-label {
		display: none;
	}

	.rocha-cities-grid {
		padding: 4rem 5%;
	}

	.rocha-cities-grid__cards {
		grid-template-columns: 1fr;
	}

	.rocha-cities-grid__card {
		min-height: 280px;
	}

	.rocha-featured-houses {
		padding: 4rem 5%;
	}

	.rocha-featured-houses__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.rocha-featured-houses__filters {
		width: 100%;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	.rocha-featured-houses__card {
		grid-template-columns: 1fr;
	}

	.rocha-featured-houses__thumb,
	.rocha-featured-houses__thumb img,
	.rocha-featured-houses__thumb-placeholder {
		min-height: 200px;
	}

	.rocha-featured-houses__body {
		padding-right: 0;
	}

	.rocha-mini-hero {
		padding: 7rem 5% 3.5rem;
	}

	.rocha-text-content {
		padding: 3.5rem 5%;
	}

	.rocha-models-grid {
		padding: 4rem 5%;
	}

	.rocha-guarantee-block {
		padding: 4rem 5%;
	}

	.rocha-split {
		padding: 4rem 5%;
	}

	.rocha-blog-grid {
		padding: 4rem 5%;
	}

	.rocha-blog-grid__cards {
		grid-template-columns: 1fr;
	}

	.rocha-models-grid__cards {
		grid-template-columns: 1fr;
	}

	.rocha-guarantee-block__inner {
		grid-template-columns: 1fr;
		gap: 2rem;
		padding: 1.5rem;
	}

	.rocha-guarantee-block__seal-ring {
		max-width: 220px;
	}
}
