/* ==========================================================================
   HOME — Soria Casas
   Prefijo: .sc-home-*
   Tipografía: Cormorant Garamond (headers) + DM Sans (body)
   Breakpoints: 900 px (tablet), 600 px (móvil)
   ========================================================================== */

/* ── Reset & Variables ───────────────────────────────────────────────────── */
.sc-home {
	--azul: #4a8fcc;
	--azul-hover: #3a7fb8;
	--azul-dark: #2d6ea0;
	--azul-dk: #1c3d5a;
	--azul-light: rgba(74, 143, 204, 0.08);
	--azul-subtle: rgba(74, 143, 204, 0.15);
	--beige: #fbf5e9;
	--beige-dark: #f0e8d5;
	--blanco: #ffffff;
	--gris-texto: #54585e;
	--negro: #333333;
	--borde: #e5e5e5;
	--sombra: 0 2px 16px rgba(0, 0, 0, 0.08);
	--sombra-hover: 0 8px 32px rgba(0, 0, 0, 0.14);
	--radio: 12px;
	--radio-sm: 8px;
	--max-width: 1200px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-home,
.sc-home *,
.sc-home *::before,
.sc-home *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

.sc-home {
	font-family: 'DM Sans', sans-serif;
	color: var(--negro);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow: clip;
	overflow-x: clip;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.sc-home h1,
.sc-home h2,
.sc-home h3,
.sc-home h4 {
	font-family: 'Cormorant Garamond', serif;
	color: var(--negro);
	line-height: 1.15;
}

.sc-home p {
	font-family: 'DM Sans', sans-serif;
	color: var(--gris-texto);
	font-size: 15px;
	line-height: 1.75;
}

.sc-home img {
	max-width: 100%;
	height: auto;
}

.sc-home em {
	font-style: italic;
	color: var(--azul);
}

.sc-home a {
	text-decoration: none;
}

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

@keyframes schFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes schMobilePulse {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.03); }
}

.sc-home-rv {
	opacity: 0;
	transform: translateY(35px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.sc-home-rv.vis {
	opacity: 1;
	transform: translateY(0);
}

.sc-home-rvl {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.sc-home-rvl.vis {
	opacity: 1;
	transform: translateX(0);
}

.sc-home-rvr {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.sc-home-rvr.vis {
	opacity: 1;
	transform: translateX(0);
}

/* ── Shared Components ───────────────────────────────────────────────────── */
.sc-home-label {
	display: block;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--azul);
	margin-bottom: 12px;
}

.sc-home-label::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 2px;
	background: var(--azul);
	margin-right: 10px;
	vertical-align: middle;
}

.sc-home-divider {
	width: 60px;
	height: 3px;
	background: var(--azul);
	border-radius: 2px;
	margin-bottom: 24px;
}

.sc-home-divider.center {
	margin-left: auto;
	margin-right: auto;
}

.sc-home-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--azul);
	text-decoration: none;
	transition: all var(--transition);
}

.sc-home-arrow:hover {
	gap: 10px;
}

.sc-home-arrow svg {
	transition: inherit;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.sc-home-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 28px;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	border-radius: var(--radio-sm);
	border: none;
	cursor: pointer;
	transition: all var(--transition);
}

.sc-home-btn--primary {
	background: var(--azul);
	color: #fff;
}

.sc-home-btn--primary:hover {
	background: var(--azul-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(74, 143, 204, 0.35);
}

.sc-home-btn--secondary {
	background: #fff;
	color: var(--negro);
	border: 1px solid var(--borde);
}

.sc-home-btn--secondary:hover {
	border-color: var(--azul);
	color: var(--azul);
	transform: translateY(-2px);
}

.sc-home-btn--white {
	background: #fff;
	color: var(--azul);
}

.sc-home-btn--white:hover {
	background: var(--beige);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.sc-home-btn--ghost {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.sc-home-btn--ghost:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-2px);
}

/* ── Pills ───────────────────────────────────────────────────────────────── */
.sc-home-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 7px 14px;
	background: var(--beige);
	border-radius: 30px;
	font-family: 'DM Sans', sans-serif;
	font-size: 12.5px;
	font-weight: 500;
	color: var(--negro);
	transition: all var(--transition);
}

.sc-home-pill:hover {
	background: var(--azul-light);
	transform: translateY(-1px);
}

