/* ======================================================
   HOME — Tienda Inglesa Panel Online
   homeStyles.css
   ====================================================== */

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100%;
	background: #ffffff !important;
	font-family: 'Inter', sans-serif;
	overflow: hidden;
}

body {
	background-color: #ffffff !important;
}

.site_wrapper {
	min-height: 100vh;
	background: #ffffff;
}

/* ======================================================
   HERO
   ====================================================== */

.sc_home {
	height: calc(100vh - 140px);
	min-height: 0;
	background: #ffffff;
	overflow: hidden;
}

.sc_home > .inner_section_container {
	width: 100%;
	max-width: none;
	height: 100%;
	margin: 0;
	padding: 0;
}

.sc_home .section_title {
	width: 100%;
	height: 100% !important;
	min-height: 0;
	display: flex !important;
	flex-direction: row;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

/* Imagen izquierda */
.sc_home .stc_image_side {
	display: block !important;
	flex: 0 0 36%;
	width: 36%;
	height: 100%;
	position: relative;
	overflow: hidden;
	background-image: url('../img/about-img.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.sc_home .stc_image_side img {
	display: none !important;
}

.sc_home .stc_image_side::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.06) 0%,
		rgba(0, 0, 0, 0.02) 48%,
		rgba(255, 255, 255, 0.08) 100%
	);
	pointer-events: none;
}

/* Contenido derecho */
.sc_home .stc_title_side {
	display: flex !important;
	flex: 0 0 64%;
	width: 64%;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
	padding: 0 0 0 104px;
	background: #ffffff;
	box-sizing: border-box;
}

/* Watermark — lo dejo como lo tenías */
.sc_home .stc_title_side::before {
	content: "";
	position: absolute;
	right: -240px;
	top: 63%;
	transform: translateY(-50%);
	width: 800px;
	height: 800px;
	background-image: url('../img/brand/logo_watermark.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.sc_home .stc_title_side > * {
	position: relative;
	z-index: 2;
}

/* Título */
p.home_title {
	max-width: 600px;
	margin: 0 0 24px 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
	font-size: 46px;
	font-weight: 800;
	line-height: 1.14;
	letter-spacing: -1.2px;
	color: #004795;
}

/* Línea roja debajo del título */
p.home_title::after {
	content: "";
	display: block;
	width: 64px;
	height: 4px;
	margin: 24px 0 0 0;
	background: #F6323E;
	border-radius: 999px;
}

/* Descripción */
p.home_description {
	max-width: 650px;
	margin: 0 0 32px 0;
	padding: 0;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.65;
	color: #4B5563;
}

/* CTA hero */
.home_cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	height: 56px;
	padding: 0 30px;
	background: #F6323E;
	color: #ffffff !important;
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	border-radius: 9px;
	box-shadow: 0 12px 26px rgba(246, 50, 62, 0.26);
	transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.home_cta:hover {
	background: #D92B35;
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(246, 50, 62, 0.34);
}

/* Ocultar markup viejo si quedó por error */
.sc_home center,
.sc_home .mobile-button {
	display: none !important;
}

/* ======================================================
   RESPONSIVE HOME
   ====================================================== */

@media only screen and (max-width: 900px) {
	html,
	body {
		overflow-x: hidden !important;
		overflow-y: auto !important;
	}

	.sc_home {
		height: auto;
		min-height: auto;
		overflow: visible;
	}

	.sc_home > .inner_section_container {
		height: auto;
	}

	.sc_home .section_title {
		display: flex !important;
		flex-direction: column;
		height: auto !important;
		overflow: visible;
	}

	.sc_home .stc_image_side {
		width: 100%;
		flex: none;
		height: 340px;
		background-position: center center;
	}

	.sc_home .stc_title_side {
		width: 100%;
		flex: none;
		min-height: 420px;
		padding: 64px 40px;
		justify-content: center;
	}

	.sc_home .stc_title_side::before {
		right: -260px;
		top: 58%;
		width: 680px;
		height: 680px;
	}

	p.home_title {
		max-width: 620px;
		font-size: 40px;
		line-height: 1.14;
	}

	p.home_description {
		max-width: 620px;
		font-size: 17px;
		line-height: 1.6;
	}

	.home_cta {
		height: 52px;
		min-width: 180px;
		font-size: 16px;
	}
}

@media only screen and (max-width: 560px) {
	.sc_home .stc_image_side {
		height: 260px;
	}

	.sc_home .stc_title_side {
		min-height: auto;
		padding: 48px 24px 56px 24px;
	}

	.sc_home .stc_title_side::before {
		right: -360px;
		top: 65%;
		width: 720px;
		height: 720px;
		opacity: 0.75;
	}

	p.home_title {
		font-size: 32px;
		line-height: 1.16;
		letter-spacing: -0.8px;
		margin-bottom: 22px;
	}

	p.home_title::after {
		width: 56px;
		height: 4px;
		margin-top: 20px;
	}

	p.home_description {
		font-size: 16px;
		line-height: 1.6;
		margin-bottom: 28px;
	}

	.home_cta {
		width: 100%;
		height: 52px;
		font-size: 16px;
	}
}