/* =====================================================================
   Shitoushui — Ecosistema
   Superficie negra de principio a fin. Paleta tomada de la portada:
   #060606 fondo · #141414 carbón · blanco · grises · #DA6326 naranja
   ===================================================================== */

:root {
	--sshe-k:        #060606;
	--sshe-k2:       #0E0E0E;
	--sshe-carbon:   #141414;
	--sshe-carbon-2: #1B1B1B;
	--sshe-line:     #2A2A2A;
	--sshe-line-2:   #3A3A3A;
	--sshe-w:        #FFFFFF;
	--sshe-g:        #B5B5B5;
	--sshe-g2:       #8A8A8A;
	--sshe-o:        #DA6326;
	--sshe-o-lit:    #E8763A;
	--sshe-glow:     rgba(218, 99, 38, .20);
	--sshe-radius:   2px;
	--sshe-max:      1280px;
	--sshe-font:     Poppins, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Superficie: nunca blanco, ni en overscroll ---------- */
html.sshe-page,
html.sshe-page body,
html.sshe-page #sshe-app {
	background-color: var(--sshe-k);
	color: var(--sshe-g);
}
html.sshe-page { color-scheme: dark; -webkit-text-size-adjust: 100%; }
html.sshe-page body { margin: 0; font-family: var(--sshe-font); overflow-x: hidden; }
html.sshe-page * { box-sizing: border-box; }
html.sshe-page img { max-width: 100%; display: block; }
html.sshe-page ::selection { background: var(--sshe-o); color: #fff; }

/* El menú también vive fuera de las páginas del ecosistema */
.sshe-menu, .sshe-wa { font-family: var(--sshe-font); }

/* ---------- Tipografía ---------- */
.sshe-h1 {
	font-size: clamp(2.1rem, 1.3rem + 3vw, 3.8rem);
	line-height: 1.06; font-weight: 600; letter-spacing: -.02em;
	color: var(--sshe-w); margin: 0 0 1.1rem;
}
.sshe-h2 {
	font-size: clamp(1.35rem, 1.1rem + 1.1vw, 2rem);
	line-height: 1.18; font-weight: 600; letter-spacing: -.01em;
	color: var(--sshe-w); margin: 0 0 1rem;
}
.sshe-h3 {
	font-size: clamp(1.05rem, .98rem + .35vw, 1.25rem);
	line-height: 1.25; font-weight: 600; color: var(--sshe-w); margin: 0 0 .9rem;
}
.sshe-accent { color: var(--sshe-o); }
.sshe-eyebrow {
	font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
	font-weight: 600; color: var(--sshe-o); margin: 0 0 1rem;
}
.sshe-lead { font-size: clamp(1rem, .96rem + .3vw, 1.13rem); line-height: 1.75; color: var(--sshe-g); margin: 0 0 1.3rem; max-width: 68ch; }
.sshe-body { font-size: 1rem; line-height: 1.8; color: var(--sshe-g); margin: 0 0 1.1rem; max-width: 72ch; }
.sshe-value { font-size: clamp(1rem, .96rem + .3vw, 1.15rem); line-height: 1.6; color: var(--sshe-w); font-weight: 400; margin: 0 0 1.6rem; padding-left: 1.1rem; border-left: 2px solid var(--sshe-o); max-width: 60ch; }
.sshe-quote { margin: 2.5rem 0; padding: 1.8rem 0 1.8rem 1.6rem; border-left: 2px solid var(--sshe-o); font-size: clamp(1.05rem, 1rem + .5vw, 1.4rem); line-height: 1.5; color: var(--sshe-w); font-weight: 500; max-width: 60ch; }
.sshe-note { font-size: .88rem; line-height: 1.7; color: var(--sshe-g2); margin: 1rem 0 0; max-width: 72ch; }
.sshe-footnote { font-size: .78rem; line-height: 1.6; color: var(--sshe-g2); margin: 1.2rem 0 0; }

/* ---------- Botones ---------- */
.sshe-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
	padding: .95rem 1.7rem; font: inherit; font-size: .92rem; font-weight: 600;
	line-height: 1; text-decoration: none; cursor: pointer;
	border: 1px solid transparent; border-radius: var(--sshe-radius);
	transition: background-color .25s, color .25s, border-color .25s, box-shadow .25s;
}
.sshe-btn--primary { background: var(--sshe-o); border-color: var(--sshe-o); color: #fff; }
.sshe-btn--primary:hover, .sshe-btn--primary:focus-visible { background: var(--sshe-o-lit); border-color: var(--sshe-o-lit); color: #fff; box-shadow: 0 8px 30px var(--sshe-glow); }
.sshe-btn--ghost { background: transparent; color: var(--sshe-w); border-color: var(--sshe-line-2); }
.sshe-btn--ghost:hover, .sshe-btn--ghost:focus-visible { border-color: var(--sshe-o); color: var(--sshe-o); }
.sshe-btn--full { width: 100%; }

/* ---------- Foco visible ---------- */
html.sshe-page :focus-visible, .sshe-menu :focus-visible, .sshe-wa:focus-visible {
	outline: 2px solid var(--sshe-o); outline-offset: 3px; border-radius: 2px;
}

/* ---------- Encabezado ---------- */
.sshe-header {
	position: sticky; top: 0; z-index: 60;
	display: flex; align-items: center; justify-content: space-between;
	gap: 1rem; padding: 1.1rem clamp(1rem, 4vw, 3rem);
	background: rgba(6, 6, 6, .92); backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--sshe-line);
}
.sshe-header__brand { display: inline-flex; align-items: center; text-decoration: none; }
.sshe-header__brand img { height: 34px; width: auto; }
.sshe-brand { display: inline-flex; align-items: center; gap: .6rem; color: var(--sshe-o); }
.sshe-brand__mark { flex: none; }
.sshe-brand__word { color: var(--sshe-w); font-weight: 600; letter-spacing: .24em; font-size: .92rem; }
.sshe-menu__brand .sshe-brand__word { font-size: .82rem; }
.sshe-footer__brand .sshe-brand__word { font-size: .84rem; }
.sshe-header__word { color: var(--sshe-w); font-weight: 600; letter-spacing: .22em; font-size: .95rem; }
.sshe-burger {
	width: 46px; height: 46px; display: grid; place-content: center; gap: 6px;
	background: none; border: 0; cursor: pointer; padding: 0;
}
.sshe-burger span { display: block; width: 26px; height: 2px; background: var(--sshe-w); transition: background-color .2s; }
.sshe-burger:hover span { background: var(--sshe-o); }

/* ---------- Contenedor ---------- */
.sshe-main { max-width: var(--sshe-max); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 3rem) 4rem; }

