/**
 * Bloque .v2-seo-deep — mismas reglas de caja y tipografía que .v2-business / .v2-servicios-list
 * (max-width 1200px, colores de texto alineados con el resto de landings V2).
 */
.v2-seo-deep {
	background: #0d0d0d;
	color: #f3f3f3;
	padding: 84px 24px;
	width: 100%;
	max-width: 100%;
	margin: 0;
	box-sizing: border-box;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.v2-seo-deep__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}

/* Texto corrido: mismo ancho cómodo que .v2-business__intro / .v2-services__intro */
.v2-seo-deep h2 {
	margin: 0 0 16px;
	max-width: 980px;
	color: #ffffff;
	font-size: clamp(1.6rem, 3.2vw, 2.5rem);
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.v2-seo-deep h3 {
	margin: 2rem 0 10px;
	max-width: 780px;
	color: #ffffff;
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	line-height: 1.3;
	font-weight: 600;
}

.v2-seo-deep p {
	margin: 0 0 1rem;
	max-width: 780px;
	line-height: 1.65;
	font-size: 1rem;
	color: #dbdbdb;
}

.v2-seo-deep p:last-child {
	margin-bottom: 0;
}

.v2-seo-deep strong {
	color: #f5f5f5;
	font-weight: 600;
}

.v2-seo-deep ul {
	margin: 0 0 1.25rem;
	max-width: 780px;
	padding-left: 1.2rem;
	line-height: 1.65;
	font-size: 1rem;
	color: #dbdbdb;
}

.v2-seo-deep li {
	margin-bottom: 0.35rem;
}

/* Acento como botones primarios V2 (#ff6e00) */
.v2-seo-deep a {
	color: #ff9a5c;
	text-decoration: underline;
	text-decoration-color: rgba(255, 110, 0, 0.55);
	text-underline-offset: 0.2em;
	transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.v2-seo-deep a:hover {
	color: #ffb380;
	text-decoration-color: rgba(255, 142, 64, 0.9);
}

.v2-seo-deep figure {
	margin: 2rem 0 0;
	/* Mismo ancho máximo que párrafos y listas: alineado a la izquierda como hero / business / services */
	max-width: min(100%, 780px);
}

.v2-seo-deep figure img {
	width: 100%;
	height: auto;
	border-radius: 14px;
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Imagen suelta en el bloque SEO (sin <figure>) */
.v2-seo-deep__inner > img {
	max-width: min(100%, 780px);
	width: 100%;
	height: auto;
	border-radius: 14px;
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-seo-deep figcaption {
	margin-top: 0.65rem;
	font-size: 0.875rem;
	line-height: 1.45;
	color: #a8a8a8;
	max-width: 780px;
}

/* -------------------------------------------------------------------------
 * Dos columnas: texto | imagen + nota (wrapper .v2-seo-deep__split en el HTML)
 * ------------------------------------------------------------------------- */
.v2-seo-deep__split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 38%);
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: start;
}

.v2-seo-deep__split .v2-seo-deep__col--text h2 {
	max-width: none;
}

.v2-seo-deep__split .v2-seo-deep__col--text h3 {
	max-width: none;
}

.v2-seo-deep__split .v2-seo-deep__col--text p,
.v2-seo-deep__split .v2-seo-deep__col--text ul {
	max-width: none;
}

.v2-seo-deep__split .v2-seo-deep__col--text h3:first-of-type {
	margin-top: 1.35rem;
}

.v2-seo-deep__col--aside {
	min-width: 0;
}

.v2-seo-deep__split .v2-seo-deep__figure {
	margin: 0;
	max-width: none;
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.v2-seo-deep__split .v2-seo-deep__figure img {
	border: none;
	border-radius: 0;
}

.v2-seo-deep__split .v2-seo-deep__figure figcaption {
	max-width: none;
	margin-top: 0.55rem;
	padding: 0 0.15rem;
}

.v2-seo-deep__col--aside > p {
	margin: 1.05rem 0 0;
	max-width: none;
	font-size: 0.92rem;
	line-height: 1.58;
	color: #c6c6c6;
}

.v2-seo-deep__col--aside > p:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 961px) {
	.v2-seo-deep__col--aside {
		position: sticky;
		top: 5.5rem;
	}
}

@media screen and (max-width: 960px) {
	.v2-seo-deep__split {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.v2-seo-deep__col--aside {
		position: static;
		max-width: min(100%, 520px);
		margin-left: auto;
		margin-right: auto;
	}
}

/* Páginas cuya franja siguiente es #101010 (p. ej. servicios: lista tras SEO) */
body.page-servicios-simulacion-procedural .v2-seo-deep,
body.page-servicios-v2 .v2-seo-deep {
	background: #101010;
}

body.page-sectores-simulacion-visual .v2-seo-deep,
body.page-sectores-v2 .v2-seo-deep {
	background: #101010;
}

body.page-contacto-tecnico-simulacion .v2-seo-deep,
body.page-contacto-v2 .v2-seo-deep {
	background: #101010;
}

/* Tras el SEO viene .v2-casos-highlight (#111111) */
body.page-casos-tecnicos-simulacion .v2-seo-deep,
body.page-casos-v2 .v2-seo-deep {
	background: #111111;
}

body.page-nosotros-estudio-vfx .v2-seo-deep,
body.page-nosotros-v2 .v2-seo-deep {
	background: #101010;
}