.sc-home-pill svg {
	flex-shrink: 0;
	stroke: var(--azul);
}

/* ==========================================================================
   1. HERO
   ========================================================================== */
.sc-home-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	position: relative;
	background: var(--beige);
	min-width: 0;
}

.sc-home-hero__left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 64px 80px 0;
	padding-left: max(24px, calc((100vw - 1200px) / 2));
	min-width: 0;
}

.sc-home-hero__right {
	position: relative;
	overflow: hidden;
	min-height: 400px;
}

.sc-home-hero__right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	display: block;
	transition: transform 10s ease;
}

.sc-home-hero__right:hover img {
	transform: scale(1.02);
}

.sc-home-hero__right-fade {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 100%;
	background: linear-gradient(90deg, var(--beige), transparent);
	z-index: 1;
	pointer-events: none;
}

.sc-home-hero__eyebrow {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--azul);
	margin-bottom: 24px;
	animation: schFadeUp 0.7s ease 0.1s both;
}

.sc-home-hero h1 {
	font-size: 50px;
	font-weight: 400;
	margin-bottom: 20px;
	max-width: 500px;
	animation: schFadeUp 0.8s ease 0.2s both;
}

.sc-home-hero h1 strong {
	font-weight: 600;
}

.sc-home-hero__sub {
	font-size: 16px;
	max-width: 440px;
	margin-bottom: 16px;
	animation: schFadeUp 0.8s ease 0.35s both;
}

.sc-home-hero__sub2 {
	font-size: 14px;
	max-width: 440px;
	margin-bottom: 36px;
	animation: schFadeUp 0.8s ease 0.42s both;
}

.sc-home-hero__btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	animation: schFadeUp 0.8s ease 0.5s both;
}

.sc-home-hero__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-top: 40px;
	animation: schFadeUp 0.8s ease 0.6s both;
}

.sc-home-hero__stat {
	padding: 16px 20px;
	border-right: 1px solid var(--borde);
	text-align: center;
}

.sc-home-hero__stat:last-child {
	border-right: none;
}

.sc-home-hero__stat:first-child {
	padding-left: 0;
}

.sc-home-hero__stat-n {
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	font-weight: 600;
	color: var(--azul);
	line-height: 1;
}

.sc-home-hero__stat-l {
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	color: var(--gris-texto);
	margin-top: 3px;
}

/* ==========================================================================
   2. VENDER (SELL)
   ========================================================================== */
.sc-home-sell {
	background: var(--blanco);
	padding: 72px 24px;
}

.sc-home-sell__inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: center;
	min-width: 0;
}

.sc-home-sell__img,
.sc-home-sell__content {
	min-width: 0;
}

.sc-home-sell__img {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--sombra);
}

.sc-home-sell__img img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s ease;
}

.sc-home-sell__img:hover img {
	transform: scale(1.02);
}

.sc-home-sell__content h2 {
	font-size: 34px;
	font-weight: 500;
	margin-bottom: 20px;
}

.sc-home-sell__content p {
	margin-bottom: 14px;
}

.sc-home-sell__content p strong {
	color: var(--negro);
}

.sc-home-sell__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 20px 0 24px;
}

/* ==========================================================================
   3. PROPIEDADES
   ========================================================================== */
.sc-home-props {
	background: var(--beige);
	padding: 72px 24px;
}

.sc-home-props__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 32px;
	flex-wrap: wrap;
	gap: 16px;
}

.sc-home-props__head h2 {
	font-size: 34px;
	font-weight: 500;
}

.sc-home-props__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	min-width: 0;
}

.sc-home-prop {
	background: #fff;
	border-radius: var(--radio);
	overflow: hidden;
	border: 1px solid var(--borde);
	transition: all var(--transition);
	text-decoration: none;
	color: inherit;
	display: block;
	min-width: 0;
}

.sc-home-prop:hover {
	transform: translateY(-4px);
	box-shadow: var(--sombra-hover);
}

.sc-home-prop__img {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.sc-home-prop__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sc-home-prop:hover .sc-home-prop__img img {
	transform: scale(1.04);
}

.sc-home-prop__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 4px;
	z-index: 1;
}

.sc-home-prop__badge--vta {
	background: var(--azul);
	color: #fff;
}

.sc-home-prop__badge--alq {
	background: #2e7d32;
	color: #fff;
}