/* ---------- Breadcrumb ---------- */
.sshe-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; padding: 1.6rem 0 .6rem; font-size: .78rem; color: var(--sshe-g2); }
.sshe-crumbs a { color: var(--sshe-g2); text-decoration: none; }
.sshe-crumbs a:hover { color: var(--sshe-o); }
.sshe-crumbs__sep { color: var(--sshe-line-2); }
.sshe-crumbs [aria-current] { color: var(--sshe-g); }

/* ---------- Hero ---------- */
.sshe-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 4rem); }
.sshe-hero__media { margin: 0; border-radius: var(--sshe-radius); overflow: hidden; background: var(--sshe-carbon); position: relative; }
.sshe-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,6,6,0), rgba(6,6,6,.35)); pointer-events: none; }
.sshe-hero__media img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .8s ease; }
.sshe-hero:hover .sshe-hero__media img { transform: scale(1.02); }
.sshe-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.sshe-hero--pool .sshe-hero__media { box-shadow: 0 0 0 1px var(--sshe-o), 0 20px 60px var(--sshe-glow); }

.sshe-meta { list-style: none; margin: 1.8rem 0 0; padding: 1.2rem 0 0; border-top: 1px solid var(--sshe-line); display: flex; flex-wrap: wrap; gap: 2.2rem; }
.sshe-meta__k { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sshe-g2); margin-bottom: .3rem; }
.sshe-meta__v { display: block; font-size: 1rem; font-weight: 600; color: var(--sshe-w); }

/* ---------- Cuerpo ---------- */
.sshe-body-wrap { padding: clamp(1rem, 3vw, 2rem) 0 0; }
.sshe-sec { padding: clamp(2rem, 4vw, 3.2rem) 0 0; }

.sshe-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.sshe-list--2col { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); column-gap: 2.5rem; }
.sshe-list li { position: relative; padding-left: 1.3rem; font-size: .97rem; line-height: 1.65; color: var(--sshe-g); }
.sshe-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 1px; background: var(--sshe-o); }

.sshe-steps { counter-reset: s; list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.sshe-steps li { counter-increment: s; display: flex; gap: 1.2rem; align-items: baseline; padding: .85rem 0; border-bottom: 1px solid var(--sshe-line); font-size: .97rem; line-height: 1.65; color: var(--sshe-g); }
.sshe-steps li::before { content: counter(s, decimal-leading-zero); font-size: .72rem; font-weight: 600; letter-spacing: .08em; color: var(--sshe-o); flex: none; min-width: 1.8rem; }

/* ---------- Precio ---------- */
.sshe-price { display: flex; flex-direction: column; gap: .25rem; padding: 1.2rem 0; border-top: 1px solid var(--sshe-line); border-bottom: 1px solid var(--sshe-line); margin: 1.4rem 0; }
.sshe-price__label { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sshe-g2); font-weight: 600; }
.sshe-price__main { font-size: clamp(1.3rem, 1.1rem + .8vw, 1.7rem); font-weight: 600; color: var(--sshe-w); line-height: 1.2; }
.sshe-price__cur { font-size: .7em; color: var(--sshe-g2); font-weight: 500; }
.sshe-price__alt { font-size: .92rem; color: var(--sshe-o); }
.sshe-price__note { font-size: .72rem; line-height: 1.55; color: var(--sshe-g2); margin-top: .5rem; }

