﻿.gallery-title {
	font-size: 3.2rem;
	text-align: center;
	margin-bottom: 50px;
	font-weight: bold;
	color: #333;
}

.circle-image {
	width: 350px;
	height: 350px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	margin: 0 auto;
	transition: transform 0.4s ease;
}

	.circle-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.circle-image:hover {
		transform: scale(1.1);
	}

.location-title {
	font-size: 2rem;
	font-weight: bold;
	margin-top: 15px;
	color: #555;
}

.gallery-link {
	text-decoration: none;
	color: inherit;
}

.gallery-link:hover {
	text-decoration: none;
}

/* Diseño de tarjetas */
.card {
	border: none;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	height: 100%;
}

/* Ajustar imagen para mayor tamaño */
.card-img-top {
	width: 100%;
	height: 350px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

/* Efecto de hover en imágenes */
.img-hover:hover {
	transform: scale(1.1);
}

.card-body {
	padding: 25px;
}

.card-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 15px;
}

.card-text {
	font-size: 1.1rem;
	color: #555;
}

