/**
 * Jet Travel - hoja de estilos principal.
 * Traduce a clases la maquetacion inline de la plantilla original.
 */

/* ---------------------------------------------------------------- Tokens */
:root {
	--jt-base: #f2f3f3;
	--jt-surface: #fff;
	--jt-soft: #e4f2f4;
	--jt-field: #f8fbfb;
	--jt-ink: #2c3538;
	--jt-muted: #5d6a6e;
	--jt-subtle: #7c8b8f;
	--jt-primary: #12879b;
	--jt-primary-dark: #0b6577;
	--jt-line: #dbe6e8;
	--jt-line-2: #d7e3e5;
	--jt-line-3: #d5e1e3;
	--jt-wine: #7d1019;

	--jt-fuente-titulo: "Archivo", Helvetica, Arial, sans-serif;
	--jt-fuente-texto: "Manrope", Helvetica, Arial, sans-serif;
	--jt-fuente-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	--jt-r-card: 20px;
	--jt-r-field: 12px;
	--jt-r-pill: 999px;

	--jt-ease: cubic-bezier(.2, .8, .2, 1);
	--jt-ancho: 1240px;
	--jt-gutter: 22px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--jt-base);
	color: var(--jt-ink);
	font-family: var(--jt-fuente-texto);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a { color: var(--jt-primary); text-decoration: none; }
a:hover { color: var(--jt-wine); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--jt-fuente-titulo);
	margin: 0 0 .5em;
	text-wrap: pretty;
	letter-spacing: -.028em;
	line-height: 1.05;
}

h1 { font-size: clamp(38px, 5.4vw, 74px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
h2 { font-size: clamp(30px, 3.8vw, 50px); font-weight: 800; }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
h4 { font-size: 19px; font-weight: 700; }

p { text-wrap: pretty; margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	white-space: nowrap;
}

.jt-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--jt-primary);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 12px 0;
}
.jt-skip:focus, .jt-skip:hover { left: 0; color: #fff; }

/* ------------------------------------------------------------ Utilidades */
.jt-container {
	max-width: var(--jt-ancho);
	margin-inline: auto;
	padding-inline: var(--jt-gutter);
	width: 100%;
}

.jt-eyebrow {
	font-family: var(--jt-fuente-mono);
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--jt-primary);
	margin: 0 0 14px;
}

.jt-pildora {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--jt-fuente-mono);
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: #fff;
	background: var(--jt-primary);
	padding: 8px 14px;
	border-radius: var(--jt-r-pill);
	margin: 0 0 26px;
}

.jt-nota {
	font-family: var(--jt-fuente-mono);
	font-size: 11.5px;
	color: var(--jt-subtle);
	margin: 0;
}

.jt-enlace-flecha {
	font-family: var(--jt-fuente-titulo);
	font-weight: 700;
	font-size: 15px;
	color: var(--jt-primary);
	display: inline-block;
	margin-top: 18px;
}
.jt-enlace-flecha:hover { color: var(--jt-primary-dark); }

.jt-badge {
	display: inline-block;
	font-family: var(--jt-fuente-mono);
	font-size: 10.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	background: var(--jt-primary);
	color: #fff;
	padding: 6px 11px;
	border-radius: var(--jt-r-pill);
}
.jt-badge--oficina { background: var(--jt-soft); color: var(--jt-primary-dark); letter-spacing: .04em; }

/* --------------------------------------------------------------- Botones */
.jt-btn {
	display: inline-block;
	font-family: var(--jt-fuente-titulo);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	padding: 17px 30px;
	border-radius: var(--jt-r-pill);
	border: 1px solid transparent;
	cursor: pointer;
	text-align: center;
	transition: background .25s, color .25s, transform .25s;
}