/* ---------- Tarjetas de niveles ---------- */
.sshe-tiers { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); margin: 2.2rem 0 0; }
.sshe-tier { background: var(--sshe-carbon); border: 1px solid var(--sshe-line); border-radius: var(--sshe-radius); padding: 1.8rem 1.6rem; display: flex; flex-direction: column; transition: border-color .25s, box-shadow .25s; }
.sshe-tier:hover { border-color: var(--sshe-o); }
.sshe-tier--featured { border-color: var(--sshe-o); box-shadow: 0 0 0 1px var(--sshe-glow), 0 20px 50px rgba(0,0,0,.5); }
.sshe-tier__name { font-size: 1.02rem; font-weight: 600; color: var(--sshe-w); margin: 0 0 .4rem; line-height: 1.3; }
.sshe-tier .sshe-price { margin: .4rem 0 1.2rem; }
.sshe-kpi { list-style: none; margin: 0 0 1.2rem; padding: 0 0 1.2rem; border-bottom: 1px solid var(--sshe-line); display: flex; flex-wrap: wrap; gap: 1.8rem; }
.sshe-kpi__v { display: block; font-size: 1.25rem; font-weight: 600; color: var(--sshe-o); line-height: 1.1; }
.sshe-kpi__k { display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sshe-g2); margin-top: .3rem; }
.sshe-tier__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.sshe-tier__list li { position: relative; padding-left: 1.2rem; font-size: .9rem; line-height: 1.6; color: var(--sshe-g); }
.sshe-tier__list li::before { content: ""; position: absolute; left: 0; top: .68em; width: 6px; height: 1px; background: var(--sshe-o); }

/* ---------- Tarjetas de navegación ---------- */
.sshe-cards-wrap { padding: clamp(2.5rem, 6vw, 4.5rem) 0 0; }
.sshe-cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.sshe-card { display: flex; }
.sshe-card__link { display: flex; flex-direction: column; width: 100%; background: var(--sshe-carbon); border: 1px solid var(--sshe-line); border-radius: var(--sshe-radius); overflow: hidden; text-decoration: none; transition: border-color .25s, box-shadow .25s, transform .25s; }
.sshe-card__link:hover, .sshe-card__link:focus-visible { border-color: var(--sshe-o); box-shadow: 0 20px 50px rgba(0,0,0,.55); transform: translateY(-2px); }
.sshe-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sshe-k2); position: relative; }
.sshe-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,6,6,0), rgba(6,6,6,.55)); }
.sshe-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.sshe-card__link:hover .sshe-card__media img { transform: scale(1.05); }
.sshe-card__body { display: flex; flex-direction: column; gap: .6rem; padding: 1.5rem 1.4rem 1.7rem; flex: 1; }
.sshe-card__cat { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sshe-o); font-weight: 600; }
.sshe-card__title { font-size: 1.12rem; font-weight: 600; color: var(--sshe-w); line-height: 1.3; }
.sshe-card__text { font-size: .9rem; line-height: 1.65; color: var(--sshe-g); flex: 1; }
.sshe-card__meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .74rem; color: var(--sshe-g2); padding-top: .6rem; border-top: 1px solid var(--sshe-line); }
.sshe-card__meta strong { color: var(--sshe-g); font-weight: 600; }
.sshe-card__cta { display: inline-flex; align-items: center; gap: .5rem; margin-top: .6rem; font-size: .84rem; font-weight: 600; color: var(--sshe-o); }
.sshe-card--pool .sshe-card__link { border-color: var(--sshe-o); box-shadow: 0 0 0 1px var(--sshe-glow); }

/* ---------- Destinos ---------- */
.sshe-destinos { margin: 2.6rem 0 0; }
.sshe-destinos__list { list-style: none; margin: 0; padding: 0; }
.sshe-destino { display: grid; grid-template-columns: 1fr auto auto; gap: 1.2rem; align-items: center; padding: .9rem 0; border-bottom: 1px solid var(--sshe-line); font-size: .95rem; color: var(--sshe-w); }
.sshe-destino__country { color: var(--sshe-g2); font-size: .82rem; }
.sshe-destino__status { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--sshe-g2); border: 1px solid var(--sshe-line-2); border-radius: 999px; padding: .3rem .8rem; white-space: nowrap; }
.sshe-destino--disponible .sshe-destino__status { color: var(--sshe-o); border-color: var(--sshe-o); }

/* ---------- Aviso legal ---------- */
.sshe-legal { margin: 2.6rem 0 0; padding: 1.4rem 1.6rem; background: var(--sshe-carbon); border: 1px solid var(--sshe-line); border-left: 2px solid var(--sshe-o); border-radius: var(--sshe-radius); }
.sshe-legal__tag { display: block; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--sshe-w); margin-bottom: .7rem; }
.sshe-legal p { font-size: .88rem; line-height: 1.7; color: var(--sshe-g); margin: 0 0 .7rem; }
.sshe-legal p:last-child { margin-bottom: 0; }

