/* ==========================================================================
   Nosotros Slider Section Styles
   ========================================================================== */

.nosotros-slider-section {
	background-color: var(--verde);
	padding: 130px 0 100px;
	overflow: hidden;
	position: relative;
}

.nosotros-slider-title {
	font-family: 'GooperCondensed', serif;
	font-size: clamp(30px, 5vw, 74px);
	font-weight: bold;
	color: #1A1A1A;
	text-align: center;
	line-height: 1.1;
	max-width: 1140px;
	margin: 0 auto 80px;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.nosotros-carousel {
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 60px 0;
	/* Space for absolute stickers */
}

.nosotros-carousel-track {
	--carousel-gap: 20px;
	display: flex;
	width: max-content;
	height: 480px;
	gap: var(--carousel-gap);
	animation: scrollCarousel 20s linear infinite;
	align-items: center;
}

.nosotros-carousel-item {
	width: 380px;
	height: 450px;
	flex-shrink: 0;
	position: relative;
	transition: transform 0.3s ease;
}

/* Patrón Arriba-Abajo */
.nosotros-carousel-item:nth-child(odd) {
	transform: translateY(-20px);
}

.nosotros-carousel-item:nth-child(even) {
	transform: translateY(20px);
}

.nosotros-carousel-item img.carousel-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Floating Stickers on items */
.nosotros-sticker {
	position: absolute;
	z-index: 10;
	pointer-events: none;
}

/* Sticker 1: Bottom Left */
.sticker-item-1 {
	bottom: -30px;
	left: calc(50% - 80px);
	width: 160px;
}

/* Sticker 2: Top Center/Left */
.sticker-item-2 {
	top: -60px;
	left: calc(50% - 90px);
	width: 180px;
	transform: rotate(-10deg);
}

/* Sticker 3: Bottom Center/Right */
.sticker-item-3 {
	bottom: -40px;
	right: calc(50% - 85px);
	width: 170px;
}

/* Sticker 4: Top Right */
.sticker-item-4 {
	top: -60px;
	right: calc(50% - 90px);
	width: 180px;
}

/* Responsive */
@media (max-width: 1024px) {
	.nosotros-slider-title {
		font-size: 3rem;
	}

	.nosotros-carousel-item {
		width: 320px;
		height: 380px;
	}

	.nosotros-carousel-track {
		height: 400px;
	}
}

@media (max-width: 767px) {
	.nosotros-slider-section {
		padding: 100px 0;
	}

	.nosotros-slider-title {
		font-size: 2.2rem;
		margin-bottom: 60px;
	}

	.nosotros-carousel-item {
		width: 280px;
		height: 340px;
	}

	.nosotros-carousel-track {
		height: 360px;
	}

	.nosotros-sticker {
		width: 130px !important;
		/* Scale down stickers */
	}

	.sticker-item-1 {
		left: -15px;
	}

	.sticker-item-4 {
		right: -15px;
	}
}