.sc-home-prop__body {
	padding: 20px;
}

.sc-home-prop__type {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: var(--azul);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

.sc-home-prop h4 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
}

.sc-home-prop__price {
	font-family: 'Cormorant Garamond', serif;
	font-size: 24px;
	font-weight: 600;
	color: var(--azul);
	margin-bottom: 10px;
}

.sc-home-prop__meta {
	display: flex;
	gap: 14px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: var(--gris-texto);
}

/* ==========================================================================
   4. COMPRAR (BUY)
   ========================================================================== */
.sc-home-buy {
	background: var(--blanco);
	padding: 72px 24px;
}

.sc-home-buy__inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 56px;
	align-items: center;
	min-width: 0;
}

.sc-home-buy__content,
.sc-home-buy__img {
	min-width: 0;
}

.sc-home-buy__content h2 {
	font-size: 34px;
	font-weight: 500;
	margin-bottom: 20px;
}

.sc-home-buy__content p {
	margin-bottom: 14px;
}

.sc-home-buy__content p strong {
	color: var(--negro);
}

.sc-home-buy__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 20px 0 0;
}

.sc-home-buy__feat {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: var(--beige);
	border-radius: var(--radio-sm);
	transition: all var(--transition);
}

.sc-home-buy__feat:hover {
	background: var(--azul-light);
	transform: translateY(-1px);
}

.sc-home-buy__feat svg {
	flex-shrink: 0;
	stroke: var(--azul);
}

.sc-home-buy__feat span {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--negro);
}

.sc-home-buy__img {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--sombra);
}

.sc-home-buy__img img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s ease;
}

.sc-home-buy__img:hover img {
	transform: scale(1.02);
}

/* ==========================================================================
   5. HOME STAGING — Minimal inline showcase
   ========================================================================== */
.sc-home-hs {
	background: var(--blanco);
	padding: 40px 24px;
}

.sc-home-hs__inner {
	max-width: 740px !important;
	border-top: 1px solid var(--borde);
	border-bottom: 1px solid var(--borde);
	padding: 32px 0;
}

.sc-home-hs__head {
	text-align: center;
	margin-bottom: 20px;
}

.sc-home-hs__head .sc-home-label {
	margin-bottom: 6px;
	font-size: 11px;
}

.sc-home-hs__head .sc-home-label::before {
	display: none;
}

.sc-home-hs__head h2 {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 0;
	letter-spacing: -0.01em;
}

.sc-home-hs__head .sc-home-divider {
	display: none;
}

.sc-home-hs__head p {
	display: none;
}

/* Layout: slider + thumbs a la derecha */
.sc-home-hs__layout {
	display: grid;
	grid-template-columns: 1fr 100px;
	gap: 12px;
	align-items: start;
}

/* ── Slider ── */
.sc-home-hs__slider-wrap {
	width: 100%;
}

.sc-home-hs__slider {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	aspect-ratio: 16 / 10;
	background: #f2f2f2;
	cursor: col-resize;
	user-select: none;
	-webkit-user-select: none;
}

.sc-home-hs__slider-before,
.sc-home-hs__slider-after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.sc-home-hs__slider-before {
	z-index: 2;
	clip-path: inset(0 50% 0 0);
}

.sc-home-hs__slider-after {
	z-index: 1;
}

.sc-home-hs__slider-before img,
.sc-home-hs__slider-after img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sc-home-hs__slider-handle {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	z-index: 3;
	width: 1px;
	background: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
	transform: translateX(-50%);
	cursor: col-resize;
}

.sc-home-hs__slider-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fff;
	border: none;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sc-home-hs__slider-circle svg {
	width: 14px;
	height: 14px;
	stroke: var(--gris-texto);
}

.sc-home-hs__slider-label {
	position: absolute;
	top: 10px;
	z-index: 4;
	font-family: 'DM Sans', sans-serif;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 12px;
	pointer-events: none;
}

.sc-home-hs__slider-label--before {
	left: 10px;
	background: rgba(0, 0, 0, 0.35);
	color: rgba(255, 255, 255, 0.8);
}

.sc-home-hs__slider-label--after {
	right: 10px;
	background: rgba(0, 0, 0, 0.35);
	color: rgba(255, 255, 255, 0.8);
}