/* ---------- Contacto y formulario ---------- */
.sshe-contact { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; margin: clamp(3rem, 7vw, 5rem) 0 0; padding: clamp(2rem, 5vw, 3.5rem) 0 0; border-top: 1px solid var(--sshe-line); }
.sshe-mail { margin-top: 2rem; padding: 1.5rem; background: var(--sshe-carbon); border: 1px solid var(--sshe-line); border-radius: var(--sshe-radius); display: flex; flex-direction: column; gap: 1.1rem; }
.sshe-mail__q { font-size: .95rem; color: var(--sshe-w); margin: 0; font-weight: 500; }
.sshe-mail__l { font-size: .78rem; color: var(--sshe-g2); margin: .3rem 0 0; }
.sshe-mail__a { font-size: 1.02rem; color: var(--sshe-o); text-decoration: none; font-weight: 600; word-break: break-all; }
.sshe-mail__a:hover { color: var(--sshe-o-lit); }
.sshe-mail .sshe-btn { align-self: flex-start; }

.sshe-form { background: var(--sshe-carbon); border: 1px solid var(--sshe-line); border-radius: var(--sshe-radius); padding: clamp(1.5rem, 3vw, 2.4rem); }
.sshe-form--pool { border-color: var(--sshe-o); box-shadow: 0 0 0 1px var(--sshe-glow); }
.sshe-form__grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.sshe-field { display: flex; flex-direction: column; gap: .4rem; margin: 0; }
.sshe-field--wide { grid-column: 1 / -1; }
.sshe-field label { font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--sshe-g); }
.sshe-req { color: var(--sshe-o); }
.sshe-field input, .sshe-field select, .sshe-field textarea {
	font: inherit; font-size: .95rem; color: var(--sshe-w);
	background: var(--sshe-carbon-2); border: 1px solid var(--sshe-line-2);
	border-radius: var(--sshe-radius); padding: .8rem .9rem; width: 100%; min-height: 46px;
	transition: border-color .2s, box-shadow .2s;
	-webkit-appearance: none; appearance: none;
}
.sshe-field textarea { min-height: 118px; resize: vertical; }
.sshe-field input::placeholder, .sshe-field textarea::placeholder { color: var(--sshe-g2); }
.sshe-field input:focus, .sshe-field select:focus, .sshe-field textarea:focus { border-color: var(--sshe-o); box-shadow: 0 0 0 3px var(--sshe-glow); outline: none; }
.sshe-field input[aria-invalid="true"], .sshe-field select[aria-invalid="true"], .sshe-field textarea[aria-invalid="true"] { border-color: var(--sshe-o); }
/* Autofill: nunca blanco */
.sshe-field input:-webkit-autofill,
.sshe-field input:-webkit-autofill:hover,
.sshe-field input:-webkit-autofill:focus,
.sshe-field textarea:-webkit-autofill,
.sshe-field select:-webkit-autofill {
	-webkit-text-fill-color: var(--sshe-w);
	-webkit-box-shadow: 0 0 0 1000px var(--sshe-carbon-2) inset;
	box-shadow: 0 0 0 1000px var(--sshe-carbon-2) inset;
	caret-color: var(--sshe-w);
	transition: background-color 9999s ease-in-out 0s;
}
.sshe-select { position: relative; display: block; }
.sshe-select svg { position: absolute; right: .9rem; top: 50%; transform: translateY(-50%); color: var(--sshe-o); pointer-events: none; }
.sshe-select select { padding-right: 2.4rem; }
.sshe-field select option { background: var(--sshe-carbon-2); color: var(--sshe-w); }
.sshe-field__error { font-size: .76rem; color: var(--sshe-o); min-height: 1em; font-weight: 500; }
.sshe-field__error:not(:empty)::before { content: "⚠ "; }
.sshe-field--check { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: .7rem; margin-top: 1.4rem; }
.sshe-field--check input { width: auto; min-height: 0; margin-top: .25rem; accent-color: var(--sshe-o); }
.sshe-field--check label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: .86rem; color: var(--sshe-g); line-height: 1.6; flex: 1; min-width: 200px; }
.sshe-field--check label a { color: var(--sshe-o); }
.sshe-field--check .sshe-field__error { flex-basis: 100%; }
.sshe-form .sshe-btn { margin-top: 1.6rem; }
.sshe-form__status { font-size: .9rem; margin: 1rem 0 0; line-height: 1.6; color: var(--sshe-g); }
.sshe-form__status.is-ok { color: var(--sshe-o); font-weight: 500; }
.sshe-form__status.is-error { color: var(--sshe-o-lit); }
.sshe-hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }

/* ---------- Anterior / siguiente ---------- */
.sshe-pn { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: clamp(3rem, 6vw, 4.5rem) 0 0; padding-top: 1.8rem; border-top: 1px solid var(--sshe-line); }
.sshe-pn__a { display: flex; flex-direction: column; gap: .35rem; text-decoration: none; padding: 1rem 0; }
.sshe-pn__a--next { text-align: right; align-items: flex-end; }
.sshe-pn__l { display: inline-flex; align-items: center; gap: .45rem; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sshe-g2); }
.sshe-pn__a svg { color: var(--sshe-o); }
.sshe-pn__n { font-size: 1rem; font-weight: 600; color: var(--sshe-w); }
.sshe-pn__a:hover .sshe-pn__n { color: var(--sshe-o); }