.jt-btn--primario {
	background: var(--jt-primary);
	color: #fff;
	box-shadow: 0 22px 40px -18px rgba(18, 135, 155, .95);
}
.jt-btn--primario:hover { background: var(--jt-primary-dark); color: #fff; }

.jt-btn--contorno {
	background: transparent;
	color: var(--jt-ink);
	border-color: var(--jt-ink);
	box-shadow: none;
}
.jt-btn--contorno:hover { background: var(--jt-ink); color: #fff; }

.jt-btn--pequeno { font-size: 14px; padding: 12px 20px; }

/* --------------------------------------------------------------- Campos */
.jt-input,
.jt-select,
.jt-textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="date"],
input[type="number"],
input[type="search"],
input[type="password"],
select,
textarea {
	font-family: var(--jt-fuente-texto);
	font-size: 15px;
	color: var(--jt-ink);
	padding: 14px 14px;
	border: 1px solid var(--jt-line-3);
	border-radius: var(--jt-r-field);
	background: var(--jt-field);
	width: 100%;
	min-width: 0;
}
textarea { resize: vertical; }

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--jt-primary);
	outline-offset: 2px;
}

.jt-searchform {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	max-width: 560px;
}
.jt-searchform .jt-input { flex: 1 1 220px; }
.jt-searchform .jt-btn { flex: 0 0 auto; }

/* ------------------------------------------------------------- Cabecera */
.jt-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(242, 243, 243, .88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--jt-line-2);
}

.jt-header__barra {
	padding-block: 12px;
	display: flex;
	align-items: center;
	gap: 26px;
}

.jt-header__marca { flex-shrink: 0; }
.jt-logo-link { display: flex; align-items: center; gap: 10px; }
.jt-logo { height: 96px; width: auto; }
.jt-logo--pie { height: 66px; }
.jt-logo-texto {
	font-family: var(--jt-fuente-titulo);
	font-weight: 800;
	font-size: 22px;
	color: var(--jt-ink);
	letter-spacing: -.02em;
}

.jt-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: auto;
}

.jt-nav__lista {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.jt-nav__lista a,
.jt-nav__link,
.jt-nav__toggle-mega {
	font-family: var(--jt-fuente-texto);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .01em;
	color: var(--jt-ink);
	background: transparent;
	border: 0;
	padding: 10px 14px;
	border-radius: var(--jt-r-pill);
	cursor: pointer;
	white-space: nowrap;
}
.jt-nav__lista a:hover,
.jt-nav__toggle-mega:hover,
.jt-nav__toggle-mega[aria-expanded="true"] { background: var(--jt-soft); color: var(--jt-ink); }

.jt-header__cta {
	font-size: 14px;
	padding: 12px 20px;
	margin-left: 8px;
	box-shadow: 0 8px 18px -8px rgba(18, 135, 155, .8);
}
.jt-header__cta:hover { background: var(--jt-ink); }

.jt-nav__burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--jt-line-2);
	border-radius: 12px;
	cursor: pointer;
}
.jt-nav__burger-linea {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--jt-ink);
	transition: transform .3s var(--jt-ease), opacity .2s;
}
.jt-nav__burger[aria-expanded="true"] .jt-nav__burger-linea:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.jt-nav__burger[aria-expanded="true"] .jt-nav__burger-linea:nth-child(3) { opacity: 0; }
.jt-nav__burger[aria-expanded="true"] .jt-nav__burger-linea:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------------------------------------- Mega menu */
.jt-mega {
	overflow: hidden;
	border-top: 1px solid var(--jt-line-2);
	background: var(--jt-surface);
	max-height: 0;
	opacity: 0;
	transition: max-height .4s var(--jt-ease), opacity .3s;
}
/* Cerrado sigue siendo [hidden]: los enlaces no quedan enfocables con Tab. */
.jt-mega.is-abierto { max-height: 520px; opacity: 1; }

.jt-mega__lista {
	list-style: none;
	margin: 0 auto;
	padding: 26px var(--jt-gutter) 30px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 4px 30px;
}