/* ── Thumbs (vertical, right side) ── */
.sc-home-hs__thumbs {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.sc-home-hs__thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 2;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: all 0.25s ease;
	flex-shrink: 0;
	background: none;
	padding: 0;
	opacity: 0.45;
}

.sc-home-hs__thumb:hover {
	opacity: 0.75;
}

.sc-home-hs__thumb--active {
	opacity: 1;
	border-color: var(--azul);
}

.sc-home-hs__thumb-full {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sc-home-hs__thumb-split {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
}

.sc-home-hs__thumb-split img {
	width: 200%;
	height: 100%;
	object-fit: cover;
}

.sc-home-hs__thumb-divider {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	z-index: 2;
}

/* ── Móvil: animación automática ── */
.sc-home-hs__mobile {
	display: none;
}

.sc-home-hs__mobile-frame {
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	aspect-ratio: 16 / 10;
	background: #f2f2f2;
}

.sc-home-hs__mobile-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-home-hs__mobile-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	font-family: 'DM Sans', sans-serif;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.8);
	transition: background 0.5s ease;
	z-index: 2;
}

.sc-home-hs__mobile-badge--antes {
	background: rgba(0, 0, 0, 0.35);
}

.sc-home-hs__mobile-badge--despues {
	background: rgba(0, 0, 0, 0.35);
}

.sc-home-hs__mobile-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 12px;
}

.sc-home-hs__mobile-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--borde);
	transition: all var(--transition);
}

.sc-home-hs__mobile-dot--active {
	background: var(--negro);
}

.sc-home-hs__link {
	text-align: center;
	margin-top: 14px;
}

/* ==========================================================================
   6. EMPRESA (ABOUT)
   ========================================================================== */
.sc-home-about {
	background: var(--blanco);
	padding: 72px 24px;
}

.sc-home-about__inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 56px;
	align-items: center;
	min-width: 0;
}

.sc-home-about__imgs,
.sc-home-about__content {
	min-width: 0;
}

.sc-home-about__imgs {
	position: relative;
	min-height: 380px;
}

.sc-home-about__img1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 68%;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.sc-home-about__img1 img {
	width: 100%;
	height: auto;
	display: block;
}

.sc-home-about__img2 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 52%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
	border: 5px solid #fff;
	z-index: 2;
}

.sc-home-about__img2 img {
	width: 100%;
	height: auto;
	display: block;
}

.sc-home-about__content h2 {
	font-size: 34px;
	font-weight: 500;
	margin-bottom: 20px;
}

.sc-home-about__content p {
	margin-bottom: 14px;
}

.sc-home-about__content p strong {
	color: var(--negro);
}

/* ==========================================================================
   7. TESTIMONIOS (REVIEWS) — Google Reviews cards
   ========================================================================== */
.sc-home-rev {
	background: var(--beige);
	padding: 72px 24px;
}

.sc-home-rev__head {
	text-align: center;
	margin-bottom: 12px;
}

.sc-home-rev__head h2 {
	font-size: 34px;
	font-weight: 500;
	margin-bottom: 8px;
}

/* ── Google badge ── */
.sc-home-rev__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 32px;
}

.sc-home-rev__badge-rating {
	font-family: 'Cormorant Garamond', serif;
	font-size: 28px;
	font-weight: 600;
	color: var(--negro);
	line-height: 1;
}

.sc-home-rev__badge-stars {
	display: flex;
	align-items: center;
	gap: 2px;
}

.sc-home-rev__badge-total {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: var(--gris-texto);
}

/* ── Review cards grid ── */
.sc-home-rev__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 32px;
	min-width: 0;
}

.sc-home-rev__card {
	background: #fff;
	border-radius: var(--radio);
	padding: 24px;
	border: 1px solid var(--borde);
	transition: all var(--transition);
	min-width: 0;
}

.sc-home-rev__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--sombra-hover);
}

.sc-home-rev__card-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.sc-home-rev__avatar {
	width: 36px;
	height: 36px;
	min-width: 36px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--azul-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sc-home-rev__avatar img {
	width: 36px;
	height: 36px;
	object-fit: cover;
	border-radius: 50%;
}

.sc-home-rev__avatar span {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--azul);
	text-transform: uppercase;
}

.sc-home-rev__card-name {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--negro);
}

.sc-home-rev__card-stars {
	display: flex;
	align-items: center;
	gap: 1px;
	margin-top: 2px;
}