/* ---------- Footer ---------- */
.sshe-footer { background: var(--sshe-k2); border-top: 1px solid var(--sshe-line); padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem) 2rem; }
.sshe-footer__top { max-width: var(--sshe-max); margin: 0 auto; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 2.5rem; align-items: start; }
.sshe-footer__brand img { height: 32px; width: auto; }
.sshe-footer__brand span { color: var(--sshe-w); letter-spacing: .2em; font-weight: 600; }
.sshe-footer__nav { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; }
.sshe-footer__nav a { font-size: .84rem; color: var(--sshe-g); text-decoration: none; }
.sshe-footer__nav a:hover { color: var(--sshe-o); }
.sshe-footer__contact { display: flex; flex-direction: column; gap: .5rem; text-align: right; }
.sshe-footer__contact a { font-size: .86rem; color: var(--sshe-o); text-decoration: none; }
.sshe-footer__contact a:hover { color: var(--sshe-o-lit); }
.sshe-footer .sshe-legal { max-width: var(--sshe-max); margin: 2.5rem auto 0; }
.sshe-footer__copy { max-width: var(--sshe-max); margin: 2rem auto 0; font-size: .76rem; color: var(--sshe-g2); }

/* ---------- WhatsApp flotante ---------- */
.sshe-wa {
	position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 70;
	display: inline-flex; align-items: center; gap: .6rem;
	padding: .85rem 1.2rem; border-radius: 999px;
	background: var(--sshe-o); color: #fff; text-decoration: none;
	border: 1px solid var(--sshe-o);
	box-shadow: 0 10px 34px rgba(0,0,0,.55), 0 0 0 6px rgba(218,99,38,.10);
	transition: background-color .25s, box-shadow .25s;
}
.sshe-wa:hover, .sshe-wa:focus-visible { background: var(--sshe-o-lit); box-shadow: 0 12px 40px var(--sshe-glow); }
.sshe-wa__label { font-size: .88rem; font-weight: 600; }

/* =====================================================================
   MENÚ — overlay negro de pantalla completa
   ===================================================================== */
.sshe-menu { position: fixed; inset: 0; z-index: 9999; }
.sshe-menu[hidden] { display: none; }
.sshe-menu__backdrop { position: absolute; inset: 0; background: rgba(6, 6, 6, .8); backdrop-filter: blur(6px); animation: sshe-fade .25s ease both; }
.sshe-menu__dialog {
	position: absolute; inset: 0 0 0 auto; width: min(560px, 100%); height: 100%;
	background: var(--sshe-k); border-left: 1px solid var(--sshe-line);
	display: flex; flex-direction: column;
	animation: sshe-slide .3s cubic-bezier(.22,.61,.36,1) both;
	box-shadow: -40px 0 90px rgba(0,0,0,.6);
}
.sshe-menu__head { flex: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem clamp(1.2rem, 3vw, 2rem); border-bottom: 1px solid var(--sshe-line); }
.sshe-menu__brand img { height: 30px; width: auto; }
.sshe-menu__brand span { color: var(--sshe-w); letter-spacing: .2em; font-weight: 600; font-size: .9rem; }
.sshe-menu__close { width: 46px; height: 46px; display: grid; place-items: center; background: none; border: 1px solid var(--sshe-line-2); border-radius: var(--sshe-radius); color: var(--sshe-w); cursor: pointer; transition: border-color .2s, color .2s; }
.sshe-menu__close:hover { border-color: var(--sshe-o); color: var(--sshe-o); }
.sshe-menu__body { flex: 1; overflow-y: auto; padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.2rem, 3vw, 2rem) 2.5rem; }
.sshe-menu__foot { margin-top: 2.5rem; padding-top: 1.4rem; border-top: 1px solid var(--sshe-line); display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; }
.sshe-menu__home { font-size: .84rem; color: var(--sshe-g); text-decoration: none; }
.sshe-menu__home:hover { color: var(--sshe-o); }
.sshe-menu__mail { font-size: .84rem; color: var(--sshe-o); text-decoration: none; word-break: break-all; }

.sshe-nav__list, .sshe-nav__sub { list-style: none; margin: 0; padding: 0; }
.sshe-nav__item { border-bottom: 1px solid var(--sshe-line); }
.sshe-nav__row { display: flex; align-items: stretch; }
.sshe-nav__link {
	flex: 1; display: flex; align-items: center; justify-content: space-between; gap: .6rem;
	padding: 1rem .2rem; min-height: 52px;
	font-size: 1.02rem; font-weight: 500; color: var(--sshe-w); text-decoration: none;
	transition: color .2s, padding-left .2s;
}
.sshe-nav__link:hover { color: var(--sshe-o); padding-left: .5rem; }
.sshe-nav__link.is-active { color: var(--sshe-o); font-weight: 600; }
.sshe-nav__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sshe-o); flex: none; box-shadow: 0 0 0 4px var(--sshe-glow); }
.sshe-nav__link--sub { font-size: .92rem; color: var(--sshe-g); font-weight: 400; padding: .8rem .2rem .8rem 1.4rem; min-height: 48px; }
.sshe-nav__link--sub:hover { color: var(--sshe-o); }
.sshe-nav__toggle { flex: none; width: 52px; min-height: 52px; display: grid; place-items: center; background: none; border: 0; border-left: 1px solid var(--sshe-line); color: var(--sshe-o); cursor: pointer; }
.sshe-nav__toggle svg { transition: transform .25s ease; }
.sshe-nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.sshe-nav__toggle:hover { background: var(--sshe-carbon); }
.sshe-nav__sub { padding-bottom: .6rem; }