.jt-mega__link {
	display: flex;
	gap: 12px;
	padding: 12px 14px;
	border-radius: var(--jt-r-field);
	color: var(--jt-ink);
}
.jt-mega__link:hover { background: var(--jt-base); color: var(--jt-ink); }

.jt-mega__num {
	font-family: var(--jt-fuente-mono);
	font-size: 12px;
	color: var(--jt-primary);
	padding-top: 3px;
}
.jt-mega__titulo { font-family: var(--jt-fuente-titulo); font-weight: 700; font-size: 16px; display: block; }
.jt-mega__desc { font-size: 13.5px; color: var(--jt-muted); }

/* -------------------------------------------------------- Menu movil */
.jt-movil { display: none; }
.jt-movil.is-abierto { display: block; background: var(--jt-surface); border-top: 1px solid var(--jt-line-2); }
.jt-movil[hidden] { display: none; }
.jt-movil__lista {
	list-style: none;
	margin: 0;
	padding: 12px var(--jt-gutter) 22px;
	display: grid;
	gap: 2px;
}
.jt-movil__lista a {
	display: block;
	padding: 13px 12px;
	border-radius: var(--jt-r-field);
	color: var(--jt-ink);
	font-family: var(--jt-fuente-titulo);
	font-weight: 700;
	font-size: 16px;
}
.jt-movil__lista a:hover { background: var(--jt-base); }
.jt-movil__lista .sub-menu { list-style: none; margin: 0 0 0 14px; padding: 0; }
.jt-movil__lista .sub-menu a { font-weight: 500; font-size: 14.5px; font-family: var(--jt-fuente-texto); }

/* ------------------------------------------------------------------ Hero */
.jt-hero {
	position: relative;
	background: var(--jt-base);
	color: var(--jt-ink);
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 40px var(--jt-gutter) 48px;
	perspective: 1200px;
}

.jt-hero__fondo { position: absolute; inset: -14% 0; will-change: transform; }
.jt-hero__fondo img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }

.jt-hero__velo {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(242, 243, 243, .96) 0%, rgba(242, 243, 243, .84) 46%, rgba(242, 243, 243, .42) 100%);
	pointer-events: none;
}

.jt-hero__anillo {
	position: absolute;
	top: 12%;
	right: 6%;
	width: 46vw;
	max-width: 620px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1px solid rgba(44, 53, 56, .16);
	animation: jt-pulse 9s ease-in-out infinite;
	pointer-events: none;
}

.jt-hero__linea {
	position: absolute;
	bottom: 8%;
	left: 55%;
	width: 220px;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--jt-primary), transparent);
	pointer-events: none;
}

.jt-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 26px;
	align-items: start;
}

.jt-hero__cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 48px;
	align-items: center;
}

.jt-hero__titulo {
	font-size: clamp(44px, 6.4vw, 86px);
	line-height: .96;
	font-weight: 800;
	letter-spacing: -.03em;
	margin: 0 0 24px;
}

.jt-hero__bajada {
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.6;
	color: var(--jt-muted);
	max-width: 52ch;
	margin: 0 0 38px;
}

.jt-hero__fotos { position: relative; height: 450px; max-width: 580px; width: 100%; margin-inline: auto; }
.jt-hero__foto {
	position: absolute;
	width: 60%;
	height: 320px;
	background: var(--jt-surface);
	border: 1px solid var(--jt-line);
	border-radius: 20px;
	padding: 10px;
	box-shadow: 0 34px 60px -40px rgba(44, 53, 56, .65);
	will-change: transform;
}
.jt-hero__foto img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.jt-hero__foto--1 { top: 0; left: 0; animation: jt-float 9s ease-in-out infinite; }
.jt-hero__foto--2 { bottom: 0; right: 0; animation: jt-float 11s ease-in-out infinite reverse; }

