/* =========================================================
   YO, TURO — Equipo
   ========================================================= */

.turo-team {
	position: relative;
	width: calc(100% - 80px);
	max-width: 1480px;
	margin: clamp(35px, 4vw, 65px) auto;
	padding: clamp(70px, 7vw, 110px);
	overflow: hidden;
	border-radius: clamp(34px, 4vw, 64px);
	background:
		radial-gradient(
			circle at 8% 10%,
			rgba(255, 255, 255, 0.75),
			transparent 28%
		),
		linear-gradient(
			135deg,
			#f5f0e8 0%,
			#eee6da 52%,
			#e3d7c7 100%
		);
	color: #171717;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.turo-team::before {
	content: "🐾";
	position: absolute;
	top: -55px;
	right: -35px;
	font-size: clamp(150px, 17vw, 270px);
	line-height: 1;
	opacity: 0.045;
	transform: rotate(18deg);
	pointer-events: none;
	filter: grayscale(1);
}

/* Encabezado */

.turo-team__header {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin: 0 auto clamp(55px, 6vw, 85px);
	text-align: center;
}

.turo-team__eyebrow {
	display: inline-block;
	margin-bottom: 20px;
	font-family: "Poppins", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.24em;
	line-height: 1.5;
	text-transform: uppercase;
}

.turo-team__title {
	margin: 0 0 24px;
	color: #171717;
	font-family: "Poppins", sans-serif;
	font-size: clamp(42px, 4.8vw, 76px);
	font-weight: 700;
	letter-spacing: -0.055em;
	line-height: 0.98;
	text-wrap: balance;
}

.turo-team__intro {
	max-width: 690px;
	margin: 0 auto;
	color: rgba(23, 23, 23, 0.72);
	font-family: "Poppins", sans-serif;
	font-size: clamp(16px, 1.2vw, 19px);
	line-height: 1.7;
}

/* Grilla */

.turo-team__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(24px, 3vw, 42px);
}

/* Card */

.turo-team-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
	padding:
		clamp(34px, 3.5vw, 52px)
		clamp(24px, 2.8vw, 40px)
		clamp(36px, 3.5vw, 50px);
	overflow: hidden;
	border: 1px solid rgba(17, 17, 17, 0.08);
	border-radius: 38px;
	background: rgba(255, 255, 255, 0.68);
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition:
		transform 0.42s cubic-bezier(.19, 1, .22, 1),
		box-shadow 0.42s cubic-bezier(.19, 1, .22, 1),
		background-color 0.35s ease;
}

.turo-team-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 28px 65px rgba(0, 0, 0, 0.12);
}

/* Foto */

.turo-team-card__portrait {
	position: relative;
	margin-bottom: 30px;
}

.turo-team-card__image-wrap {
	position: relative;
	width: clamp(170px, 16vw, 235px);
	aspect-ratio: 1;
	overflow: hidden;
	border: 8px solid rgba(255, 255, 255, 0.88);
	border-radius: 50%;
	background: #ded7cc;
	box-shadow:
		0 16px 40px rgba(0, 0, 0, 0.13),
		0 0 0 1px rgba(0, 0, 0, 0.04);
}

.turo-team-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
	transition: transform 0.65s cubic-bezier(.19, 1, .22, 1);
}

.turo-team-card:hover .turo-team-card__image {
	transform: scale(1.07);
}

.turo-team-card__paw {
	position: absolute;
	right: -4px;
	bottom: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 5px solid #f3ece2;
	border-radius: 50%;
	background: #111111;
	color: #ffffff;
	font-size: 18px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	transition:
		transform 0.35s cubic-bezier(.19, 1, .22, 1);
}

.turo-team-card:hover .turo-team-card__paw {
	transform: rotate(-10deg) scale(1.09);
}

/* Textos */

.turo-team-card__content {
	width: 100%;
	text-align: center;
}

