.reportes-visuales-section{

	background: url('../img/pages/background-about.jpg');
	background-size: cover;
	background-repeat: repeat-y;
	background-attachment: fixed;
    padding-top: 200px;
    padding-bottom: 80px;


}

.main-title {
	text-align: center;
	color: var(--primary-color);
	font-size: 3rem;
	/* margin-bottom: 60px;*/
	text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
	font-weight: bold;
	opacity: 0;
}

.category-section {
	margin-bottom: 80px;
	opacity: 0;
	transform: translateY(50px);
}

.category-header {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
	gap: 20px;
}

.category-title {
	font-family: 'Lato', sans-serif;
	color: var(--white);
	font-size: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	font-weight: 400;
	flex: 1;
	text-align: center;
	text-transform: uppercase;
	background-color: var(--primary-color);
	border-radius: 10px;
	padding: 10px 0;
}

.category-count {
/*	background: rgba(255,255,255,0.2);
	color: white;
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: bold;
	backdrop-filter: blur(10px);*/
	display: none;
}

.images-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 30px;
	text-align: center;
}

.image-card {
	position: relative;
	height: 350px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0,0,0,0.4);
	cursor: pointer;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	transform: scale(0.8);
	opacity: 0;
}

.image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.image-card:hover img {
	transform: scale(1.15) rotate(2deg);
}

.image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4), transparent);
	padding: 30px 20px 20px;
	color: white;
	transform: translateY(0);
	transition: all 0.4s ease;
}

.image-card:hover .image-overlay {
	background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6), transparent);
	padding-bottom: 30px;
}

.image-title {
	font-size: 1.3rem;
	font-weight: bold;
	margin-bottom: 5px;
}

.image-description {
	font-size: 0.9rem;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.4s ease;
	color: rgba(255,255,255,0.8);
}

.image-card:hover .image-description {
	opacity: 1;
	transform: translateY(0);
}

/*        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: white;
            color: #667eea;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            opacity: 0;
            pointer-events: none;
        }

        .scroll-top.visible {
            opacity: 1;
            pointer-events: all;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.4);
        }
*/
.image-loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	border: 5px solid rgba(255,255,255,0.3);
	border-top-color: white;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

.category-divider {
	height: 3px;
	background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
	margin: 60px 0;
}

@media (max-width: 768px) {
	.main-title {
		font-size: 2rem;
	}

	.category-title {
		font-size: 1.8rem;
	}

	.images-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.image-card {
		height: 280px;
	}
}