/* -------------------------------------------------------- Barra confianza */
.jt-confianza {
	background: var(--jt-soft);
	color: var(--jt-muted);
	padding: 26px var(--jt-gutter);
	border-top: 1px solid var(--jt-line-2);
}
.jt-confianza__lista {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 46px;
	align-items: center;
	justify-content: space-between;
	font-family: var(--jt-fuente-mono);
	font-size: 12.5px;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.jt-confianza__lista .is-destacado { color: var(--jt-primary); }

/* ------------------------------------------------------------- Secciones */
.jt-seccion { position: relative; padding: 110px var(--jt-gutter) 90px; overflow: hidden; }
.jt-seccion--base { background: var(--jt-base); }
.jt-seccion--blanca { background: var(--jt-surface); }
.jt-seccion--suave { background: var(--jt-soft); }
.jt-seccion--compacta { padding-block: 90px 80px; }

.jt-seccion__cabeza {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 54px;
}
.jt-seccion__cabeza--columna { display: block; margin-bottom: 52px; }
.jt-seccion__cabeza h2 { max-width: 22ch; margin: 0; }

.jt-page-header { padding-block: 60px 26px; }
.jt-page-title { margin: 0 0 12px; }
.jt-page-media { margin-bottom: 34px; }
.jt-page-media img { border-radius: var(--jt-r-card); }
.jt-post-meta { font-family: var(--jt-fuente-mono); font-size: 12px; color: var(--jt-subtle); }

/* --------------------------------------------------- Cabeza de servicio */
/* Imagen y resumen (precio/duracion/salida) a mitad de ancho cada uno, en
   una sola fila; el resto de la ficha (que incluye, galeria) va debajo. */
.jt-servicio-cabeza {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: stretch;
	margin-bottom: 40px;
}

.jt-servicio-cabeza__media {
	border-radius: var(--jt-r-card);
	overflow: hidden;
	min-height: 320px;
	background: var(--jt-soft);
}
.jt-servicio-cabeza__media img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	display: block;
}
.jt-servicio-cabeza__vacio { display: block; width: 100%; height: 100%; min-height: 320px; background: var(--jt-soft); }

.jt-servicio-cabeza__resumen .jt-ficha { height: 100%; margin: 0; display: flex; flex-direction: column; justify-content: center; }

@media (max-width: 860px) {
	.jt-servicio-cabeza { grid-template-columns: 1fr; gap: 20px; }
	.jt-servicio-cabeza__media,
	.jt-servicio-cabeza__media img,
	.jt-servicio-cabeza__vacio { min-height: 240px; }
}

.jt-main { display: block; }

/* Contenido de bloques: centrado y anchos alineados */
.jt-entry-content {
	max-width: var(--jt-ancho);
	margin-inline: auto;
	padding-inline: var(--jt-gutter);
	padding-block: 10px 70px;
}
.jt-entry-content > .alignwide { max-width: 1440px; margin-inline: auto; }
.jt-entry-content > .alignfull {
	max-width: none;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.jt-front .jt-entry-content { padding-block: 0; max-width: none; padding-inline: 0; }
.jt-front .jt-entry-content > *:not(.alignfull):not(.alignwide) {
	max-width: var(--jt-ancho);
	margin-inline: auto;
	padding-inline: var(--jt-gutter);
}

/* --------------------------------------------------------------- Rejillas */
.jt-grid { display: grid; gap: 20px; }
.jt-grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.jt-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.jt-grid--4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.jt-layout { display: grid; gap: 40px; padding-bottom: 80px; }
.jt-layout--con-lateral { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 1000px) {
	.jt-layout--con-lateral { grid-template-columns: minmax(0, 1fr) 300px; }
}
.jt-layout__lateral .widget { margin-bottom: 34px; }
.jt-layout__lateral .widget-title { font-size: 18px; }

/* --------------------------------------------------------------- Tarjetas */
.jt-card {
	background: var(--jt-surface);
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-card);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color .25s, box-shadow .3s, transform .25s ease-out;
}
.jt-card:hover { border-color: var(--jt-primary); }

