/*
 * Clínica Dental Pedro Montt — rediseño visual 2.0
 *
 * Capa reversible cargada después de site.css, fidelity.css y las hojas
 * especiales. No altera contenidos, encabezados, ALT, SEO ni comportamiento.
 */

/* ============================== SISTEMA VISUAL ============================== */
body.pm-redesign-v2 {
	--pm-v2-ink: #14202b;
	--pm-v2-navy: #0e2a47;
	--pm-v2-navy-deep: #081d31;
	--pm-v2-green: #4f6b1f;
	--pm-v2-brand: #8dbb2e;
	--pm-v2-lime: #adc743;
	--pm-v2-surface: #f6f8f5;
	--pm-v2-tint: #eef4e8;
	--pm-v2-border: #dde6dd;
	--pm-v2-muted: #5b6772;
	--pm-v2-white: #fff;
	--pm-v2-shadow-sm: 0 8px 30px rgba(14, 42, 71, .08);
	--pm-v2-shadow-md: 0 18px 50px rgba(14, 42, 71, .14);
	--pm-v2-radius-sm: 12px;
	--pm-v2-radius: 20px;
	--pm-v2-radius-lg: 28px;
	--pm-shell: 1200px;
	background: var(--pm-v2-surface);
	color: var(--pm-v2-ink);
	font-family: "Open Sans", "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}

body.pm-redesign-v2 :where(h1, h2, h3, h4, h5, h6) {
	font-family: "Jost", "Avenir Next", sans-serif;
	color: var(--pm-v2-navy);
	letter-spacing: -.025em;
}

body.pm-redesign-v2 :where(a, button, input, textarea, select) {
	transition: color .2s ease, background-color .2s ease, border-color .2s ease,
		box-shadow .2s ease, transform .2s ease, opacity .2s ease;
}

body.pm-redesign-v2 :where(a, button, input, textarea, select, [tabindex]):focus-visible {
	outline: 3px solid var(--pm-v2-white);
	outline-offset: 3px;
	box-shadow: 0 0 0 6px #2f6fd0;
}

body.pm-redesign-v2 .pm-shell {
	width: min(1200px, calc(100% - 48px));
}

body.pm-redesign-v2 :where(img, iframe) {
	max-width: 100%;
}

/* La maqueta Wix fijaba alturas y coordenadas por ID. En v2 todo vuelve a flujo. */
body.pm-redesign-v2:not(.pm-legacy-document) .pm-main,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-main > .pm-shell,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer > .pm-shell,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__cols,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__col {
	min-height: 0 !important;
	height: auto !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-main > .pm-shell {
	width: min(1200px, calc(100% - 48px)) !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-main {
	position: relative;
	overflow: clip;
	padding: clamp(52px, 6vw, 88px) 0;
	background:
		radial-gradient(circle at 8% 8%, rgba(141, 187, 46, .13), transparent 25rem),
		linear-gradient(180deg, #fbfcfa 0%, var(--pm-v2-surface) 100%);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-main:not(.pm-main--plano) {
	padding: clamp(52px, 6vw, 88px) 0;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-main::before {
	inset: 0 !important;
	height: auto !important;
	background-size: 760px auto !important;
	background-position: center top !important;
	background-repeat: repeat !important;
	opacity: .035 !important;
}

body.pm-redesign-v2.blog .pm-main::before,
body.pm-redesign-v2.single-post .pm-main::before {
	display: block;
}

/* H1 que antes sólo cumplían función semántica: visibles en sus portadas. */
body.pm-redesign-v2.pm-route--servicios main > .pm-shell > h1.pm-solo-lectores,
body.pm-redesign-v2.pm-route--terminos-y-servicios main > .pm-shell > h1.pm-solo-lectores,
body.pm-redesign-v2.pm-family--blog main > h1.pm-solo-lectores {
	position: relative;
	width: min(1200px, calc(100% - 48px));
	height: auto;
	margin: 0 auto 12px;
	padding: 0;
	overflow: visible;
	clip: auto;
	clip-path: none;
	white-space: normal;
	border: 0;
	font-size: clamp(2.5rem, 5vw, 4.25rem);
	font-weight: 700;
	line-height: 1.05;
}

/* ============================== CABECERA ============================== */
body.pm-redesign-v2:not(.pm-legacy-document) .pm-header {
	position: sticky;
	top: 0;
	z-index: 500;
	height: auto;
	padding: 0;
	border: 0;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 1px 0 rgba(14, 42, 71, .08);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header.pm-header--scrolled {
	box-shadow: 0 12px 35px rgba(14, 42, 71, .12);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header > .pm-shell {
	width: min(1200px, calc(100% - 48px));
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(230px, 310px) minmax(0, 1fr);
	gap: 32px;
	align-items: center;
	min-height: 82px;
	height: auto;
	padding: 10px 0;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-brand {
	position: static;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	height: auto;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-brand img {
	width: min(290px, 100%);
	max-height: 68px;
	object-fit: contain;
	object-position: left center;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__side {
	position: static;
	inset: auto;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 10px 18px;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__social {
	position: static;
	display: flex;
	order: 3;
	align-self: auto;
	gap: 8px;
	width: auto;
	height: auto;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__social a {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid var(--pm-v2-border);
	border-radius: 50%;
	background: var(--pm-v2-white);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__social a:hover {
	transform: translateY(-2px);
	box-shadow: var(--pm-v2-shadow-sm);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__social img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__dato {
	position: static;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 999px;
	color: var(--pm-v2-muted);
	font-family: "Questrial", sans-serif;
	font-size: 14px;
	line-height: 1.2;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__dato:hover {
	background: var(--pm-v2-tint);
	color: var(--pm-v2-navy);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__dato img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-header > .pm-shell:last-child {
	width: min(1200px, calc(100% - 48px));
	border-top: 1px solid rgba(14, 42, 71, .07);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav {
	position: static;
	left: auto;
	display: flex;
	width: 100%;
	height: auto;
	justify-content: center;
	margin: 0;
	padding: 0;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav > ul {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	height: auto;
	margin: 0;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav > ul > li {
	flex: 0 1 auto;
	width: auto;
	height: auto;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav a {
	position: relative;
	display: block;
	padding: 13px 18px 14px;
	color: var(--pm-v2-ink);
	font-family: "Jost", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .01em;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav > ul > li > a {
	display: block;
	height: auto;
	padding: 13px 18px 14px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav > ul > li > a::after {
	content: "";
	position: absolute;
	right: 18px;
	bottom: 8px;
	left: 18px;
	height: 2px;
	border-radius: 2px;
	background: var(--pm-v2-brand);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .2s ease;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav > ul > li:hover > a::after,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav > ul > li:focus-within > a::after,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav > ul > .current-menu-item > a::after,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav > ul > .current_page_item > a::after,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav > ul > .pm-nav__activo > a::after {
	transform: scaleX(1);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav li ul {
	top: calc(100% - 3px);
	left: 0;
	min-width: 255px;
	padding: 8px;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius-sm);
	background: rgba(255, 255, 255, .98);
	box-shadow: var(--pm-v2-shadow-md);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav li ul a {
	padding: 11px 14px;
	border-radius: 8px;
	font-weight: 500;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav li ul a:hover {
	background: var(--pm-v2-tint);
}

/* ============================== TÍTULOS Y CONTENIDO ============================== */
body.pm-redesign-v2:not(.pm-legacy-document) .pm-titulo,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-formas-titulo {
	position: relative;
	inset: auto !important;
	transform: none !important;
	display: block;
	width: fit-content !important;
	height: auto !important;
	min-width: 0 !important;
	max-width: 900px;
	margin: 0 0 clamp(36px, 5vw, 56px) !important;
	padding: 0 0 18px !important;
	border: 0;
	background: transparent !important;
	color: var(--pm-v2-navy) !important;
	font-family: "Jost", sans-serif;
	font-size: clamp(2.35rem, 5vw, 4.15rem) !important;
	font-style: normal !important;
	font-weight: 700;
	line-height: 1.05;
	text-align: left !important;
	letter-spacing: -.035em;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-titulo::after,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-formas-titulo::after,
body.pm-redesign-v2.pm-route--servicios main > .pm-shell > h1.pm-solo-lectores::after,
body.pm-redesign-v2.pm-route--terminos-y-servicios main > .pm-shell > h1.pm-solo-lectores::after,
body.pm-redesign-v2.pm-family--blog main > h1.pm-solo-lectores::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 82px;
	height: 5px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--pm-v2-brand), var(--pm-v2-lime));
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-titulo--centrado {
	margin-right: auto !important;
	margin-left: auto !important;
	text-align: center !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-titulo--centrado::after {
	left: 50%;
	transform: translateX(-50%);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-titulo--articulo {
	max-width: 980px;
	font-size: clamp(2.1rem, 4.5vw, 3.8rem) !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-separador {
	position: static !important;
	inset: auto !important;
	width: auto !important;
	height: 1px;
	margin: clamp(64px, 8vw, 96px) 0 !important;
	border: 0 !important;
	background: linear-gradient(90deg, transparent, var(--pm-v2-border) 16%, var(--pm-v2-border) 84%, transparent);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-cols {
	position: relative !important;
	inset: auto !important;
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: clamp(28px, 4vw, 52px) !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	align-items: start;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-caja {
	height: auto !important;
	min-height: 0 !important;
	padding: clamp(30px, 4vw, 48px) !important;
	border: 1px solid var(--pm-v2-border);
	border-left: 6px solid var(--pm-v2-brand);
	border-radius: var(--pm-v2-radius);
	background: rgba(255, 255, 255, .96) !important;
	box-shadow: var(--pm-v2-shadow-sm);
	color: var(--pm-v2-ink) !important;
	font-family: "Open Sans", sans-serif;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1.72 !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-caja--verde {
	background: linear-gradient(145deg, #f8fbf4, var(--pm-v2-tint)) !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-caja p {
	margin: 0 0 20px;
	font-family: "Open Sans", sans-serif !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1.75 !important;
	text-align: left !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-caja :where(a:not(.pm-boton), strong) {
	color: var(--pm-v2-green);
	text-decoration-color: rgba(79, 107, 31, .45);
	text-underline-offset: 3px;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-flechas li {
	padding-left: 34px;
	margin-bottom: 18px;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-flechas li::before {
	left: 2px;
	top: .42em;
	width: 10px;
	height: 10px;
	border-width: 0 3px 3px 0;
	border-style: solid;
	border-color: var(--pm-v2-brand);
	transform: rotate(-45deg);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-cols > div:not(.pm-caja) > img,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-cols > p > img {
	width: 100% !important;
	height: auto !important;
	margin: 0 !important;
	border-radius: var(--pm-v2-radius);
	box-shadow: var(--pm-v2-shadow-sm);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-boton,
body.pm-redesign-v2:not(.pm-legacy-document) a.pm-boton--whatsapp,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-form .pm-enviar,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-form input[type="submit"] {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	padding: 13px 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--pm-v2-green);
	box-shadow: 0 9px 24px rgba(79, 107, 31, .2);
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
}

body.pm-redesign-v2:not(.pm-legacy-document) :where(.pm-boton, a.pm-boton--whatsapp, .pm-form .pm-enviar, .pm-form input[type="submit"]):hover {
	background: var(--pm-v2-navy);
	box-shadow: 0 14px 30px rgba(14, 42, 71, .2);
	color: #fff;
	transform: translateY(-2px);
}

/* ============================== PORTADA ============================== */
body.pm-redesign-v2.pm-family--home .pm-main {
	padding-top: 32px;
}

body.pm-redesign-v2.pm-family--home .pm-main > .pm-shell:first-child {
	width: min(1200px, calc(100% - 48px));
}

body.pm-redesign-v2 .pm-hero {
	position: relative;
	height: clamp(500px, 52vw, 620px) !important;
	margin: 0 !important;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: var(--pm-v2-radius-lg);
	background: var(--pm-v2-navy);
	box-shadow: var(--pm-v2-shadow-md);
}

body.pm-redesign-v2 .pm-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(8, 29, 49, .64) 0%, rgba(8, 29, 49, .22) 46%, transparent 72%);
	pointer-events: none;
}

body.pm-redesign-v2 .pm-hero__slide > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 7s ease;
}

body.pm-redesign-v2 .pm-hero__slide:nth-child(2) > img {
	object-position: center 47%;
}

body.pm-redesign-v2 .pm-hero__slide.activo > img {
	transform: scale(1.025);
}

body.pm-redesign-v2 .pm-hero__rotulo {
	position: absolute;
	top: auto !important;
	right: auto;
	bottom: 58px;
	left: 58px !important;
	z-index: 3;
	max-width: 590px;
	margin: 0;
	padding: 22px 30px;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(79, 107, 31, .95), rgba(141, 187, 46, .88));
	box-shadow: 0 18px 45px rgba(8, 29, 49, .28);
	color: #fff;
	font-size: clamp(2.15rem, 4vw, 3.3rem);
	font-style: normal;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.03em;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

body.pm-redesign-v2 .pm-hero__flecha {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: 50%;
	background: rgba(8, 29, 49, .56);
	box-shadow: 0 8px 24px rgba(8, 29, 49, .2);
	color: #fff;
	font-size: 38px;
	line-height: 1;
	text-shadow: none;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

body.pm-redesign-v2 .pm-hero__flecha:hover {
	background: var(--pm-v2-brand);
	transform: translateY(-50%) scale(1.05);
}

body.pm-redesign-v2 .pm-hero__flecha--izq { left: 20px; }
body.pm-redesign-v2 .pm-hero__flecha--der { right: 20px; }

body.pm-redesign-v2 .pm-hero__puntos {
	bottom: 22px;
	z-index: 4;
	gap: 8px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(8, 29, 49, .35);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

body.pm-redesign-v2 .pm-hero__puntos button {
	width: 9px;
	height: 9px;
	border: 1px solid rgba(255, 255, 255, .85);
}

body.pm-redesign-v2.pm-family--home .pm-main > section.pm-shell:not(.pm-convenios) {
	padding: 0 !important;
}

body.pm-redesign-v2 .pm-servicios-fila {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	max-width: none;
	margin: 0;
}

body.pm-redesign-v2 .pm-servicios-fila .pm-servicio-card {
	display: flex;
	min-height: 250px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 20px;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius);
	background: rgba(255, 255, 255, .92);
	box-shadow: var(--pm-v2-shadow-sm);
	color: var(--pm-v2-navy);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .035em;
}

body.pm-redesign-v2 .pm-servicios-fila .pm-servicio-card:hover {
	border-color: rgba(141, 187, 46, .65);
	box-shadow: var(--pm-v2-shadow-md);
	transform: translateY(-5px);
}

body.pm-redesign-v2 .pm-servicios-fila .pm-servicio-card__imagen {
	display: grid;
	width: 116px;
	height: 116px;
	place-items: center;
	margin: 0 auto 24px;
	border-radius: 50%;
	background: var(--pm-v2-tint);
}

body.pm-redesign-v2 .pm-servicios-fila img {
	width: 94px;
	height: 94px;
	object-fit: contain;
}

body.pm-redesign-v2 .pm-servicios-fila .subrayado {
	text-decoration: none;
}

body.pm-redesign-v2 .pm-convenios {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr) !important;
	gap: clamp(32px, 5vw, 72px) !important;
	align-items: center;
}

body.pm-redesign-v2.pm-family--home .pm-convenios::before {
	display: none;
}

body.pm-redesign-v2 .pm-convenios .pm-titulo {
	width: fit-content !important;
	margin-bottom: 34px !important;
	text-align: left !important;
}

/* ============================== CARRUSELES Y CATÁLOGOS ============================== */
body.pm-redesign-v2 .pm-carrusel {
	position: relative;
	width: 100%;
	max-width: 520px !important;
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius);
	background: #fff;
	box-shadow: var(--pm-v2-shadow-md);
}

body.pm-redesign-v2 .pm-carrusel:not(.pm-carrusel--pago) .pm-hero__flecha,
body.pm-redesign-v2 .pm-carrusel:not(.pm-carrusel--pago) .pm-carrusel__contador {
	opacity: 1;
}

body.pm-redesign-v2 .pm-carrusel .pm-hero__flecha {
	width: 44px;
	height: 44px;
	border-color: rgba(255, 255, 255, .7);
	background: rgba(14, 42, 71, .78);
	color: #fff;
	font-size: 32px;
}

body.pm-redesign-v2 .pm-carrusel .pm-hero__flecha--izq { left: 14px; }
body.pm-redesign-v2 .pm-carrusel .pm-hero__flecha--der { right: 14px; }

body.pm-redesign-v2 .pm-carrusel__contador {
	right: 14px;
	bottom: 14px;
	width: auto;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .9);
	color: var(--pm-v2-navy);
	font-family: "Jost", sans-serif;
	font-size: 12px;
	font-weight: 600;
}

body.pm-redesign-v2 .pm-servicios-grilla {
	position: static !important;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	max-width: none;
	margin: 20px 0 0;
	padding: 0 !important;
}

body.pm-redesign-v2 .pm-servicios-grilla > * {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
	width: auto !important;
	height: auto !important;
	min-height: 230px;
	padding: 28px 18px;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius);
	background: #fff;
	box-shadow: var(--pm-v2-shadow-sm);
	color: var(--pm-v2-navy);
}

body.pm-redesign-v2 .pm-servicios-grilla > :hover {
	border-color: rgba(141, 187, 46, .65);
	box-shadow: var(--pm-v2-shadow-md);
	transform: translateY(-5px);
}

body.pm-redesign-v2 .pm-servicios-grilla img {
	width: 110px;
	height: 110px;
	margin: 0 auto 20px;
	padding: 9px;
	border: 0 !important;
	border-radius: 50%;
	background: var(--pm-v2-tint);
	object-fit: contain;
}

body.pm-redesign-v2 .pm-servicios-grilla h2 {
	margin: 0;
	color: var(--pm-v2-navy);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
}

body.pm-redesign-v2 .pm-servicios-grilla .subrayado span {
	text-decoration: none;
}

body.pm-redesign-v2 .pm-servicio-videoconsulta__centro {
	top: 40px;
	width: 68px;
	height: 68px;
	border-radius: 50%;
}

body.pm-redesign-v2.pm-route--convenios .pm-cols,
body.pm-redesign-v2.pm-route--convenio-caja-los-andes-ancud .pm-cols {
	align-items: center;
}

body.pm-redesign-v2:is(.pm-route--convenios, .pm-route--convenio-caja-los-andes-ancud) .pm-cols > div {
	display: flex !important;
	height: auto !important;
	min-height: 0 !important;
	flex-direction: column;
	gap: 24px;
	align-self: stretch;
	justify-content: center;
}

body.pm-redesign-v2:is(.pm-route--convenios, .pm-route--convenio-caja-los-andes-ancud) .pm-cols > div > * {
	position: relative !important;
	inset: auto !important;
	width: 100% !important;
	height: auto !important;
	margin: 0 !important;
	transform: none !important;
}

body.pm-redesign-v2:is(.pm-route--convenios, .pm-route--convenio-caja-los-andes-ancud) .pm-cols > div > p img {
	width: min(330px, 100%) !important;
	height: auto !important;
	margin: 0 auto !important;
	object-fit: contain;
}

body.pm-redesign-v2.pm-route--convenios .pm-cols + .pm-separador {
	margin: 68px 0 !important;
}

body.pm-redesign-v2 .pm-carrusel--pago {
	max-width: 1200px !important;
	border-radius: var(--pm-v2-radius-lg);
}

body.pm-redesign-v2 .pm-carrusel--pago .pm-hero__puntos {
	background: rgba(255, 255, 255, .82);
}

body.pm-redesign-v2 .pm-carrusel--pago .pm-hero__puntos button {
	width: 12px;
	height: 12px;
	border: 2px solid var(--pm-v2-navy);
}

/* ============================== MAPAS, VIDEO Y FORMULARIOS ============================== */
body.pm-redesign-v2:not(.pm-legacy-document) .pm-mapa,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-mapa--ubicacion {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
	width: 100% !important;
	margin: clamp(40px, 5vw, 64px) 0 0 !important;
	overflow: hidden;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius);
	background: #fff;
	box-shadow: var(--pm-v2-shadow-sm);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-mapa--ubicacion::before {
	display: none !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-mapa iframe,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-mapa--ubicacion iframe {
	display: block;
	width: 100%;
	height: 380px !important;
	border: 0;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-video {
	overflow: hidden;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius);
	background: var(--pm-v2-navy);
	box-shadow: var(--pm-v2-shadow-sm);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-form,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-urgencia__form {
	padding: clamp(28px, 4vw, 44px) !important;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius);
	background: #fff !important;
	box-shadow: var(--pm-v2-shadow-md);
	color: var(--pm-v2-ink) !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-form-intro,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-urgencia__form h2 {
	margin: 0 0 28px;
	color: var(--pm-v2-navy) !important;
	font-size: clamp(1.35rem, 2.3vw, 1.8rem);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -.02em;
	text-align: left;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-form label,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-urgencia__form label {
	margin-bottom: 7px;
	color: var(--pm-v2-ink) !important;
	font-size: 13px;
	font-weight: 700;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-form .campo {
	margin-bottom: 18px;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-form :where(input[type="text"], input[type="email"], input[type="tel"], textarea),
body.pm-redesign-v2:not(.pm-legacy-document) .pm-urgencia__form :where(input[type="text"], input[type="email"], input[type="tel"], textarea) {
	position: static !important;
	width: 100% !important;
	max-width: 100% !important;
	min-height: 52px;
	padding: 13px 15px;
	border: 1px solid #cfdad1;
	border-radius: var(--pm-v2-radius-sm);
	background: #fbfcfa !important;
	color: var(--pm-v2-ink);
	font: 400 15px/1.35 "Open Sans", sans-serif;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-form textarea,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-urgencia__form textarea {
	min-height: 126px;
	resize: vertical;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-form .pm-enviar,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-form input[type="submit"],
body.pm-redesign-v2:not(.pm-legacy-document) .pm-urgencia__form input[type="submit"] {
	position: static !important;
	width: auto !important;
	height: 50px !important;
	margin: 10px 0 0 auto !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-form :where(input, textarea):focus,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-urgencia__form :where(input, textarea):focus {
	border-color: var(--pm-v2-brand);
	outline: 3px solid rgba(141, 187, 46, .2);
	outline-offset: 1px;
	box-shadow: none;
}

/* ============================== ARTÍCULOS Y LEGALES ============================== */
body.pm-redesign-v2:not(.pm-legacy-document) .pm-full-blanco {
	width: 100%;
	max-width: 1060px;
	margin: clamp(48px, 6vw, 76px) auto 0 !important;
	padding: clamp(34px, 6vw, 74px) !important;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius-lg);
	background: rgba(255, 255, 255, .97);
	box-shadow: var(--pm-v2-shadow-sm);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-articulo {
	max-width: 780px !important;
	margin: 0 auto;
	color: #344150;
	font-family: "Open Sans", sans-serif;
	font-size: 17px !important;
	font-weight: 400;
	line-height: 1.82 !important;
	text-align: left !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-articulo p {
	margin: 0 0 24px;
	font-size: inherit !important;
	line-height: inherit !important;
	text-align: left !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-articulo h2 {
	margin: 48px 0 18px;
	color: var(--pm-v2-navy);
	font-family: "Jost", sans-serif !important;
	font-size: clamp(1.55rem, 3vw, 2.15rem) !important;
	font-style: normal !important;
	font-weight: 650 !important;
	line-height: 1.2;
	text-align: left !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-articulo :where(ul, ol) {
	margin: 0 0 28px;
	padding-left: 26px;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-articulo li {
	margin-bottom: 10px;
}

body.pm-redesign-v2.pm-family--legal .pm-full-blanco {
	max-width: 980px;
}

body.pm-redesign-v2.pm-family--legal .pm-legal-spacer {
	display: none !important;
}

/* ============================== BLOG Y ENTRADA ============================== */
body.pm-redesign-v2.pm-family--blog .pm-titulo--sangra {
	margin: 0 auto 56px !important;
	padding-left: 0 !important;
	font-size: clamp(1.3rem, 2vw, 1.6rem) !important;
	font-weight: 500;
	color: var(--pm-v2-muted) !important;
}

body.pm-redesign-v2.pm-family--blog .pm-entradas {
	max-width: 1080px;
	margin: 0 auto;
	gap: 32px;
}

body.pm-redesign-v2 .pm-entrada {
	overflow: hidden;
	grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius-lg);
	background: #fff;
	box-shadow: var(--pm-v2-shadow-sm);
}

body.pm-redesign-v2 .pm-entrada:hover {
	box-shadow: var(--pm-v2-shadow-md);
	transform: translateY(-4px);
}

body.pm-redesign-v2 .pm-entrada__foto {
	overflow: hidden;
}

body.pm-redesign-v2 .pm-entrada__foto img {
	transition: transform .45s ease;
}

body.pm-redesign-v2 .pm-entrada:hover .pm-entrada__foto img {
	transform: scale(1.025);
}

body.pm-redesign-v2 .pm-entrada__texto {
	padding: clamp(30px, 5vw, 54px);
}

body.pm-redesign-v2 .pm-entrada__titulo {
	margin: 0 0 18px;
	color: var(--pm-v2-navy);
	font-family: "Jost", sans-serif;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 650;
	line-height: 1.15;
}

body.pm-redesign-v2 .pm-entrada__extracto {
	color: var(--pm-v2-muted);
	font-size: 16px;
	line-height: 1.7;
}

body.pm-redesign-v2 .pm-entrada__estadisticas {
	border-color: var(--pm-v2-border);
	color: var(--pm-v2-muted);
}

body.pm-redesign-v2.pm-family--post .pm-main--plano {
	padding: clamp(44px, 6vw, 88px) 0 !important;
	background:
		radial-gradient(circle at 85% 4%, rgba(141, 187, 46, .13), transparent 25rem),
		var(--pm-v2-surface);
}

body.pm-redesign-v2 .pm-post-search {
	max-width: 920px;
	margin-right: auto;
	margin-left: auto;
}

body.pm-redesign-v2 .pm-post,
body.pm-redesign-v2 .pm-post__comentarios {
	width: calc(100% - 48px);
	max-width: 920px;
	margin: 28px auto !important;
	padding: clamp(34px, 7vw, 82px);
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius-lg);
	background: #fff;
	box-shadow: var(--pm-v2-shadow-sm);
}

body.pm-redesign-v2 .pm-post__cabecera h1 {
	color: var(--pm-v2-navy);
	font-family: "Jost", sans-serif !important;
	font-size: clamp(2.45rem, 6vw, 4.5rem) !important;
	font-weight: 700 !important;
	line-height: 1.04 !important;
	letter-spacing: -.04em;
}

body.pm-redesign-v2 .pm-post__lectura {
	color: var(--pm-v2-green);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
}

body.pm-redesign-v2 .pm-post__contenido {
	color: #344150;
	font-family: "Open Sans", sans-serif;
	font-size: 18px !important;
	line-height: 1.82 !important;
}

body.pm-redesign-v2 .pm-post__contenido img {
	border-radius: var(--pm-v2-radius);
}

body.pm-redesign-v2 .pm-post__contenido a {
	color: var(--pm-v2-green);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

body.pm-redesign-v2 .pm-post__comentarios h2 {
	color: var(--pm-v2-navy);
	font-size: 1.55rem;
	font-weight: 650;
}

/* ============================== CTA FLOTANTES ============================== */
body.pm-redesign-v2:not(.pm-legacy-document) .pm-flotantes a {
	position: fixed;
	right: 22px;
	z-index: 450;
	display: inline-flex;
	width: auto;
	height: 54px;
	align-items: center;
	justify-content: center;
	padding: 0 22px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 999px;
	box-shadow: 0 14px 34px rgba(8, 29, 49, .25);
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: .02em;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-flotante-agenda {
	top: auto;
	bottom: 88px;
	background: var(--pm-v2-navy);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-flotante-wsp {
	top: auto;
	bottom: 24px;
	gap: 10px;
	background: var(--pm-v2-green);
	letter-spacing: .12em;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-flotante-wsp svg {
	width: 30px;
	height: 30px;
	margin: 0;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-flotantes a:hover {
	background: var(--pm-v2-brand);
	filter: none;
	transform: translateY(-3px);
}

/* ============================== PIE ============================== */
body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer {
	position: relative !important;
	padding: 72px 0 0 !important;
	border: 0 !important;
	background:
		radial-gradient(circle at 82% 10%, rgba(141, 187, 46, .18), transparent 22rem),
		var(--pm-v2-navy-deep);
	color: rgba(255, 255, 255, .78);
	font-family: "Open Sans", sans-serif;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer > .pm-shell {
	position: relative !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__titulo {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 0 48px !important;
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 650;
	line-height: 1.15 !important;
	text-align: left;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__titulo::after {
	content: "";
	display: block;
	width: 64px;
	height: 4px;
	margin-top: 16px;
	border-radius: 999px;
	background: var(--pm-v2-brand);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__cols {
	position: static !important;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: clamp(34px, 6vw, 78px) !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__col,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__col:nth-child(3) {
	position: static !important;
	width: auto !important;
	color: rgba(255, 255, 255, .75);
	font-size: 14px;
	line-height: 1.7;
	text-align: left;
	transform: none !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__encabezado {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 0 24px !important;
	padding: 0 0 12px !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(255, 255, 255, .15) !important;
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 15px !important;
	font-weight: 650;
	line-height: 1.3 !important;
	text-align: left;
	letter-spacing: .1em !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__col p,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__col:nth-child(2) > p:nth-child(2),
body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__col:nth-child(2) > p:nth-child(3) {
	position: static !important;
	width: auto !important;
	margin: 0 0 16px !important;
	color: inherit;
	font-size: inherit !important;
	line-height: inherit !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__col a:hover {
	color: var(--pm-v2-lime);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__accesos,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__accesos .nota {
	position: static !important;
	width: auto !important;
	margin: 0 !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__accesos > li:first-child,
body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__accesos > li:first-child > a {
	height: auto !important;
	color: #fff;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.6 !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__accesos .nota h2 {
	margin: 12px 0 0 !important;
	color: rgba(255, 255, 255, .65);
	font-family: "Open Sans", sans-serif;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	white-space: normal !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__social {
	position: static !important;
	display: flex;
	width: auto !important;
	height: auto !important;
	justify-content: flex-start;
	gap: 10px !important;
	margin: 0 0 24px !important;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__social a {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__social img {
	width: 24px;
	height: 24px;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__logo {
	position: static !important;
	width: min(240px, 100%) !important;
	margin: 0 !important;
	padding: 12px 16px;
	border-radius: var(--pm-v2-radius-sm);
	background: #fff;
}

body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__base {
	position: static !important;
	margin-top: 64px !important;
	border: 0 !important;
	border-bottom: 8px solid var(--pm-v2-brand) !important;
}

/* ============================== URGENCIA ============================== */
body.pm-redesign-v2.pm-family--urgencia {
	background: var(--pm-v2-surface);
}

body.pm-redesign-v2 .pm-urgencia {
	background: var(--pm-v2-surface);
	color: var(--pm-v2-ink);
	font-family: "Open Sans", sans-serif;
}

body.pm-redesign-v2 .pm-urgencia__header {
	display: grid;
	grid-template-columns: minmax(220px, 330px) minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	padding: 16px 0;
}

body.pm-redesign-v2 .pm-urgencia__header > a img {
	width: 280px;
	max-height: 74px;
	object-fit: contain;
	object-position: left center;
}

body.pm-redesign-v2 .pm-urgencia__header .datos {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	font-size: 13px;
}

body.pm-redesign-v2 .pm-urgencia__header .datos > div {
	display: flex;
	min-height: 48px;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border: 1px solid var(--pm-v2-border);
	border-radius: 999px;
	background: #fff;
}

body.pm-redesign-v2 .pm-urgencia__header .datos .fono {
	font-size: 16px;
}

body.pm-redesign-v2 .pm-urgencia__header .datos img {
	width: 28px;
	height: 28px;
}

body.pm-redesign-v2 .pm-urgencia__header .datos .fono > a,
body.pm-redesign-v2 .pm-urgencia__header .datos > div:last-child > span {
	color: var(--pm-v2-ink);
}

body.pm-redesign-v2 .pm-urgencia__hero {
	padding: clamp(58px, 7vw, 96px) 0;
	border: 0;
	background:
		linear-gradient(90deg, rgba(246, 248, 245, .98) 0%, rgba(246, 248, 245, .82) 48%, rgba(246, 248, 245, .28) 100%),
		url("../images/urgencia-fondo.jpg") right center / cover no-repeat;
}

body.pm-redesign-v2 .pm-urgencia__hero h1 {
	margin: 0 0 8px;
	color: var(--pm-v2-navy);
	font-size: clamp(2.8rem, 6vw, 5.1rem);
	font-weight: 700;
	line-height: 1;
}

body.pm-redesign-v2 .pm-urgencia__hero .lema {
	margin: 0 0 42px;
	color: var(--pm-v2-green);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .1em;
}

body.pm-redesign-v2 .pm-urgencia__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr);
	gap: clamp(34px, 5vw, 68px);
	align-items: start;
}

body.pm-redesign-v2 .pm-urgencia__grid > div:first-child > img {
	width: 100%;
	border-radius: var(--pm-v2-radius-lg);
	box-shadow: var(--pm-v2-shadow-md);
}

body.pm-redesign-v2 .pm-checks li {
	padding-left: 38px;
	margin-bottom: 18px;
	color: var(--pm-v2-ink);
	font-size: 15px;
}

body.pm-redesign-v2 .pm-checks li::before {
	border-color: var(--pm-v2-brand);
}

body.pm-redesign-v2 .pm-urgencia__form .privacidad {
	color: var(--pm-v2-muted);
}

body.pm-redesign-v2 .pm-urgencia__testimonios {
	padding: clamp(70px, 8vw, 110px) 0;
	border: 0;
	background:
		linear-gradient(rgba(238, 244, 232, .92), rgba(238, 244, 232, .92)),
		url("../images/urgencia-testimonios-fondo.jpg") center / cover;
}

body.pm-redesign-v2 .pm-urgencia__testimonios h2,
body.pm-redesign-v2 .pm-urgencia__servicios h2 {
	margin: 0 0 44px;
	color: var(--pm-v2-navy);
	font-size: clamp(2.1rem, 4vw, 3.4rem);
	font-weight: 700;
	letter-spacing: -.02em;
}

body.pm-redesign-v2 .pm-testimonios-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	max-width: none;
	margin: 0 auto 38px;
}

body.pm-redesign-v2 .pm-testimonios-grid > div {
	padding: 32px;
	border: 1px solid rgba(141, 187, 46, .24);
	border-radius: var(--pm-v2-radius);
	background: rgba(255, 255, 255, .85);
	box-shadow: var(--pm-v2-shadow-sm);
	text-align: left;
}

body.pm-redesign-v2 .pm-testimonios-grid h3 {
	color: var(--pm-v2-green);
	font-weight: 650;
}

body.pm-redesign-v2 .pm-testimonios-grid p {
	color: var(--pm-v2-muted);
	font-size: 15px;
	line-height: 1.7;
}

body.pm-redesign-v2 .pm-urgencia__servicios {
	min-height: 0 !important;
	padding: clamp(70px, 8vw, 110px) 0;
	background: #fff;
}

body.pm-redesign-v2 .pm-urgencia__video,
body.pm-redesign-v2 .pm-urgencia__mapa {
	overflow: hidden;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius);
	box-shadow: var(--pm-v2-shadow-sm);
}

body.pm-redesign-v2 .pm-urgencia__video {
	width: min(760px, 100%);
	margin-bottom: 34px;
}

body.pm-redesign-v2 .pm-urgencia__mapa {
	height: 380px;
}

/* La calibración Wix de Urgencia era un lienzo absoluto de 980 px. */
body.pm-redesign-v2.pm-family--urgencia .pm-urgencia {
	position: relative !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	overflow: visible !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia .pm-shell {
	width: min(1200px, calc(100% - 48px)) !important;
	height: auto !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header {
	position: relative !important;
	inset: auto !important;
	display: grid !important;
	width: min(1200px, calc(100% - 48px)) !important;
	height: auto !important;
	min-height: 96px;
	margin: 0 auto !important;
	padding: 14px 0 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header > a:first-child {
	position: static !important;
	display: block;
	width: min(285px, 100%) !important;
	height: auto !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header > a:first-child img {
	width: 100% !important;
	height: 70px !important;
	object-fit: contain !important;
	object-position: left center;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header .datos {
	position: static !important;
	display: flex !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header .datos > div,
body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header .datos > div:nth-child(n) {
	position: static !important;
	inset: auto !important;
	display: flex !important;
	width: auto !important;
	height: 48px !important;
	margin: 0 !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.2 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header .datos .fono {
	font-size: 16px !important;
	font-weight: 650 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header .datos :where(img) {
	width: 28px !important;
	height: 28px !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__hero {
	position: relative !important;
	inset: auto !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	padding: clamp(58px, 7vw, 96px) 0 !important;
	border: 0 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__hero::before {
	display: none !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__hero > .pm-shell {
	position: relative !important;
	height: auto !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__hero h1,
body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__hero .lema {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
	text-align: left !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__hero h1 {
	margin-bottom: 8px !important;
	color: var(--pm-v2-navy) !important;
	font-family: "Jost", sans-serif !important;
	font-size: clamp(2.8rem, 6vw, 5.1rem) !important;
	font-weight: 700 !important;
	line-height: 1 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__hero .lema {
	margin-bottom: 42px !important;
	color: var(--pm-v2-green) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	letter-spacing: .1em !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__grid {
	position: relative !important;
	inset: auto !important;
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(380px, .85fr) !important;
	gap: clamp(34px, 5vw, 68px) !important;
	width: 100% !important;
	height: auto !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__grid > div {
	position: static !important;
	width: auto !important;
	height: auto !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__grid > div:first-child > img {
	position: static !important;
	width: 100% !important;
	height: auto !important;
	margin: 0 !important;
	object-fit: cover;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__grid > div:first-child > p,
body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__grid > div:nth-child(2) > p,
body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__grid > div:first-child > .pm-checks {
	position: static !important;
	inset: auto !important;
	width: auto !important;
	height: auto !important;
	margin: 22px 0 !important;
	text-align: left !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__grid > div:nth-child(2) > p {
	display: flex;
	justify-content: flex-end;
	margin-top: 0 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__grid > div:nth-child(2) > p .pm-boton {
	width: auto !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-checks li {
	min-height: 0 !important;
	margin-bottom: 18px !important;
	padding-left: 38px !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.6 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-checks li::before {
	left: 2px !important;
	width: 22px !important;
	height: 22px !important;
	background-size: contain !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__form {
	position: static !important;
	inset: auto !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__form .campo {
	margin-bottom: 18px !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__form :where(input[type="text"], input[type="email"], input[type="tel"], textarea) {
	width: 100% !important;
	height: auto !important;
	min-height: 52px !important;
	padding: 13px 15px !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__form textarea {
	min-height: 126px !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__testimonios,
body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__servicios {
	position: relative !important;
	inset: auto !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__testimonios {
	padding: clamp(70px, 8vw, 110px) 0 !important;
	border: 0 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__testimonios > .pm-shell,
body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__servicios > .pm-shell {
	position: relative !important;
	height: auto !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__testimonios h2,
body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__servicios h2,
body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__testimonios > .pm-shell > .pm-boton {
	position: static !important;
	inset: auto !important;
	width: auto !important;
	height: auto !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__testimonios h2,
body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__servicios h2 {
	margin: 0 0 44px !important;
	color: var(--pm-v2-navy) !important;
	font-size: clamp(2.1rem, 4vw, 3.4rem) !important;
	font-weight: 700 !important;
	line-height: 1.1 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-testimonios-grid {
	position: static !important;
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	width: 100% !important;
	height: auto !important;
	margin: 0 auto 38px !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__servicios {
	padding: clamp(70px, 8vw, 110px) 0 !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__servicios > .pm-shell::before,
body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__servicios > .pm-shell::after {
	display: none !important;
}

body.pm-redesign-v2.pm-family--urgencia :is(.pm-urgencia__video, .pm-urgencia__cta-online, .pm-urgencia__mapa, .pm-urgencia__cta-final) {
	position: relative !important;
	inset: auto !important;
	height: auto !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__video {
	width: min(760px, 100%) !important;
	aspect-ratio: 96 / 65 !important;
	margin-bottom: 34px !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__cta-online {
	width: fit-content !important;
	margin-bottom: 28px !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__mapa {
	width: 100% !important;
	height: 380px !important;
}

body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__cta-final {
	width: fit-content !important;
	margin-top: 32px !important;
}

body.pm-redesign-v2.pm-family--urgencia :is(.pm-urgencia__cta-online, .pm-urgencia__cta-final) .pm-boton {
	width: auto !important;
	height: auto !important;
	min-height: 50px;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 1.25 !important;
	white-space: normal !important;
}

/* ============================== LANDINGS LEGACY ============================== */
body.pm-redesign-v2.pm-legacy-document {
	background: var(--pm-v2-surface);
	color: var(--pm-v2-ink);
	font-family: "Open Sans", sans-serif;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-site,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-main,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-landing,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks {
	width: 100% !important;
	max-width: none !important;
	min-height: 0 !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
	background: var(--pm-v2-surface);
	color: var(--pm-v2-ink);
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-shell {
	width: min(1200px, calc(100% - 48px));
	max-width: none;
	margin: 0 auto;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-header {
	position: sticky;
	top: 0;
	z-index: 500;
	height: auto !important;
	padding: 0 !important;
	border: 0 !important;
	background: rgba(255, 255, 255, .95);
	box-shadow: 0 8px 30px rgba(14, 42, 71, .08);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__inner {
	position: relative !important;
	display: grid !important;
	grid-template-columns: minmax(230px, 320px) minmax(0, 1fr) !important;
	gap: 32px !important;
	align-items: center !important;
	height: auto !important;
	min-height: 92px !important;
	padding: 12px 0 !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__inner::after {
	display: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-logo {
	position: static !important;
	display: block;
	width: min(285px, 100%) !important;
	height: auto !important;
	margin: 0 !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-logo img {
	width: 100%;
	height: 68px !important;
	object-fit: contain;
	object-position: left center;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__contact {
	position: static !important;
	display: flex !important;
	flex-flow: row wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 9px !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__row,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__phone,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__whatsapp,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__address {
	position: static !important;
	display: inline-flex !important;
	width: auto !important;
	height: 48px !important;
	align-items: center;
	gap: 8px !important;
	margin: 0 !important;
	padding: 7px 11px !important;
	border: 1px solid var(--pm-v2-border);
	border-radius: 999px;
	background: #fff;
	color: var(--pm-v2-muted) !important;
	font-size: 12px !important;
	line-height: 1.25 !important;
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__row img {
	width: 28px !important;
	height: 28px !important;
	object-fit: contain;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__row strong {
	color: var(--pm-v2-ink) !important;
	font-size: 13px !important;
	line-height: 1.2 !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
}

body.pm-redesign-v2.pm-legacy-document :is(.pm-legacy-hero, .pm-legacy-testimonials, .pm-legacy-contact-tail, .pm-legacy-convenio, .pm-legacy-thanks__body) {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
	width: 100% !important;
	max-width: none !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	overflow: hidden;
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document :is(.pm-legacy-hero, .pm-legacy-testimonials, .pm-legacy-contact-tail)::before,
body.pm-redesign-v2.pm-legacy-document :is(.pm-legacy-hero, .pm-legacy-testimonials, .pm-legacy-contact-tail)::after {
	display: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-background {
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	object-fit: cover;
	opacity: .06;
	pointer-events: none;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-hero {
	padding: clamp(60px, 7vw, 96px) 24px !important;
	background:
		radial-gradient(circle at 88% 10%, rgba(141, 187, 46, .15), transparent 25rem),
		var(--pm-v2-surface);
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-grid {
	position: relative !important;
	z-index: 1;
	display: grid !important;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr) !important;
	gap: clamp(32px, 5vw, 64px) !important;
	width: min(1200px, 100%) !important;
	height: auto !important;
	margin: 0 auto !important;
}

body.pm-redesign-v2.pm-legacy-document :is(.pm-legacy-primary, .pm-legacy-secondary) {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-primary h2 {
	position: static !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 0 12px !important;
	overflow: visible !important;
	color: var(--pm-v2-navy) !important;
	font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
	font-style: normal !important;
	font-weight: 700 !important;
	line-height: 1.04 !important;
	letter-spacing: -.04em;
	text-align: left !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-subtitle {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 0 30px !important;
	color: var(--pm-v2-green) !important;
	font-size: clamp(1.15rem, 2vw, 1.5rem) !important;
	font-style: normal !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
	text-align: left !important;
}

body.pm-redesign-v2.pm-legacy-document :is(.pm-legacy-feature-image, .pm-legacy-video) {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 0 28px !important;
	overflow: hidden;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius-lg);
	background: var(--pm-v2-navy);
	box-shadow: var(--pm-v2-shadow-md);
	object-fit: cover;
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-video {
	aspect-ratio: 16 / 9;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-button {
	position: static !important;
	display: inline-flex !important;
	width: auto !important;
	max-width: 100%;
	height: auto !important;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	margin: 0 0 28px !important;
	padding: 13px 24px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--pm-v2-green) !important;
	box-shadow: 0 10px 26px rgba(79, 107, 31, .2);
	color: #fff !important;
	font-family: "Jost", sans-serif !important;
	font-size: 14px !important;
	font-style: normal !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;
	text-align: center !important;
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-button--red,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-button--dark {
	background: var(--pm-v2-navy) !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-button:hover {
	background: var(--pm-v2-brand) !important;
	transform: translateY(-2px) !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-benefits {
	position: static !important;
	display: grid !important;
	width: auto !important;
	height: auto !important;
	gap: 12px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-benefits li,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-benefits li:nth-child(n) {
	position: relative !important;
	display: grid !important;
	grid-template-columns: 28px 1fr !important;
	gap: 12px !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: 16px !important;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius-sm);
	background: rgba(255, 255, 255, .9);
	color: var(--pm-v2-ink) !important;
	font-size: 14px !important;
	line-height: 1.55 !important;
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-benefits li img {
	position: static !important;
	width: 26px !important;
	height: 26px !important;
	object-fit: contain;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-secondary {
	padding: 0 !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-form {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: clamp(28px, 4vw, 42px) !important;
	border: 1px solid var(--pm-v2-border);
	border-radius: var(--pm-v2-radius);
	background: #fff;
	box-shadow: var(--pm-v2-shadow-md);
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-form h2 {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 0 24px !important;
	color: var(--pm-v2-navy) !important;
	font-size: 1.5rem !important;
	font-style: normal !important;
	font-weight: 650 !important;
	line-height: 1.3 !important;
	text-align: left !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-form .campo,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-form .campo:nth-of-type(n) {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 0 16px !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-form label {
	color: var(--pm-v2-ink) !important;
	font-size: 13px !important;
	font-weight: 700;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-form :where(input:not([type="submit"]), textarea) {
	position: static !important;
	width: 100% !important;
	height: auto !important;
	min-height: 52px;
	padding: 13px 15px !important;
	border: 1px solid #cfdad1 !important;
	border-radius: var(--pm-v2-radius-sm) !important;
	background: #fbfcfa !important;
	color: var(--pm-v2-ink) !important;
	font: 400 15px/1.4 "Open Sans", sans-serif !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-form textarea {
	min-height: 126px;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-form .wpcf7-submit {
	position: static !important;
	width: auto !important;
	height: 50px !important;
	margin: 4px 0 0 !important;
	padding: 0 28px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--pm-v2-green) !important;
	color: #0c211b !important; /* antes #fff (2,85:1); oscuro sobre el verde = 5,9:1, como los demás botones (9-sep-2026) */
	font: 600 15px/1 "Jost", sans-serif !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonials {
	padding: clamp(70px, 8vw, 105px) 24px !important;
	background: var(--pm-v2-tint);
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonials > :not(.pm-legacy-background) {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
	z-index: 1;
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonials h2 {
	width: auto !important;
	height: auto !important;
	margin: 0 0 42px !important;
	color: var(--pm-v2-navy) !important;
	font-size: clamp(2rem, 4vw, 3.25rem) !important;
	font-style: normal !important;
	font-weight: 700 !important;
	line-height: 1.1 !important;
	text-align: center !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonial-grid {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 22px !important;
	width: min(1100px, 100%) !important;
	height: auto !important;
	margin: 0 auto 34px !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonial-grid blockquote,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonial-grid blockquote:nth-child(n) {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	padding: 30px !important;
	border: 1px solid rgba(141, 187, 46, .22);
	border-radius: var(--pm-v2-radius);
	background: rgba(255, 255, 255, .9);
	box-shadow: var(--pm-v2-shadow-sm);
	color: var(--pm-v2-muted) !important;
	text-align: left !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonial-grid h3 {
	margin: 0 0 10px !important;
	color: var(--pm-v2-green) !important;
	font-size: 1.35rem !important;
	font-weight: 650 !important;
	text-align: left !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonial-grid p {
	margin: 0 !important;
	color: inherit !important;
	font-size: 14px !important;
	line-height: 1.7 !important;
	text-align: left !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonials > .pm-legacy-button,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonials > p > .pm-legacy-button {
	display: flex !important;
	width: fit-content !important;
	margin: 0 auto !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-map {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	width: 100% !important;
	height: 380px !important;
	margin: 0 !important;
	overflow: hidden;
	border: 0;
	background: #e5e9e5;
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-map iframe {
	position: static !important;
	width: 100% !important;
	height: 100% !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-contact-tail {
	display: grid !important;
	min-height: 180px !important;
	place-items: center;
	padding: 52px 24px !important;
	background: var(--pm-v2-navy-deep) !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-contact-tail > :not(.pm-legacy-background) {
	position: static !important;
	z-index: 1;
	margin: 0 !important;
	transform: none !important;
}

/* Convenio histórico: composición editorial de dos columnas sin coordenadas. */
body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 26px 48px !important;
	padding: clamp(64px, 8vw, 110px) max(24px, calc((100vw - 1160px) / 2)) !important;
	background: var(--pm-v2-surface);
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio::after {
	display: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio > :not(.pm-legacy-background) {
	position: static !important;
	z-index: 1;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio h2 {
	grid-column: 1 / -1;
	max-width: 1000px;
	margin: 0 auto 32px !important;
	color: var(--pm-v2-navy) !important;
	font-size: clamp(2.4rem, 5vw, 4.2rem) !important;
	font-style: normal !important;
	font-weight: 700 !important;
	line-height: 1.08 !important;
	text-align: center !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio__main,
body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio__secondary {
	width: 100% !important;
	border-radius: var(--pm-v2-radius-lg);
	box-shadow: var(--pm-v2-shadow-sm);
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio .pm-legacy-benefits--convenio {
	display: grid !important;
	align-content: start;
	gap: 14px !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio > .pm-legacy-button--dark {
	align-self: center;
	justify-self: stretch;
	min-height: 240px;
	padding: 44px !important;
	border: 1px solid rgba(255, 255, 255, .12) !important;
	border-radius: var(--pm-v2-radius-lg) !important;
	background:
		radial-gradient(circle at 82% 18%, rgba(173, 199, 67, .22), transparent 13rem),
		var(--pm-v2-navy) !important;
	font-size: clamp(1.25rem, 2.2vw, 1.75rem) !important;
	line-height: 1.25 !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio > .pm-legacy-button--dark::after {
	content: "\2192";
	display: inline-grid;
	width: 46px;
	height: 46px;
	place-items: center;
	margin-left: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .12);
	font-size: 25px;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio > .pm-legacy-button--green {
	align-self: center;
	justify-self: center;
	width: min(100%, 360px) !important;
	min-height: 60px;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio > .pm-legacy-button--red {
	grid-column: 1 / -1;
	justify-self: center;
	margin-top: 20px !important;
}

/* Gracias. */
body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__body {
	padding: clamp(64px, 8vw, 110px) 24px !important;
	background:
		radial-gradient(circle at 15% 10%, rgba(141, 187, 46, .16), transparent 24rem),
		var(--pm-v2-surface);
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__body > :not(.pm-legacy-background) {
	position: relative !important;
	top: auto !important;
	right: auto !important;
	bottom: auto !important;
	left: auto !important;
	z-index: 1;
	width: min(1100px, 100%) !important;
	height: auto !important;
	margin-right: auto !important;
	margin-left: auto !important;
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__intro {
	margin-bottom: 44px !important;
	text-align: center;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__intro h2 {
	position: static !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 0 16px !important;
	overflow: visible !important;
	color: var(--pm-v2-navy) !important;
	font-size: clamp(2.25rem, 5vw, 4rem) !important;
	font-style: normal !important;
	font-weight: 700 !important;
	line-height: 1.08 !important;
	text-align: center !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__echo {
	display: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__intro p {
	margin: 8px 0 !important;
	color: var(--pm-v2-muted) !important;
	font-size: 17px !important;
	line-height: 1.6 !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__grid {
	display: grid !important;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr) !important;
	gap: 34px !important;
	align-items: start;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__copy,
body.pm-redesign-v2.pm-legacy-document .pm-facebook-facade {
	position: static !important;
	width: auto !important;
	height: auto !important;
	min-height: 420px;
	margin: 0 !important;
	border: 1px solid var(--pm-v2-border) !important;
	border-radius: var(--pm-v2-radius) !important;
	background: #fff !important;
	box-shadow: var(--pm-v2-shadow-sm);
	transform: none !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__copy {
	box-sizing: border-box;
	padding: 34px !important;
}

body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__copy > p {
	position: static !important;
	width: auto !important;
	height: auto !important;
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 1050px) {
	body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__inner {
		grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__dato:first-of-type {
		display: none;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav a {
		padding-right: 11px;
		padding-left: 11px;
	}

	body.pm-redesign-v2 .pm-servicios-grilla {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

}

@media (max-width: 900px) {
	body.pm-redesign-v2 .pm-shell,
	body.pm-redesign-v2.pm-legacy-document .pm-legacy-shell {
		width: min(100% - 36px, 760px);
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-header {
		position: sticky;
		z-index: 700;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__inner {
		display: block;
		min-height: 72px;
		padding: 9px 0;
		text-align: left;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-brand img {
		width: 220px;
		max-height: 54px;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-header__side {
		display: none;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-header > .pm-shell:last-child {
		position: static;
		width: 100%;
		border: 0;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-menu-toggle {
		position: absolute;
		top: 14px;
		right: 18px;
		display: inline-flex;
		height: 44px;
		align-items: center;
		margin: 0;
		padding: 0 16px;
		border: 1px solid var(--pm-v2-border);
		border-radius: 999px;
		background: var(--pm-v2-white);
		color: var(--pm-v2-navy);
		font-family: "Jost", sans-serif;
		font-size: 14px;
		font-weight: 600;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav {
		position: absolute;
		top: 68px;
		right: 14px;
		left: 14px;
		display: none;
		width: auto;
		max-height: calc(100vh - 88px);
		padding: 12px;
		overflow: auto;
		border: 1px solid var(--pm-v2-border);
		border-radius: var(--pm-v2-radius);
		background: rgba(255, 255, 255, .99);
		box-shadow: var(--pm-v2-shadow-md);
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav.abierto {
		display: block;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav > ul {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav a {
		padding: 11px 14px;
		border-radius: 10px;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav > ul > li > a::after {
		display: none;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-nav li ul {
		position: static;
		display: block;
		min-width: 0;
		margin-left: 14px;
		padding: 2px 0 4px 10px;
		border: 0;
		border-left: 2px solid var(--pm-v2-border);
		border-radius: 0;
		box-shadow: none;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-cols,
	body.pm-redesign-v2 .pm-convenios,
	body.pm-redesign-v2 .pm-urgencia__grid,
	body.pm-redesign-v2.pm-legacy-document .pm-legacy-grid {
		grid-template-columns: 1fr !important;
	}

	/* La regla de reflujo de Urgencia tiene mayor especificidad que la base. */
	body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__grid {
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 32px !important;
	}

	body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__grid > div {
		min-width: 0 !important;
		width: 100% !important;
	}

	body.pm-redesign-v2 .pm-servicios-fila {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.pm-redesign-v2 .pm-hero {
		height: clamp(430px, 70vw, 560px) !important;
	}

	body.pm-redesign-v2 .pm-hero__rotulo {
		bottom: 40px;
		left: 40px !important;
		max-width: calc(100% - 80px);
	}

	body.pm-redesign-v2 .pm-entrada {
		grid-template-columns: 1fr;
	}

	body.pm-redesign-v2 .pm-entrada__foto {
		aspect-ratio: 16 / 10;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__cols {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__col:last-child {
		grid-column: 1 / -1;
	}

	body.pm-redesign-v2.pm-family--urgencia .pm-testimonios-grid,
	body.pm-redesign-v2 .pm-testimonios-grid,
	body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonial-grid {
		grid-template-columns: 1fr !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__inner {
		grid-template-columns: 240px minmax(0, 1fr) !important;
	}


	body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio > * {
		grid-column: 1 !important;
		min-width: 0 !important;
		max-width: 100% !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__grid {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 620px) {
	body.pm-redesign-v2 {
		font-size: 15px;
	}

	body.pm-redesign-v2 .pm-shell,
	body.pm-redesign-v2.pm-legacy-document .pm-legacy-shell {
		width: calc(100% - 32px);
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-main {
		padding: 42px 0 58px;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-titulo,
	body.pm-redesign-v2:not(.pm-legacy-document) .pm-formas-titulo {
		font-size: clamp(2rem, 11vw, 3rem) !important;
	}

	body.pm-redesign-v2.pm-route--servicios main > .pm-shell > h1.pm-solo-lectores,
	body.pm-redesign-v2.pm-route--terminos-y-servicios main > .pm-shell > h1.pm-solo-lectores,
	body.pm-redesign-v2.pm-family--blog main > h1.pm-solo-lectores {
		width: calc(100% - 32px);
		font-size: clamp(2.3rem, 13vw, 3.4rem);
	}

	body.pm-redesign-v2 .pm-hero {
		height: 430px !important;
		border-radius: 20px;
	}

	body.pm-redesign-v2 .pm-hero::after {
		background: linear-gradient(0deg, rgba(8, 29, 49, .72) 0%, rgba(8, 29, 49, .1) 70%);
	}

	body.pm-redesign-v2 .pm-hero__slide > img {
		object-position: center;
	}

	body.pm-redesign-v2 .pm-hero__slide:nth-child(2) > img {
		object-position: center 42%;
	}

	body.pm-redesign-v2 .pm-hero__rotulo {
		right: 18px;
		bottom: 46px;
		left: 18px !important;
		max-width: none;
		padding: 16px 18px;
		border-radius: 14px;
		font-size: clamp(1.55rem, 8vw, 2.15rem);
	}

	body.pm-redesign-v2 .pm-hero__flecha,
	body.pm-redesign-v2 .pm-carrusel .pm-hero__flecha {
		width: 42px;
		height: 42px;
		font-size: 30px;
	}

	body.pm-redesign-v2 .pm-hero__flecha--izq,
	body.pm-redesign-v2 .pm-carrusel .pm-hero__flecha--izq { left: 8px; }
	body.pm-redesign-v2 .pm-hero__flecha--der,
	body.pm-redesign-v2 .pm-carrusel .pm-hero__flecha--der { right: 8px; }

	body.pm-redesign-v2 .pm-servicios-fila {
		grid-template-columns: 1fr;
	}

	body.pm-redesign-v2 .pm-servicios-fila .pm-servicio-card {
		min-height: 200px;
	}

	body.pm-redesign-v2 .pm-servicios-grilla {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	body.pm-redesign-v2 .pm-servicios-grilla > * {
		min-height: 190px;
		padding: 22px 10px;
	}

	body.pm-redesign-v2 .pm-servicios-grilla img {
		width: 86px;
		height: 86px;
	}

	body.pm-redesign-v2 .pm-servicios-grilla h2 {
		font-size: 14px;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-caja,
	body.pm-redesign-v2:not(.pm-legacy-document) .pm-form,
	body.pm-redesign-v2:not(.pm-legacy-document) .pm-full-blanco,
	body.pm-redesign-v2 .pm-post,
	body.pm-redesign-v2 .pm-post__comentarios {
		padding: 28px 22px !important;
		border-radius: 18px;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-full-blanco {
		width: 100%;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-articulo,
	body.pm-redesign-v2 .pm-post__contenido {
		font-size: 16px !important;
		line-height: 1.75 !important;
	}

	body.pm-redesign-v2 .pm-carrusel--pago .pm-carrusel__pista {
		aspect-ratio: 4 / 3;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer {
		padding-top: 52px !important;
		padding-bottom: 78px !important;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__cols {
		grid-template-columns: 1fr !important;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-footer__col:last-child {
		grid-column: auto;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-flotantes {
		position: fixed;
		right: 8px;
		bottom: 8px;
		left: 8px;
		z-index: 600;
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 7px;
		padding: 7px !important;
		border: 1px solid rgba(14, 42, 71, .12) !important;
		border-radius: 18px;
		background: rgba(255, 255, 255, .94) !important;
		box-shadow: 0 12px 38px rgba(8, 29, 49, .22);
		-webkit-backdrop-filter: blur(14px);
		backdrop-filter: blur(14px);
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-flotantes .pm-flotante-agenda,
	body.pm-redesign-v2:not(.pm-legacy-document) .pm-flotantes .pm-flotante-wsp {
		position: static !important;
		inset: auto !important;
		width: 100% !important;
		height: 48px !important;
		margin: 0 !important;
		padding: 0 10px !important;
		border-radius: 12px !important;
		font-size: 11px !important;
		letter-spacing: .01em !important;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-flotantes .pm-flotante-wsp svg {
		display: none;
	}

	body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header {
		grid-template-columns: minmax(0, 1fr) !important;
		width: calc(100% - 32px) !important;
		min-height: 0 !important;
		padding: 12px 0 !important;
	}

	body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header > a:first-child {
		width: min(230px, 100%) !important;
	}

	body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header > a:first-child img {
		width: 100% !important;
		height: 60px !important;
	}

	body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__header .datos {
		justify-content: flex-start !important;
	}


	body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__hero {
		padding: 48px 0 64px !important;
		background:
			linear-gradient(rgba(246, 248, 245, .9), rgba(246, 248, 245, .96)),
			url("../images/urgencia-fondo.jpg") center / cover;
	}

	body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__hero h1 {
		font-size: clamp(2.8rem, 15vw, 4rem) !important;
	}

	body.pm-redesign-v2 .pm-testimonios-grid > div {
		padding: 24px;
	}

	body.pm-redesign-v2.pm-family--urgencia .pm-urgencia__mapa,
	body.pm-redesign-v2.pm-legacy-document .pm-legacy-map {
		height: 300px !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-header {
		position: static;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__inner {
		display: block !important;
		min-height: 0 !important;
		padding: 10px 0 !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-logo {
		width: 225px !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-logo img {
		height: 58px !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-header__contact {
		justify-content: flex-start;
		margin-top: 8px !important;
	}


	body.pm-redesign-v2.pm-legacy-document .pm-legacy-hero,
	body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonials,
	body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__body {
		padding: 52px 16px !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-primary h2 {
		font-size: clamp(2.25rem, 13vw, 3.4rem) !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-testimonial-grid blockquote {
		padding: 24px !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-convenio {
		padding: 52px 16px !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__copy,
	body.pm-redesign-v2.pm-legacy-document .pm-facebook-facade {
		min-height: 360px;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__grid {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__grid > * {
		min-width: 0 !important;
		max-width: 100% !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-facebook-facade,
	body.pm-redesign-v2.pm-legacy-document .pm-facebook-facade__trigger {
		width: 100% !important;
		min-width: 0 !important;
	}

	body.pm-redesign-v2.pm-legacy-document .pm-legacy-thanks__copy .pm-legacy-button {
		display: flex !important;
		width: 100% !important;
		min-width: 0 !important;
		white-space: normal !important;
	}
}

@media (max-width: 360px) {
	body.pm-redesign-v2:not(.pm-legacy-document) .pm-header > .pm-shell {
		width: calc(100% - 32px);
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-brand img {
		width: 185px;
	}

	body.pm-redesign-v2:not(.pm-legacy-document) .pm-menu-toggle {
		right: 16px;
		padding-right: 14px;
		padding-left: 14px;
	}
}

/* Los datos del encabezado de las landings (teléfono, WhatsApp y dirección) ya
   NO se ocultan de uno en uno al estrechar (antes: dirección en 1050px, texto
   de WhatsApp en 900px, el resto en 620px). El sitio pasa de escritorio a modo
   móvil de una vez en 1100px y allí desaparecen los tres juntos, dejando la
   barra inferior (interior-organico.css). */

/* ============================== MOVIMIENTO ACCESIBLE ============================== */
@media (prefers-reduced-motion: no-preference) {
	body.pm-redesign-v2.pm-effects-ready .pm-reveal {
		opacity: 0;
		transform: translateY(24px);
		transition: opacity .58s cubic-bezier(.2, .7, .2, 1), transform .58s cubic-bezier(.2, .7, .2, 1);
	}

	body.pm-redesign-v2.pm-effects-ready .pm-reveal.pm-reveal--visible {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.pm-redesign-v2,
	body.pm-redesign-v2 *,
	body.pm-redesign-v2 *::before,
	body.pm-redesign-v2 *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