/* Pool de Inversiones */
.sshe-nav__item--pool { border-bottom: 0; margin-top: 1.6rem; }
.sshe-nav__link--pool {
	background: var(--sshe-o); color: #fff; font-weight: 600;
	border: 1px solid var(--sshe-o); border-radius: var(--sshe-radius);
	padding: 1.1rem 1.2rem; box-shadow: 0 6px 26px var(--sshe-glow);
}
.sshe-nav__link--pool:hover, .sshe-nav__link--pool.is-active { background: var(--sshe-o-lit); color: #fff; padding-left: 1.2rem; }
.sshe-nav__link--pool .sshe-nav__dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.2); }

body.sshe-locked { overflow: hidden; }

@keyframes sshe-fade { from { opacity: 0 } to { opacity: 1 } }
@keyframes sshe-slide { from { opacity: 0; transform: translateX(24px) } to { opacity: 1; transform: none } }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 1024px) {
	.sshe-hero { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
	.sshe-hero__media { order: -1; }
	.sshe-contact { grid-template-columns: minmax(0, 1fr); }
	.sshe-footer__top { grid-template-columns: minmax(0, 1fr); gap: 1.8rem; }
	.sshe-footer__contact { text-align: left; }
}

@media (max-width: 767px) {
	.sshe-menu__dialog { width: 100%; border-left: 0; }
	.sshe-cards { grid-template-columns: minmax(0, 1fr); }
	.sshe-form__grid { grid-template-columns: minmax(0, 1fr); }
	.sshe-destino { grid-template-columns: 1fr auto; }
	.sshe-destino__country { grid-column: 1; grid-row: 2; }
	.sshe-destino__status { grid-column: 2; grid-row: 1 / span 2; }
	.sshe-pn { grid-template-columns: minmax(0, 1fr); gap: 0; }
	.sshe-pn__a--next { text-align: left; align-items: flex-start; border-top: 1px solid var(--sshe-line); }
	.sshe-meta { gap: 1.4rem; }
	.sshe-wa__label { display: none; }
	.sshe-wa { padding: .95rem; }
}

@media (max-width: 380px) {
	.sshe-main { padding-left: 1rem; padding-right: 1rem; }
	.sshe-header { padding-left: 1rem; padding-right: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
	html.sshe-page *, .sshe-menu * {
		animation-duration: .01ms !important; animation-iteration-count: 1 !important;
		transition-duration: .01ms !important; scroll-behavior: auto !important;
	}
	.sshe-card__link:hover .sshe-card__media img,
	.sshe-hero:hover .sshe-hero__media img { transform: none; }
}

@media print {
	.sshe-menu, .sshe-wa, .sshe-form, .sshe-header { display: none !important; }
	html.sshe-page, html.sshe-page body { background: #fff; color: #000; }
}

/* ---------- Saltar al contenido ---------- */
.sshe-skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--sshe-o); color: #fff; padding: .8rem 1.2rem; border-radius: var(--sshe-radius); font-size: .85rem; font-weight: 600; text-decoration: none; }
.sshe-skip:focus { left: 1rem; top: 1rem; }
.sshe-shell { min-height: 100vh; display: flex; flex-direction: column; background: var(--sshe-k); }
.sshe-shell .sshe-main { flex: 1; width: 100%; }

/* =====================================================================
   BLINDAJE
   El tema del sitio pinta enlaces y botones en #CC3366. Este bloque aísla
   el componente para que ningún color ajeno a la marca se filtre.
   ===================================================================== */
.sshe-shell a, .sshe-menu a, .sshe-wa { text-decoration: none; }
.sshe-shell button, .sshe-menu button { font: inherit; }

.sshe-header__brand, .sshe-menu__brand, .sshe-footer__brand, .sshe-brand { color: var(--sshe-o) !important; }
.sshe-brand__mark { color: var(--sshe-o) !important; }
.sshe-brand__mark path { fill: currentColor !important; }
.sshe-brand__word { color: var(--sshe-w) !important; }

.sshe-burger { border: 0 !important; background: none !important; box-shadow: none !important; color: var(--sshe-w) !important; }
.sshe-burger span { background-color: var(--sshe-w) !important; }
.sshe-burger:hover span { background-color: var(--sshe-o) !important; }

.sshe-menu__close { color: var(--sshe-w) !important; border-color: var(--sshe-line-2) !important; background: none !important; }
.sshe-menu__close:hover { color: var(--sshe-o) !important; border-color: var(--sshe-o) !important; }
.sshe-nav__toggle { color: var(--sshe-o) !important; border-color: transparent !important; border-left-color: var(--sshe-line) !important; background: none !important; }
.sshe-nav__toggle:hover { background: var(--sshe-carbon) !important; }

.sshe-nav__link { color: var(--sshe-w) !important; }
.sshe-nav__link--sub { color: var(--sshe-g) !important; }
.sshe-nav__link:hover, .sshe-nav__link.is-active { color: var(--sshe-o) !important; }
.sshe-nav__link--pool, .sshe-nav__link--pool:hover, .sshe-nav__link--pool.is-active { color: #fff !important; }

.sshe-crumbs a { color: var(--sshe-g2) !important; }
.sshe-crumbs a:hover { color: var(--sshe-o) !important; }

.sshe-card__link { color: var(--sshe-g) !important; }
.sshe-card__title { color: var(--sshe-w) !important; }
.sshe-card__text { color: var(--sshe-g) !important; }
.sshe-card__cat, .sshe-card__cta { color: var(--sshe-o) !important; }
.sshe-card__meta { color: var(--sshe-g2) !important; }
.sshe-card__meta strong { color: var(--sshe-g) !important; }

.sshe-btn--primary { color: #fff !important; }
.sshe-btn--ghost { color: var(--sshe-w) !important; }
.sshe-btn--ghost:hover { color: var(--sshe-o) !important; }

.sshe-pn__a { color: var(--sshe-g) !important; }
.sshe-pn__n { color: var(--sshe-w) !important; }
.sshe-pn__a:hover .sshe-pn__n { color: var(--sshe-o) !important; }
.sshe-pn__l { color: var(--sshe-g2) !important; }

.sshe-footer__nav a, .sshe-menu__home { color: var(--sshe-g) !important; }
.sshe-footer__nav a:hover, .sshe-menu__home:hover { color: var(--sshe-o) !important; }
.sshe-footer__contact a, .sshe-mail__a, .sshe-menu__mail, .sshe-field--check label a { color: var(--sshe-o) !important; }
.sshe-wa { color: #fff !important; }
.sshe-skip { color: #fff !important; }

/* ---------- BLINDAJE BOTONES (bordes del tema) ---------- */
.sshe-btn { border-color: transparent !important; }
.sshe-btn--primary,
.sshe-btn--primary:link,
.sshe-btn--primary:visited { background-color: var(--sshe-o) !important; border-color: var(--sshe-o) !important; color: #fff !important; }
.sshe-btn--primary:hover,
.sshe-btn--primary:focus-visible { background-color: var(--sshe-o-lit) !important; border-color: var(--sshe-o-lit) !important; color: #fff !important; }
.sshe-btn--ghost,
.sshe-btn--ghost:link,
.sshe-btn--ghost:visited { background-color: transparent !important; border-color: var(--sshe-line-2) !important; color: var(--sshe-w) !important; }
.sshe-btn--ghost:hover,
.sshe-btn--ghost:focus-visible { border-color: var(--sshe-o) !important; color: var(--sshe-o) !important; }
.sshe-input, .sshe-select, .sshe-textarea { border-color: var(--sshe-line) !important; }
.sshe-input:focus, .sshe-select:focus, .sshe-textarea:focus { border-color: var(--sshe-o) !important; }

/* ---------- Enlace "Ecosistema" inyectado en el encabezado del sitio ---------- */
a[data-sshe-headlink] { cursor: pointer; }

/* ---------- Pastilla naranja con latido para "Ecosistema" en el encabezado ---------- */
a[data-sshe-headlink] {
	display: inline-block !important;
	padding: .5em 1.05em !important;
	border: 0 !important;
	border-radius: 999px !important;
	background-color: var(--sshe-o) !important;
	color: #fff !important;
	text-decoration: none !important;
	box-shadow: 0 0 0 0 rgba(218, 99, 38, .5);
	animation: sshe-latido 2.6s ease-in-out infinite;
}
@keyframes sshe-latido {
	0%, 100% { background-color: #DA6326; box-shadow: 0 0 0 0 rgba(218, 99, 38, .55); }
	50%      { background-color: #E8763A; box-shadow: 0 0 20px 6px rgba(218, 99, 38, .30); }
}
a[data-sshe-headlink]:hover,
a[data-sshe-headlink]:focus,
a[data-sshe-headlink]:focus-visible {
	animation: none !important;
	background-color: var(--sshe-o-lit) !important;
	color: #fff !important;
	box-shadow: 0 0 24px 5px rgba(218, 99, 38, .45) !important;
}
a[data-sshe-headlink]:focus,
a[data-sshe-headlink]:focus-visible {
	outline: 2px solid var(--sshe-o-lit) !important;
	outline-offset: 3px;
}
.ssh-mobile-menu a[data-sshe-headlink] { margin-top: .5em; }
@media (prefers-reduced-motion: reduce) {
	a[data-sshe-headlink] { animation: none !important; box-shadow: 0 0 14px 2px rgba(218, 99, 38, .30); }
}

/* ---------- Video del CEO en la portada ---------- */
.sshe-ceo {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background-color: #060606;
	line-height: 0;
}
.sshe-ceo__v {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 18%;
	background-color: #060606;
}
.sshe-ceo__play {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	cursor: pointer;
	background: linear-gradient(180deg, rgba(6, 6, 6, .10) 0%, rgba(6, 6, 6, .55) 100%) !important;
	transition: background .3s;
}
.sshe-ceo__play:hover { background: linear-gradient(180deg, rgba(6, 6, 6, .05) 0%, rgba(6, 6, 6, .45) 100%) !important; }
.sshe-ceo__play:focus-visible { outline: 2px solid var(--sshe-o-lit) !important; outline-offset: -4px; }
.sshe-ceo__disc {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	padding-left: 6px;
	border-radius: 50%;
	color: #fff;
	background-color: var(--sshe-o);
	box-shadow: 0 0 0 0 rgba(218, 99, 38, .5);
	animation: sshe-latido 2.6s ease-in-out infinite;
	transition: transform .3s;
}
.sshe-ceo__play:hover .sshe-ceo__disc { transform: scale(1.06); }
.sshe-ceo.is-playing .sshe-ceo__play { display: none !important; }
@media (max-width: 767px) {
	.sshe-ceo__disc { width: 68px; height: 68px; }
}
@media (prefers-reduced-motion: reduce) {
	.sshe-ceo__disc { animation: none !important; box-shadow: 0 0 16px 3px rgba(218, 99, 38, .3); }
}

/* ---------- Video en el hero de las páginas del ecosistema ---------- */
.sshe-hero__media--video { background-color: #060606; }
.sshe-hero__media--video::after { display: none; }
.sshe-vid {
	position: relative;
	width: 100%;
	aspect-ratio: var(--sshe-hero-ratio, 16 / 9);
	overflow: hidden;
	background-color: #060606;
	line-height: 0;
}
.sshe-vid__v {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-color: #060606;
}
.sshe-vid__play {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	cursor: pointer;
	background: linear-gradient(180deg, rgba(6, 6, 6, .10) 0%, rgba(6, 6, 6, .50) 100%) !important;
	transition: background .3s;
}
.sshe-vid__play:hover { background: linear-gradient(180deg, rgba(6, 6, 6, .05) 0%, rgba(6, 6, 6, .40) 100%) !important; }
.sshe-vid__play:focus-visible { outline: 2px solid var(--sshe-o-lit) !important; outline-offset: -4px; }
.sshe-vid__disc {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 84px;
	height: 84px;
	padding-left: 6px;
	border-radius: 50%;
	color: #fff;
	background-color: var(--sshe-o);
	box-shadow: 0 0 0 0 rgba(218, 99, 38, .5);
	animation: sshe-latido 2.6s ease-in-out infinite;
	transition: transform .3s;
}
.sshe-vid__play:hover .sshe-vid__disc { transform: scale(1.06); }
.sshe-vid.is-playing .sshe-vid__play { display: none !important; }
@media (max-width: 767px) {
	.sshe-vid__disc { width: 64px; height: 64px; }
}
@media (prefers-reduced-motion: reduce) {
	.sshe-vid__disc { animation: none !important; box-shadow: 0 0 14px 2px rgba(218, 99, 38, .30); }
}

/* ==============================================================
 * PLACES — bloques de contenido con imagen opcional
 * Usados por las secciones de tipo "places" (destinos, bloques).
 * ============================================================== */
.sshe-places {
	list-style: none;
	margin: 1.6rem 0 0;
	padding: 0;
	display: grid;
	gap: 1.2rem;
	grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
}

.sshe-place {
	display: flex;
	flex-direction: column;
	background: var(--sshe-carbon);
	border: 1px solid var(--sshe-line);
	border-radius: var(--sshe-radius);
	overflow: hidden;
	transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.sshe-place:hover {
	border-color: var(--sshe-o);
	transform: translateY(-2px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .55);
}

.sshe-place__media {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--sshe-k2);
}

.sshe-place__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s ease;
}

.sshe-place:hover .sshe-place__media img { transform: scale(1.05); }

.sshe-place__body {
	display: block;
	padding: 1.05rem 1.15rem 1.25rem;
}

.sshe-place__title {
	display: block;
	color: var(--sshe-w);
	font-weight: 600;
	font-size: 1.02rem;
	line-height: 1.3;
	letter-spacing: -.005em;
}

.sshe-place__text {
	display: block;
	margin-top: .45rem;
	color: var(--sshe-g);
	font-size: .92rem;
	line-height: 1.6;
}

/* Botones al final de una seccion */
.sshe-sec__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .8rem;
	margin-top: 1.6rem;
}

/* Titulo dentro de un paso numerado */
.sshe-step__title {
	color: var(--sshe-w);
	font-weight: 600;
}

@media (max-width: 599px) {
	.sshe-places { grid-template-columns: minmax(0, 1fr); }
	.sshe-sec__actions .sshe-btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
	.sshe-place,
	.sshe-place:hover { transform: none; transition: none; }
	.sshe-place:hover .sshe-place__media img { transform: none; }
}