.jt-card__enlace { display: flex; flex-direction: column; height: 100%; color: inherit; }
.jt-card__enlace:hover { color: inherit; }

.jt-card__media { position: relative; height: 220px; background: var(--jt-soft); overflow: hidden; }
.jt-card__media img { width: 100%; height: 100%; object-fit: cover; }
.jt-card__media-vacio { display: block; width: 100%; height: 100%; background: var(--jt-soft); }
.jt-card__media .jt-badge { position: absolute; top: 14px; left: 14px; pointer-events: none; }

.jt-card__cuerpo {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.jt-card__titulo { font-size: 20px; font-weight: 700; letter-spacing: -.02em; margin: 0; }
.jt-card__texto { font-size: 14.5px; line-height: 1.6; color: var(--jt-muted); margin: 0; flex: 1; }
.jt-card__cta { font-family: var(--jt-fuente-titulo); font-weight: 700; font-size: 14px; color: var(--jt-primary); }
.jt-card__enlace:hover .jt-card__cta { color: var(--jt-primary-dark); }

.jt-card__precio {
	font-family: var(--jt-fuente-titulo);
	font-weight: 800;
	font-size: 20px;
	color: var(--jt-ink);
	letter-spacing: -.02em;
}
.jt-card__precio small { font-family: var(--jt-fuente-mono); font-size: 11px; font-weight: 400; color: var(--jt-subtle); display: block; letter-spacing: .08em; text-transform: uppercase; }

.jt-card__acciones { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

/* Tarjeta de servicio numerada (bloque "Nuestros servicios") */
.jt-servicio {
	height: 100%;
	background: var(--jt-surface);
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-card);
	padding: 30px 28px 34px;
	transform-style: preserve-3d;
	transition: transform .25s ease-out, box-shadow .3s;
}
.jt-servicio:hover { box-shadow: 0 40px 70px -40px rgba(44, 53, 56, .5); }
.jt-servicio__cabeza {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 90px;
}
.jt-servicio__num { font-family: var(--jt-fuente-mono); font-size: 12px; color: var(--jt-primary); }
.jt-servicio__rombo { width: 12px; height: 12px; background: var(--jt-primary); transform: rotate(45deg); }
.jt-servicio__titulo { font-size: 24px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 12px; }
.jt-servicio__texto { font-size: 15.5px; line-height: 1.6; color: var(--jt-muted); margin: 0; }
.jt-servicio__cta {
	font-family: var(--jt-fuente-titulo);
	font-weight: 700;
	font-size: 14px;
	color: var(--jt-primary);
	display: inline-block;
	margin-top: 16px;
}

/* Paso numerado (seccion Visas) */
.jt-paso {
	display: flex;
	gap: 16px;
	align-items: baseline;
	background: var(--jt-base);
	border: 1px solid var(--jt-line);
	border-radius: 16px;
	padding: 20px 22px;
}
.jt-seccion--blanca .jt-paso { background: var(--jt-base); }
.jt-paso__num { font-family: var(--jt-fuente-mono); font-size: 12px; color: var(--jt-primary); }
.jt-paso__titulo { font-family: var(--jt-fuente-titulo); font-weight: 700; font-size: 17px; }
.jt-paso__texto { font-size: 14.5px; color: var(--jt-muted); line-height: 1.55; }

/* Seccion Santander con marca de agua */
.jt-santander { padding-bottom: 120px; perspective: 1400px; }
.jt-santander__marca {
	position: absolute;
	top: 6%;
	left: -4%;
	font-family: var(--jt-fuente-titulo);
	font-weight: 800;
	font-size: clamp(90px, 16vw, 240px);
	letter-spacing: -.05em;
	color: #e1edef;
	pointer-events: none;
	line-height: 1;
	z-index: 0;
}
.jt-santander > .jt-container { position: relative; z-index: 1; }

/* Logos de aliados */
.jt-aliados {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 34px;
	max-width: 460px;
}
.jt-aliado {
	border: 1px solid var(--jt-line);
	border-radius: 14px;
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px;
	background: var(--jt-surface);
}
.jt-aliado img { max-height: 100%; width: auto; object-fit: contain; }

/* ------------------------------------------------------------- Contacto */
.jt-contacto { background: var(--jt-soft); padding: 110px var(--jt-gutter) 90px; position: relative; overflow: hidden; }
.jt-contacto__anillo {
	position: absolute;
	top: -20%;
	left: 40%;
	width: 700px;
	height: 700px;
	border-radius: 50%;
	border: 1px solid rgba(44, 53, 56, .1);
	pointer-events: none;
}
.jt-contacto__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 50px;
	align-items: start;
}
.jt-contacto__tel {
	font-family: var(--jt-fuente-titulo);
	font-weight: 800;
	font-size: clamp(26px, 3vw, 38px);
	letter-spacing: -.02em;
	color: var(--jt-ink);
	display: block;
}
.jt-contacto__tel:hover { color: var(--jt-primary); }
.jt-contacto__form {
	background: var(--jt-surface);
	border-radius: 22px;
	padding: 30px 30px 34px;
	border: 1px solid var(--jt-line);
	box-shadow: 0 40px 70px -45px rgba(44, 53, 56, .4);
	transform-style: preserve-3d;
	transition: transform .25s ease-out;
}
.jt-contacto__campos { display: grid; gap: 12px; }

