/* ==========================================================================
   Component: Home Equipo Section
   ========================================================================== */

.equipo-section {
	position: relative;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding: 80px 0;
}

.equipo-media-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.equipo-media-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.equipo-section:hover .equipo-media-container img {
	transform: scale(1.05);
}

.equipo-content-overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 16px;
}

.equipo-info-box {
	background-color: var(--negro, #000000);
	padding: 3.5rem 3.5rem;
	max-width: 480px;
	display: inline-block;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.equipo-title-wrapper {
	margin-bottom: 2.5rem;
	position: relative;
}

.equipo-subtitle {
	font-family: 'Dolphins', sans-serif;
	color: var(--blanco, #FFFFFF);
	font-size: clamp(3.5rem, 5.5vw, 6rem);
	margin: 0;
	line-height: 0.8;
	margin-left: 10px;
	position: relative;
	z-index: 2;
}

.equipo-title-svg {
	width: 100%;
	max-width: 200px;
	display: block;
	margin-top: -10px;
	position: relative;
	z-index: 1;
}

.equipo-staff-list {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.equipo-staff-list p {
	font-family: 'HeadingNow', sans-serif;
	color: #FFFFFF;
	font-size: 1.125rem;
	margin: 0;
	line-height: 1.4;
	font-weight: 500;
}

@media (max-width: 1024px) {
	.equipo-content-overlay {
		padding: 0 20px;
	}

	.equipo-info-box {
		margin-left: 20px;
		padding: 2.5rem;
	}
}

@media (max-width: 767px) {
	.equipo-section {
		padding: 0;
		min-height: auto;
		flex-direction: column;
		align-items: stretch;
	}

	.equipo-media-container {
		position: relative;
		height: 60vh;
		min-height: 400px;
		order: 2;
	}

	.equipo-content-overlay {
		padding: 0;
		order: 1;
		width: 100%;
	}

	.equipo-info-box {
		padding: 3rem 2rem;
		max-width: 100%;
		width: 100%;
		margin: 0;
		display: block;
		transform: none;
		box-shadow: none;
	}

	.equipo-title-svg {
		max-width: 130px;
		margin-bottom: 1.5rem;
	}

	.equipo-subtitle {
		margin-left: 0;
	}

	.equipo-staff-list p {
		font-size: 1rem;
	}
}