.sc-home-rev__card-text {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	color: var(--gris-texto);
	line-height: 1.6;
	margin-top: 4px;
}

/* ── Links footer ── */
.sc-home-rev__links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}

/* ==========================================================================
   8. BLOG
   ========================================================================== */
.sc-home-blog {
	background: var(--blanco);
	padding: 72px 24px;
}

.sc-home-blog__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 32px;
	flex-wrap: wrap;
	gap: 16px;
}

.sc-home-blog__head h2 {
	font-size: 34px;
	font-weight: 500;
}

.sc-home-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	min-width: 0;
}

.sc-home-blog__card {
	background: #fff;
	border-radius: var(--radio);
	overflow: hidden;
	border: 1px solid var(--borde);
	transition: all var(--transition);
	text-decoration: none;
	color: inherit;
	display: block;
	min-width: 0;
}

.sc-home-blog__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--sombra-hover);
}

.sc-home-blog__card-img {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.sc-home-blog__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.sc-home-blog__card:hover .sc-home-blog__card-img img {
	transform: scale(1.04);
}

.sc-home-blog__card-body {
	padding: 20px;
}

.sc-home-blog__card-cat {
	font-family: 'DM Sans', sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: var(--azul);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 6px;
}

.sc-home-blog__card-body h4 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 8px;
	line-height: 1.3;
}

.sc-home-blog__card-body p {
	font-size: 13.5px;
	color: var(--gris-texto);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ==========================================================================
   9. CTA
   ========================================================================== */
.sc-home-cta {
	background: var(--azul);
	padding: 64px 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.sc-home-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
	pointer-events: none;
}

.sc-home-cta::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.03);
	pointer-events: none;
}

.sc-home-cta h2 {
	font-size: 34px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 14px;
}

.sc-home-cta p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	margin-bottom: 28px;
}

.sc-home-cta__btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ==========================================================================
   10. FAQ
   ========================================================================== */
.sc-home-faq {
	background: var(--beige);
	padding: 72px 24px;
}

.sc-home-faq__head {
	text-align: center;
	margin-bottom: 36px;
}

.sc-home-faq__head h2 {
	font-size: 34px;
	font-weight: 500;
	margin-bottom: 12px;
}

.sc-home-faq__head p {
	font-size: 15px;
	max-width: 540px;
	margin: 0 auto;
}

.sc-home-faq__item {
	border-bottom: 1px solid var(--borde);
	background: #fff;
}

.sc-home-faq__item:first-child {
	border-top: 1px solid var(--borde);
	border-radius: var(--radio) var(--radio) 0 0;
}

.sc-home-faq__item:last-child {
	border-radius: 0 0 var(--radio) var(--radio);
}

.sc-home-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	transition: all var(--transition);
}

.sc-home-faq__question:hover {
	background: var(--azul-light);
}

.sc-home-faq__question h3 {
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: var(--negro);
	flex: 1;
	min-width: 0;
	transition: color var(--transition);
}

.sc-home-faq__question.active h3 {
	color: var(--azul);
}

.sc-home-faq__icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--azul-light);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all var(--transition);
}

.sc-home-faq__question.active .sc-home-faq__icon {
	background: var(--azul);
}

.sc-home-faq__icon svg {
	transition: all var(--transition);
}

.sc-home-faq__question.active .sc-home-faq__icon svg {
	transform: rotate(180deg);
	stroke: #fff;
}

.sc-home-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-home-faq__answer.open {
	max-height: 350px;
}

.sc-home-faq__answer-inner {
	padding: 0 24px 20px;
}

.sc-home-faq__answer-inner p {
	font-size: 14.5px;
	margin-bottom: 6px;
}

.sc-home-faq__answer-inner p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   11. CONTACTO
   ========================================================================== */
.sc-home-contact {
	background: var(--blanco);
	padding: 72px 24px;
}

.sc-home-contact__inner {
	text-align: center;
}

.sc-home-contact h2 {
	font-size: 34px;
	font-weight: 500;
	margin-bottom: 12px;
}

.sc-home-contact p {
	font-size: 15px;
	max-width: 520px;
	margin: 0 auto 32px;
}

.sc-home-contact__items {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.sc-home-contact__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 28px;
	background: var(--beige);
	border-radius: var(--radio);
	text-decoration: none;
	transition: all var(--transition);
	border: 1px solid transparent;
}