/* ------------------------------------------------------------------- Pie */
.jt-footer { background: var(--jt-soft); padding: 60px var(--jt-gutter) 30px; border-top: 1px solid var(--jt-line-2); }
.jt-footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 40px;
	align-items: start;
}
.jt-footer__lista {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	font-size: 14px;
}
.jt-footer__lista a { color: var(--jt-ink); }
.jt-footer__lista a:hover { color: var(--jt-primary); }
.jt-footer__tel {
	font-family: var(--jt-fuente-titulo);
	font-weight: 800;
	font-size: 22px;
	color: var(--jt-ink);
	display: block;
}
.jt-footer__redes { display: flex; gap: 14px; margin-top: 14px; font-size: 14px; }
.jt-footer__legal {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid #cddadd;
	font-family: var(--jt-fuente-mono);
	font-size: 12px;
	color: #6c7a7e;
}
.jt-footer__legal p { margin: 0; }

/* ------------------------------------------------------- Boton flotante */
.jt-fab {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 80;
	font-family: var(--jt-fuente-titulo);
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	background: var(--jt-primary);
	padding: 15px 22px;
	border-radius: var(--jt-r-pill);
	box-shadow: 0 20px 40px -16px rgba(18, 135, 155, .95);
	transition: background .25s, transform .25s, opacity .3s, visibility .3s;
	/* Oculto hasta que jt-app.js confirme que hubo suficiente scroll: al
	   entrar a la pagina el visitante ya ve el buscador y los botones de
	   cada tarjeta, y este boton flotante encima les resta protagonismo. */
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	pointer-events: none;
}
.jt-fab.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.jt-fab:hover { background: var(--jt-primary-dark); color: #fff; transform: translateY(-2px); }

/* --------------------------------------------------------- Paginacion */
.jt-pagination { margin-top: 50px; }
.jt-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.jt-pagination .page-numbers {
	min-width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--jt-r-pill);
	border: 1px solid var(--jt-line);
	background: var(--jt-surface);
	color: var(--jt-ink);
	font-weight: 600;
	padding-inline: 12px;
}
.jt-pagination .page-numbers.current,
.jt-pagination .page-numbers:hover { background: var(--jt-primary); border-color: var(--jt-primary); color: #fff; }

/* ------------------------------------------------------- Estados vacios */
.jt-vacio, .jt-404 { padding-block: 40px 90px; max-width: 640px; }
.jt-vacio__titulo { font-size: 26px; }
.jt-404__acciones { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.jt-breadcrumbs { font-family: var(--jt-fuente-mono); font-size: 11.5px; color: var(--jt-subtle); margin-bottom: 16px; letter-spacing: .06em; text-transform: uppercase; }

.jt-comentarios { padding-block: 20px 80px; }
.jt-comentarios__lista { list-style: none; padding: 0; }
.jt-comentarios__lista .children { list-style: none; padding-left: 24px; }

/* --------------------------------------------------- Estilos de bloque */
.is-style-jt-tarjeta,
.is-style-jt-tarjeta-tilt {
	background: var(--jt-surface);
	border: 1px solid var(--jt-line);
	border-radius: var(--jt-r-card);
	padding: 30px 28px 34px;
}
.is-style-jt-tarjeta-tilt { transform-style: preserve-3d; transition: transform .25s ease-out, box-shadow .3s; }
.is-style-jt-tarjeta-tilt:hover { box-shadow: 0 40px 70px -40px rgba(44, 53, 56, .5); }

.is-style-jt-antetitulo {
	font-family: var(--jt-fuente-mono);
	font-size: 12px;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--jt-primary);
}

.wp-block-button.is-style-jt-contorno .wp-block-button__link {
	background: transparent;
	color: var(--jt-ink);
	border: 1px solid var(--jt-ink);
}
.wp-block-button.is-style-jt-contorno .wp-block-button__link:hover { background: var(--jt-ink); color: #fff; }

.is-style-jt-marco img {
	border-radius: 20px;
	box-shadow: 0 50px 80px -50px rgba(44, 53, 56, .7);
}

.is-style-jt-pasos { list-style: none; padding: 0; display: grid; gap: 12px; counter-reset: jtpaso; }
.is-style-jt-pasos li {
	counter-increment: jtpaso;
	background: var(--jt-base);
	border: 1px solid var(--jt-line);
	border-radius: 16px;
	padding: 20px 22px 20px 60px;
	position: relative;
	color: var(--jt-ink);
}
.is-style-jt-pasos li::before {
	content: "0" counter(jtpaso);
	position: absolute;
	left: 22px;
	top: 20px;
	font-family: var(--jt-fuente-mono);
	font-size: 12px;
	color: var(--jt-primary);
}

/* -------------------------------------------------------- Animaciones */
@keyframes jt-float {
	0%, 100% { transform: translate3d(0, -8px, 0); }
	50% { transform: translate3d(0, 10px, 0); }
}
@keyframes jt-pulse {
	0%, 100% { opacity: .35; }
	50% { opacity: .9; }
}

[data-reveal] {
	opacity: 0;
	transform: translate3d(0, 30px, 0);
	transition: opacity .8s, transform .8s var(--jt-ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------- Responsive */
@media (max-width: 1020px) {
	.jt-nav__lista,
	.jt-nav__toggle-mega { display: none; }
	.jt-nav__burger { display: flex; }
	.jt-mega { display: none !important; }
	.jt-logo { height: 66px; }
}

@media (max-width: 860px) {
	/* La clase hace lo mismo que el atributo, pero Gutenberg la conserva al
	   reguardar un bloque (className es nativo del editor; un atributo
	   data- suelto en HTML crudo puede perderse si el usuario reedita). */
	[data-hide-sm],
	.jt-hide-sm { display: none !important; }
	.jt-seccion { padding-block: 70px 60px; }
	.jt-seccion__cabeza { margin-bottom: 34px; }
	.jt-santander__marca { display: none; }
	.jt-header__cta { display: none; }
}

@media (max-width: 560px) {
	.jt-aliados { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jt-confianza__lista { justify-content: flex-start; gap: 10px 24px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	[data-reveal] { opacity: 1; transform: none; }
}
