/* ================================
   AMENIDADES — banda media altura
================================ */
.amenidades-section {
	background: #0f0f10;
	padding: 40px 40px 24px;
	box-sizing: border-box;
	scroll-margin-top: var(--ofizen-header-height, 64px);
}

.amenidades-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 0;
}

/* Cada ítem */
.amenidad-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 0 12px;
	text-align: center;
	flex: 1 1 0;
	min-width: 0;

	/* animación entrada */
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.amenidad-item.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Icono */
.amenidad-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: rgba(255, 255, 255, 0.75);
}

.amenidad-icon svg {
	width: 32px;
	height: 32px;
}

.amenidad-item:hover .amenidad-icon {
	color: #00b4ff;
}

/* Etiqueta */
.amenidad-label {
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.4;
	font-family: Inter, "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;
}

.amenidad-item:hover .amenidad-label {
	color: rgba(255, 255, 255, 0.9);
}

/* Divisor */
.amenidad-divider {
	color: rgba(255, 255, 255, 0.15);
	font-size: 28px;
	font-weight: 100;
	line-height: 1;
	align-self: center;
	user-select: none;
	flex: 0 0 auto;
}

/* ================================
   Responsive
================================ */
@media (max-width: 900px) {
	.amenidades-section {
		padding: 40px 20px;
	}

	.amenidades-inner {
		flex-wrap: wrap;
		justify-content: center;
		gap: 28px 0;
	}

	.amenidad-divider {
		display: none;
	}

	.amenidad-item {
		flex: 0 0 33.333%;
		padding: 0 10px;
	}
}

@media (max-width: 520px) {
	.amenidad-item {
		flex: 0 0 50%;
	}
}