.sc-home-contact__item:hover {
	border-color: var(--azul);
	transform: translateY(-2px);
	box-shadow: var(--sombra);
}

.sc-home-contact__ic {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--azul-light);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--transition);
}

.sc-home-contact__item:hover .sc-home-contact__ic {
	background: var(--azul);
}

.sc-home-contact__ic svg {
	transition: all var(--transition);
}

.sc-home-contact__item:hover .sc-home-contact__ic svg {
	stroke: #fff;
}

.sc-home-contact__item strong {
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: var(--negro);
	display: block;
	word-break: break-word;
}

.sc-home-contact__item span {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	color: var(--gris-texto);
}

/* ==========================================================================
   TOUCH / TAP TARGETS
   ========================================================================== */
.sc-home-faq__question,
.sc-home-hs__thumb,
.sc-home-rev__dot,
.sc-home-hs__mobile-dot,
.sc-home-contact__item,
.sc-home-btn {
	-webkit-tap-highlight-color: transparent;
}

/* ==========================================================================
   ACCESSIBILITY — prefers-reduced-motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	.sc-home-rv,
	.sc-home-rvl,
	.sc-home-rvr {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.sc-home-hero__eyebrow,
	.sc-home-hero h1,
	.sc-home-hero__sub,
	.sc-home-hero__sub2,
	.sc-home-hero__btns,
	.sc-home-hero__stats {
		animation: none;
		opacity: 1;
	}

	.sc-home-hero__right img {
		transition: none;
	}

	.sc-home-sell__img img,
	.sc-home-buy__img img,
	.sc-home-prop__img img,
	.sc-home-blog__card-img img {
		transition: none;
	}

	.sc-home-hs__mobile-frame img {
		transition: none;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}

/* ==========================================================================
   RESPONSIVE — Tablet (≤ 900px)
   ========================================================================== */
@media (max-width: 900px) {

	/* ── Section padding reduction ── */
	.sc-home-sell,
	.sc-home-props,
	.sc-home-buy,
	.sc-home-about,
	.sc-home-rev,
	.sc-home-blog,
	.sc-home-faq,
	.sc-home-contact {
		padding: 48px 20px;
	}

	.sc-home-hs {
		padding: 32px 20px;
	}

	.sc-home-hs__head h2 {
		font-size: 20px;
	}

	.sc-home-cta {
		padding: 48px 20px;
	}

	/* ── Hero ── */
	.sc-home-hero {
		grid-template-columns: 1fr;
	}

	.sc-home-hero__right {
		order: -1;
		height: 280px;
		min-height: auto;
	}

	.sc-home-hero__right-fade {
		width: 100%;
		height: 60px;
		top: auto;
		bottom: 0;
		background: linear-gradient(180deg, transparent, var(--beige));
		left: 0;
	}

	.sc-home-hero__left {
		padding: 32px 20px 48px;
	}

	.sc-home-hero h1 {
		font-size: 34px;
		max-width: none;
	}

	.sc-home-hero__sub {
		max-width: none;
	}

	.sc-home-hero__sub2 {
		max-width: none;
	}

	.sc-home-hero__stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.sc-home-hero__stat:nth-child(2) {
		border-right: none;
	}

	.sc-home-hero__stat:nth-child(3) {
		padding-top: 12px;
		border-top: 1px solid var(--borde);
		border-right: none;
	}

	/* ── Section h2 font reduction ── */
	.sc-home-sell__content h2,
	.sc-home-buy__content h2,
	.sc-home-about__content h2,
	.sc-home-props__head h2,
	.sc-home-blog__head h2,
	.sc-home-hs__head h2,
	.sc-home-rev__head h2,
	.sc-home-faq__head h2,
	.sc-home-contact h2 {
		font-size: 28px;
	}

	/* ── Sell / Buy / About — stack to 1 col ── */
	.sc-home-sell__inner,
	.sc-home-buy__inner,
	.sc-home-about__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	/* Sell: image on top on tablet */
	.sc-home-sell__img {
		order: -1;
	}

	.sc-home-about__imgs {
		min-height: auto;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.sc-home-about__img1,
	.sc-home-about__img2 {
		position: relative;
		width: 100%;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		border: none;
	}

	/* ── Props grid: 2 cols on tablet ── */
	.sc-home-props__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* ── Blog grid: stays at 3→1 (cards too narrow at 2) ── */
	.sc-home-blog__grid {
		grid-template-columns: 1fr;
	}

	/* ── Home Staging: switch to mobile animation ── */
	.sc-home-hs__layout {
		display: none;
	}

	.sc-home-hs__mobile {
		display: block;
	}

	/* ── Reviews grid: horizontal slider on tablet ── */
	.sc-home-rev__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 16px;
		padding-bottom: 4px;
		scrollbar-width: none;
		max-width: 100%;
	}

	.sc-home-rev__grid::-webkit-scrollbar {
		display: none;
	}

	.sc-home-rev__card {
		min-width: 46%;
		flex-shrink: 0;
		scroll-snap-align: start;
	}

	/* ── Buy features: stays 2 cols on tablet ── */
	.sc-home-buy__features {
		grid-template-columns: 1fr 1fr;
	}

	/* ── FAQ answer expanded height ── */
	.sc-home-faq__answer.open {
		max-height: 400px;
	}
}

