/**
 * DTIC Images Widget Styles
 * Versão: 1.0.0
 */

.dtic-images-wrapper {
	position: relative;
	width: 100%;
}

.dtic-images-container {
	display: block;
	width: 100%;
	font-size: 0; /* Remove espaços entre elementos inline-block */
}

.dtic-image-item {
	display: inline-block;
	vertical-align: top;
	font-size: 14px; /* Restaura o tamanho da fonte */
	text-align: center;
	transition: all 0.3s ease;
	margin-bottom: 20px;
}

.dtic-image-item:hover {
	transform: translateY(-2px);
}

.dtic-image-wrapper {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	display: block;
	width: 100%;
}

.dtic-image-wrapper:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.dtic-image-item img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.dtic-image-item:hover img {
	transform: scale(1.05);
}

.dtic-image-title {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	line-height: 1.4;
}

.dtic-image-item a {
	text-decoration: none;
	color: inherit;
	display: block;
}

.dtic-image-item a:hover {
	text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
	.dtic-images-container {
		gap: 15px;
	}
	
	.dtic-image-title {
		font-size: 13px;
		margin-top: 8px;
	}
}

@media (max-width: 480px) {
	.dtic-images-container {
		gap: 10px;
	}
	
	.dtic-image-title {
		font-size: 12px;
		margin-top: 6px;
	}
}

/* Elementor compatibility */
.elementor-widget-dtic-images .dtic-images-container {
	width: 100%;
} 