/* Reset e configurações globais */
/* * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
	color: #333;
	line-height: 1.6;
	padding: 20px;
	min-height: 100vh;
} */

/* Cabeçalho */
#fotos header {
	text-align: center;
	padding: 30px 0 40px;
	max-width: 800px;
	margin: 0 auto;
}

#fotos header h1 {
	font-size: 2.8rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 12px;
	background: linear-gradient(90deg, #4a6cf7, #6a11cb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#fotos header p {
	font-size: 1.2rem;
	color: #6c757d;
	font-weight: 400;
}

/* Container da galeria */
.container {
	max-width: 1400px;
	margin: 0 auto;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 28px;
	padding: 0 10px;
}

/* Itens da galeria */
.gallery a {
	display: block;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.35s ease;
	text-decoration: none;
	position: relative;
}

.gallery a:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
	z-index: 2;
}

/* Imagens */
.gallery img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* Placeholder para vídeos */
.video-placeholder {
	position: relative;
}

.play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2.2rem;
	color: white;
	background: rgba(0, 0, 0, 0.6);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	opacity: 0.9;
	transition: all 0.3s ease;
}

.gallery a:hover .play-icon {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.1);
	background: rgba(0, 0, 0, 0.8);
}

/* Responsividade */
@media (max-width: 768px) {
	header h1 {
		font-size: 2.2rem;
	}
	header p {
		font-size: 1rem;
	}
	.gallery {
		grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
		gap: 20px;
	}
}

@media (max-width: 480px) {
	header h1 {
		font-size: 1.8rem;
	}
	.gallery {
		grid-template-columns: 1fr;
		padding: 0 5px;
	}
	body {
		padding: 10px;
	}
}