.turo-team-card__name {
	margin: 0 0 8px;
	color: #171717;
	font-family: "Poppins", sans-serif;
	font-size: clamp(29px, 2.5vw, 40px);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.turo-team-card__role {
	margin: 0 0 3px;
	color: #171717;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.11em;
	line-height: 1.4;
	text-transform: uppercase;
}

.turo-team-card__role-detail {
	margin: 0;
	color: rgba(23, 23, 23, 0.56);
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
}

.turo-team-card__divider {
	width: 38px;
	height: 2px;
	margin: 22px auto;
	border-radius: 5px;
	background: #171717;
	transition: width 0.4s cubic-bezier(.19, 1, .22, 1);
}

.turo-team-card:hover .turo-team-card__divider {
	width: 68px;
}

.turo-team-card__description {
	max-width: 330px;
	margin: 0 auto;
	color: rgba(23, 23, 23, 0.72);
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	line-height: 1.7;
}

/* Card especial de Arturo */

.turo-team-card--arturo {
	background: #171717;
	border-color: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.turo-team-card--arturo:hover {
	background: #080808;
}

.turo-team-card--arturo .turo-team-card__name,
.turo-team-card--arturo .turo-team-card__role {
	color: #ffffff;
}

.turo-team-card--arturo .turo-team-card__role-detail,
.turo-team-card--arturo .turo-team-card__description {
	color: rgba(255, 255, 255, 0.68);
}

.turo-team-card--arturo .turo-team-card__divider {
	background: #ffffff;
}

.turo-team-card--arturo .turo-team-card__paw {
	border-color: #171717;
	background: #ffffff;
	color: #111111;
}


/* =========================================================
   TABLET / IPAD — TRES CARDS EN UNA SOLA FILA
   ========================================================= */

@media (min-width: 768px) and (max-width: 1050px) {

	.turo-team {
		width: calc(100% - 36px);
		padding: 58px 28px;
	}

	.turo-team__header {
		margin-bottom: 46px;
	}

	.turo-team__title {
		font-size: clamp(42px, 5.4vw, 58px);
	}

	.turo-team__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
		align-items: stretch;
	}

	.turo-team-card,
	.turo-team-card--arturo {
		grid-column: auto;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 30px 16px 34px;
		border-radius: 28px;
	}

	.turo-team-card__portrait {
		margin-bottom: 22px;
	}

	.turo-team-card__image-wrap {
		width: clamp(120px, 14vw, 150px);
		border-width: 6px;
	}

	.turo-team-card__content {
		display: flex;
		flex-direction: column;
		flex: 1;
	}

	.turo-team-card__name {
		font-size: clamp(24px, 3vw, 31px);
	}

	.turo-team-card__role {
		min-height: 36px;
		font-size: 10px;
		letter-spacing: 0.08em;
	}

	.turo-team-card__divider {
		margin: 16px auto;
	}

	.turo-team-card__description {
		font-size: 12px;
		line-height: 1.6;
	}
}

/* Mobile */

@media (max-width: 767px) {
	.turo-team {
		width: calc(100% - 28px);
		margin: 60px auto;
		padding: 58px 18px 44px;
		border-radius: 34px;
	}

	.turo-team__header {
		margin-bottom: 42px;
		padding: 0 10px;
	}

	.turo-team__eyebrow {
		font-size: 9px;
		letter-spacing: 0.19em;
	}

	.turo-team__title {
		font-size: clamp(39px, 12vw, 54px);
		line-height: 1;
	}

	.turo-team__intro {
		font-size: 14px;
		line-height: 1.65;
	}

	.turo-team__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.turo-team-card,
	.turo-team-card--arturo {
		grid-column: auto;
		width: 100%;
		padding: 34px 22px 38px;
		border-radius: 30px;
	}

	.turo-team-card__image-wrap {
		width: 185px;
		border-width: 7px;
	}

	.turo-team-card__description {
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.turo-team-card,
	.turo-team-card__image,
	.turo-team-card__paw,
	.turo-team-card__divider {
		transition: none;
	}
}

/* =========================================================
   Ajuste visual de las fotos del equipo
   ========================================================= */

/* Ocultar la chapita con la pata */
.turo-team-card__paw {
	display: none !important;
}

/* Foto más limpia y protagonista */
.turo-team-card__portrait {
	margin-bottom: 34px;
}

.turo-team-card__image-wrap {
	width: clamp(180px, 17vw, 245px);
	aspect-ratio: 1;

	border: 8px solid #ffffff;
	border-radius: 50%;

	background: #ebe5dc;

	box-shadow:
		0 18px 44px rgba(0, 0, 0, 0.12),
		0 0 0 1px rgba(0, 0, 0, 0.035);
}

/* Mantener el recorte natural */
.turo-team-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Un poco más de aire antes del nombre */
.turo-team-card__name {
	margin-top: 4px;
}

/* Mobile */
@media (max-width: 767px) {
	.turo-team-card__portrait {
		margin-bottom: 28px;
	}

	.turo-team-card__image-wrap {
		width: 185px;
		border-width: 7px;
	}
}