/* ==========================================================================
   RESPONSIVE — Movil (≤ 600px)
   Mobile-first UX: 80% del tráfico. Cada pixel cuenta.
   ========================================================================== */
@media (max-width: 600px) {

	/* ── Section padding — compacto pero respirable ── */
	.sc-home-sell,
	.sc-home-props,
	.sc-home-buy,
	.sc-home-about,
	.sc-home-rev,
	.sc-home-blog,
	.sc-home-faq,
	.sc-home-contact {
		padding: 32px 16px;
	}

	.sc-home-hs {
		padding: 24px 16px;
	}

	.sc-home-hs__head h2 {
		font-size: 18px;
	}

	.sc-home-cta {
		padding: 36px 16px;
	}

	/* ── Hero — impacto visual máximo ── */
	.sc-home-hero__right {
		height: 220px;
	}

	.sc-home-hero__left {
		padding: 24px 16px 28px;
	}

	.sc-home-hero h1 {
		font-size: 28px;
		line-height: 1.18;
	}

	.sc-home-hero__sub {
		font-size: 14.5px;
		margin-bottom: 10px;
		line-height: 1.65;
	}

	.sc-home-hero__sub2 {
		font-size: 13px;
		margin-bottom: 20px;
		line-height: 1.6;
	}

	.sc-home-hero__eyebrow {
		font-size: 10px;
		letter-spacing: 0.15em;
		margin-bottom: 14px;
	}

	.sc-home-hero__btns {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.sc-home-hero__btns .sc-home-btn {
		width: 100%;
		justify-content: center;
		padding: 14px 20px;
		font-size: 14px;
	}

	/* Stats: 3 columnas (tenemos exactamente 3) */
	.sc-home-hero__stats {
		grid-template-columns: repeat(3, 1fr);
		margin-top: 20px;
	}

	.sc-home-hero__stat {
		padding: 12px 8px;
		border-right: 1px solid var(--borde);
	}

	.sc-home-hero__stat:first-child {
		padding-left: 0;
	}

	.sc-home-hero__stat:last-child {
		border-right: none;
	}

	/* Reset tablet 2-col overrides for mobile 3-col */
	.sc-home-hero__stat:nth-child(2) {
		border-right: 1px solid var(--borde);
	}

	.sc-home-hero__stat:nth-child(3) {
		padding-top: 12px;
		border-top: none;
		border-right: none;
	}

	.sc-home-hero__stat-n {
		font-size: 20px;
	}

	.sc-home-hero__stat-l {
		font-size: 9px;
		line-height: 1.3;
	}

	/* ── Section h2 ── */
	.sc-home-sell__content h2,
	.sc-home-buy__content h2,
	.sc-home-about__content h2,
	.sc-home-props__head h2,
	.sc-home-blog__head h2,
	.sc-home-hs__head h2,
	.sc-home-rev__head h2,
	.sc-home-faq__head h2,
	.sc-home-contact h2 {
		font-size: 24px;
	}

	/* ── Body text — legible ── */
	.sc-home-sell__content p,
	.sc-home-buy__content p,
	.sc-home-about__content p {
		font-size: 14px;
		line-height: 1.7;
	}

	/* ── Sell: ocultar imagen, texto es el protagonista ── */
	.sc-home-sell__img {
		display: none;
	}

	/* ── Buy: ocultar imagen decorativa ── */
	.sc-home-buy__img {
		display: none;
	}

	/* ── Buy features: 1 col on mobile ── */
	.sc-home-buy__features {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.sc-home-buy__feat {
		padding: 14px 16px;
	}

	/* ── CTA — destacado ── */
	.sc-home-cta h2 {
		font-size: 24px;
	}

	.sc-home-cta p {
		font-size: 14px;
	}

	.sc-home-cta__btns {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.sc-home-cta__btns .sc-home-btn {
		width: 100%;
		justify-content: center;
		padding: 14px 20px;
	}

	/* ── Contact — items como botones claros ── */
	.sc-home-contact__items {
		flex-direction: column;
		gap: 10px;
	}

	.sc-home-contact__item {
		padding: 16px 20px;
	}

	/* ── Props grid: 1 col ── */
	.sc-home-props__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	/* ── Flex heads stack ── */
	.sc-home-props__head,
	.sc-home-blog__head {
		flex-direction: column;
		align-items: flex-start;
	}

	/* ── About: solo foto Mayte, centrada ── */
	.sc-home-about__imgs {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin: 0 auto;
	}

	.sc-home-about__img1 {
		display: none;
	}

	.sc-home-about__img2 {
		border-radius: 12px;
	}

	/* ── FAQ — touch-friendly ── */
	.sc-home-faq__question {
		padding: 16px 16px;
		gap: 12px;
		min-height: 48px;
	}

	.sc-home-faq__question h3 {
		font-size: 14px;
	}

	.sc-home-faq__answer-inner {
		padding: 0 16px 16px;
	}

	.sc-home-faq__answer-inner p {
		font-size: 13.5px;
	}

	.sc-home-faq__answer.open {
		max-height: 500px;
	}

	/* ── Pills — legibles ── */
	.sc-home-sell__pills {
		gap: 6px;
	}

	.sc-home-pill {
		font-size: 12px;
		padding: 7px 12px;
	}

	/* ── Reviews — tarjetas completas y legibles ── */
	.sc-home-rev__badge {
		gap: 8px;
		margin-bottom: 20px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.sc-home-rev__badge-rating {
		font-size: 22px;
	}

	.sc-home-rev__badge-stars svg {
		width: 12px;
		height: 12px;
	}

	.sc-home-rev__badge-total {
		font-size: 12px;
	}

	.sc-home-rev__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 12px;
		padding-bottom: 8px;
		margin-bottom: 20px;
		scrollbar-width: none;
	}

	.sc-home-rev__grid::-webkit-scrollbar {
		display: none;
	}

	.sc-home-rev__card {
		min-width: 92%;
		flex-shrink: 0;
		scroll-snap-align: center;
		padding: 20px;
	}

	.sc-home-rev__card-text {
		font-size: 14px;
		line-height: 1.65;
		/* Sin clamp: se lee la reseña completa */
	}

	.sc-home-rev__card-head {
		margin-bottom: 10px;
	}

	.sc-home-rev__links {
		flex-direction: column;
		gap: 12px;
	}

	.sc-home-rev__links .sc-home-btn {
		width: 100%;
		justify-content: center;
		padding: 14px 20px;
		font-size: 14px;
	}

	/* ── Home Staging mobile ── */
	.sc-home-hs__mobile-frame {
		aspect-ratio: 4 / 3;
		border-radius: 12px;
	}

	.sc-home-hs__head p {
		font-size: 14px;
	}

	/* ── Blog cards ── */
	.sc-home-blog__grid {
		gap: 16px;
	}

	.sc-home-blog__card-body {
		padding: 16px;
	}

	.sc-home-blog__card-body h4 {
		font-size: 16px;
	}

	/* ── Prop cards ── */
	.sc-home-prop__body {
		padding: 16px;
	}

	.sc-home-prop h4 {
		font-size: 16px;
	}

	.sc-home-prop__price {
		font-size: 20px;
	}

	/* ── Arrows — zona táctil generosa ── */
	.sc-home-arrow {
		font-size: 13px;
		padding: 8px 0;
	}

	/* ── Label ── */
	.sc-home-label {
		font-size: 11px;
		letter-spacing: 0.12em;
	}

	.sc-home-label::before {
		width: 18px;
		margin-right: 8px;
	}

	/* ── Divider ── */
	.sc-home-divider {
		width: 40px;
		margin-bottom: 16px;
	}
}
