/**
 * Jet Travel Secciones.
 */

/* ----------------------------------------------------- Memorias (collage) */
.jt-memorias { padding: 60px 22px 10px; }

.jt-memorias__cabeza {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.jt-memorias__titulo {
	font-family: var(--jt-fuente-titulo, "Archivo"), sans-serif;
	font-size: clamp(24px, 2.8vw, 34px);
	font-weight: 800;
	letter-spacing: -.026em;
	line-height: 1.1;
	margin: 0;
	max-width: 26ch;
}

/* Una sola fila, altura fija: "no muy alto" es la premisa del collage. En
   pantallas angostas se desliza horizontalmente en vez de apilarse. */
.jt-memorias__collage {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(150px, 220px);
	gap: 12px;
	height: 170px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 2px 2px 14px;
	scroll-snap-type: x proximity;
}
.jt-memorias__collage::-webkit-scrollbar { height: 6px; }
.jt-memorias__collage::-webkit-scrollbar-thumb { background: var(--jt-line, #dbe6e8); border-radius: 999px; }
.jt-memorias__collage::-webkit-scrollbar-track { background: transparent; }

.jt-memorias__item {
	margin: 0;
	scroll-snap-align: start;
	border-radius: 14px;
	overflow: hidden;
	background: var(--jt-soft, #e4f2f4);
}
.jt-memorias__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s var(--jt-ease, ease);
}
.jt-memorias__item:hover img { transform: scale(1.04); }

@media (max-width: 700px) {
	.jt-memorias { padding: 44px 22px 6px; }
	.jt-memorias__collage { height: 140px; grid-auto-columns: minmax(120px, 170px); }
}

/* --------------------------------------------------------------- Visas */
.jt-sec-visas { position: relative; }
.jt-sec-visas__aura {
	position: absolute;
	top: -10%;
	right: -6%;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, rgba(18, 135, 155, .14), transparent 65%);
	pointer-events: none;
}
.jt-sec-visas__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 56px;
	align-items: center;
}
.jt-sec-visas__texto {
	font-size: 17px;
	line-height: 1.65;
	color: var(--jt-muted, #5d6a6e);
	max-width: 54ch;
}
.jt-sec-visas__acciones {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}
.jt-sec-visas__pasos { display: grid; gap: 12px; }

/* --------------------------------------------------------------- Autos */
.jt-sec-autos__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 56px;
	align-items: center;
}
.jt-sec-autos__texto {
	font-size: 17px;
	line-height: 1.65;
	color: var(--jt-muted, #5d6a6e);
	max-width: 54ch;
}
.jt-sec-autos__acciones {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}
.jt-sec-autos__media { position: relative; will-change: transform; }
.jt-sec-autos__media img {
	border-radius: 22px;
	box-shadow: 0 50px 80px -50px rgba(44, 53, 56, .7);
	width: 100%;
	height: 420px;
	object-fit: cover;
}
.jt-sec-autos__placeholder {
	display: block;
	height: 420px;
	border-radius: 22px;
	background: var(--jt-soft, #e4f2f4);
}

/* Recorte del vehiculo sin fondo: se muestra entero, sin marco ni sombra. */
.jt-sec-autos__media--recorte img {
	border-radius: 0;
	box-shadow: none;
	object-fit: contain;
	height: auto;
	max-height: 420px;
	filter: drop-shadow(0 34px 34px rgba(44, 53, 56, .28));
}
.jt-aliados__nota { margin: 14px 0 0; }

/* ------------------------------------------------------------ Contacto */
.jt-contacto__titulo {
	font-size: clamp(34px, 4.4vw, 60px);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1;
	margin-bottom: 22px;
}
.jt-contacto__texto {
	font-size: 17.5px;
	line-height: 1.6;
	color: var(--jt-muted, #5d6a6e);
	max-width: 46ch;
	margin: 0 0 34px;
}
.jt-contacto__telefonos { display: flex; flex-direction: column; gap: 10px; }
.jt-contacto__redes { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.jt-contacto__form-titulo { font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px; }
.jt-contacto__form-texto { font-size: 14.5px; color: var(--jt-muted, #5d6a6e); margin: 0 0 22px; }

.jt-contacto__campos { display: grid; gap: 12px; }
.jt-contacto__campos input,
.jt-contacto__campos select,
.jt-contacto__campos textarea {
	font-family: var(--jt-fuente-texto, inherit);
	font-size: 15px;
	padding: 15px 16px;
	border: 1px solid var(--jt-line-3, #d5e1e3);
	border-radius: var(--jt-r-field, 12px);
	background: var(--jt-field, #f8fbfb);
	color: var(--jt-ink, #2c3538);
	width: 100%;
}
.jt-contacto__campos textarea { resize: vertical; }
.jt-contacto__enviar {
	border: 0;
	cursor: pointer;
	border-radius: var(--jt-r-field, 12px);
	padding: 17px;
	font-size: 16px;
	width: 100%;
}
.jt-contacto__wa {
	text-align: center;
	font-size: 13.5px;
	color: var(--jt-muted, #5d6a6e);
	text-decoration: underline;
}

.jt-trampa { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.jt-aviso {
	padding: 12px 16px;
	border-radius: var(--jt-r-field, 12px);
	font-size: 14.5px;
	margin: 0 0 16px;
}
.jt-aviso--ok { background: var(--jt-soft, #e4f2f4); color: var(--jt-primary-dark, #0b6577); }
.jt-aviso--error { background: #fdecee; color: #7d1019; }

@media (max-width: 860px) {
	.jt-sec-visas__grid,
	.jt-sec-autos__grid { gap: 34px; }
	.jt-sec-autos__media img,
	.jt-sec-autos__placeholder { height: 260px; }
}
