.imagenchica-container {
	position: relative;
	display: inline-block;
	width: 100%;
}

.imagenchica {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: opacity 0.3s ease;
}

.imagenchica-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5); /* Escurece a imagem */
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.imagenchica-overlay i {
	color: white;
	font-size: 40px;
	transition: opacity 0.3s ease;
}

.imagenchica-container:hover .imagenchica-overlay {
	opacity: 1;
}

/* Centralizar o título h3 */
.mas-fotos h3 {
	text-align: center;
	margin-bottom: 20px;
}

/* Centralizar el botón */
.mas-fotos .ver-mas-btn {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.mas-fotos .ver-mas-btn a {
	display: inline-block;
}