/* Estilos para listagem de notícias */
.listagem-noticias-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin: 40px 0;
}

.noticia-item {
	position: relative;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid transparent;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	min-height: 200px;
}

.noticia-item:hover {
	background-color: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 224, 183, 0.5);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


.noticia-link-wrapper {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
	align-items: stretch;
	cursor: pointer;
}

.noticia-imagem {
	width: 300px;
	min-width: 300px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
	display: flex;
	align-items: stretch;
	align-self: stretch;
}

.noticia-imagem img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	-webkit-transition: transform 0.3s ease;
	display: block;
	flex: 1;
}

.noticia-item:hover .noticia-imagem img {
	transform: scale(1.05);
}

.noticia-conteudo {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	position: relative;
	min-height: 100%;
	align-self: stretch;
}

.noticia-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: #FFE0B7;
	color: #000;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 10;
}

.noticia-titulo {
	margin: 0 0 10px 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
}

.noticia-subtitulo {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	margin: 0 0 15px 0;
	font-weight: 400;
}

.noticia-texto {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
}

.noticia-texto p {
	margin: 0 0 10px 0;
}

.noticia-texto p:last-child {
	margin-bottom: 0;
}

.noticia-data {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 12px;
	order: -1;
}

.noticia-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 15px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.noticia-localizacao {
	display: flex;
	align-items: center;
	gap: 6px;
}

.noticia-localizacao svg,
.noticia-data svg {
	flex-shrink: 0;
}

.noticia-anexo {
	margin-bottom: 15px;
}

.noticia-anexo-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #FFE0B7;
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	padding: 8px 12px;
	border: 1px solid rgba(255, 224, 183, 0.3);
	border-radius: 0;
}

.noticia-anexo-link:hover {
	background-color: rgba(255, 224, 183, 0.1);
	border-color: #FFE0B7;
	color: #FFE0B7;
}

.noticias-sem-resultados {
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
	padding: 40px 20px;
}

/* Responsivo para listagem de notícias */
@media (max-width: 768px) {
	.listagem-noticias-container {
		gap: 20px;
	}
	
	.noticia-item {
		flex-direction: column;
	}
	
	.noticia-imagem {
		width: 100%;
		min-width: 100%;
		height: 200px;
	}
	
	.noticia-imagem a {
		height: 100%;
	}
	
	.noticia-conteudo {
		padding: 15px;
		display: flex !important;
		flex-direction: column !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	.noticia-data {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	.noticia-titulo {
		font-size: 20px;
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	.noticia-texto {
		display: block !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	.noticia-meta {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
	}
	
	.noticia-link-wrapper {
		flex-direction: column !important;
	}
	
	.noticia-badge {
		position: static;
		margin-bottom: 15px;
		align-self: flex-start;
	}
}

/* Estilos para página single de notícia */
.single-noticia-container {
	max-width: 1300px;
	margin: 150px auto;
}

.single-noticia {
	background-color: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}


.single-noticia-imagem {
	width: 100%;
	height: 500px;
	overflow: hidden;
	position: relative;
}

.single-noticia-imagem img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.single-noticia-conteudo {
	padding: 40px;
	position: relative;
}

.single-noticia-badge {
	position: absolute;
	top: 40px;
	right: 40px;
	background-color: #FFE0B7;
	color: #000;
	padding: 6px 16px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 10;
}

.single-noticia-header {
	margin-bottom: 30px;
}

.single-noticia-data {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
}

.single-noticia-data svg {
	flex-shrink: 0;
}

.single-noticia-titulo {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px 0;
	color: #fff;
}

.single-noticia-subtitulo {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 20px 0;
	font-weight: 400;
	line-height: 1.5;
}

.single-noticia-meta {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.single-noticia-localizacao {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
}

.single-noticia-localizacao svg {
	flex-shrink: 0;
}

.single-noticia-texto {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
}

.single-noticia-texto p {
	margin-bottom: 20px;
}

.single-noticia-texto p:last-child {
	margin-bottom: 0;
}

.single-noticia-texto h1,
.single-noticia-texto h2,
.single-noticia-texto h3,
.single-noticia-texto h4,
.single-noticia-texto h5,
.single-noticia-texto h6 {
	color: #fff;
	margin-top: 30px;
	margin-bottom: 15px;
}

.single-noticia-texto ul,
.single-noticia-texto ol {
	margin-bottom: 20px;
	padding-left: 30px;
}

.single-noticia-texto li {
	margin-bottom: 10px;
}

.single-noticia-anexo {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.single-noticia-anexo-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #FFE0B7;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	padding: 12px 24px;
	border: 2px solid rgba(255, 224, 183, 0.3);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.single-noticia-anexo-link:hover {
	background-color: rgba(255, 224, 183, 0.1);
	border-color: #FFE0B7;
	color: #FFE0B7;
}

.single-noticia-anexo-link svg {
	flex-shrink: 0;
}

/* Responsivo para single notícia */
@media (max-width: 768px) {
	.single-noticia-container {
		padding: 20px 15px;
	}
	
	.single-noticia-imagem {
		height: 300px;
	}
	
	.single-noticia-conteudo {
		padding: 25px 20px;
	}
	
	.single-noticia-badge {
		position: static;
		margin-bottom: 20px;
		display: inline-block;
	}
	
	.single-noticia-titulo {
		font-size: 28px;
	}
	
	.single-noticia-subtitulo {
		font-size: 18px;
	}
	
	.single-noticia-texto {
		font-size: 16px;
	}
}

/* Estilos para carrossel de notícias */
.carrossel-noticias-outer-wrapper {
	position: relative;
	width: 100%;
	margin: 40px 0;
    padding: 50px 0;
}

.carrossel-noticias-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.carrossel-noticias-container {
	position: relative;
	display: flex;
	gap: 30px;
	align-items: stretch;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-webkit-transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	will-change: transform;
	touch-action: pan-y pinch-zoom;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	user-select: none;
}

.carrossel-noticia-slide {
	display: block;
	width: calc((100% - 60px) / 3);
	min-width: calc((100% - 60px) / 3);
	flex-shrink: 0;
	opacity: 1;
	height: 100%;
	align-self: stretch;
}

.carrossel-noticia-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.carrosel-noticias {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	align-self: stretch;
}

.carrossel-noticia-imagem {
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
}

.carrossel-noticia-imagem img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
	-webkit-transition: transform 0.3s ease;
}

.carrossel-noticia-link:hover .carrossel-noticia-imagem img {
	transform: scale(1.05);
}

.carrossel-noticia-conteudo {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	height: 100%;
	min-height: 100%;
	justify-content: space-between;
}

.carrossel-noticia-data {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 12px;
	flex-shrink: 0;
}

.carrossel-noticia-data svg {
	flex-shrink: 0;
}

.carrossel-noticia-titulo {
	margin: 0 0 10px 0;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
	min-height: 62px;
	max-height: 62px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex-shrink: 0;
}

.carrossel-noticia-subtitulo {
	color: rgba(255, 255, 255, 0.8);
	font-size: 16px;
	margin: 0 0 15px 0;
	font-weight: 400;
}

.carrossel-noticia-texto {
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
	min-height: 96px;
	max-height: 96px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex-shrink: 0;
}

.carrossel-noticia-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 0;
	margin-top: auto;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	flex-shrink: 0;
}

.carrossel-noticia-localizacao {
	display: flex;
	align-items: center;
	gap: 6px;
}

.carrossel-noticia-localizacao svg {
	flex-shrink: 0;
}

/* Botões de navegação do carrossel */
.carrossel-noticias-prev,
.carrossel-noticias-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	z-index: 100;
	padding: 0;
	pointer-events: auto;
}

.carrossel-noticias-prev {
	left: -70px;
}

.carrossel-noticias-next {
	right: -70px;
}

.carrossel-noticias-prev:hover,
.carrossel-noticias-next:hover {
	background-color: rgba(255, 224, 183, 0.3);
	border-color: #FFE0B7;
	color: #FFE0B7;
	transform: translateY(-50%) scale(1.1);
}

.carrossel-noticias-prev:active,
.carrossel-noticias-next:active {
	transform: translateY(-50%) scale(0.95);
}

.carrossel-noticias-prev svg,
.carrossel-noticias-next svg {
	width: 20px;
	height: 20px;
}

/* Dots de navegação */
.carrossel-noticias-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
	padding: 0;
	pointer-events: auto;
	z-index: 20;
	position: relative;
}

.carrossel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	background-color: transparent;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	pointer-events: auto;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.carrossel-dot:hover {
	border-color: #FFE0B7;
	background-color: rgba(255, 224, 183, 0.3);
}

.carrossel-dot.active {
	background-color: #FFE0B7;
	border-color: #FFE0B7;
}

/* Responsivo para carrossel de notícias */
@media (max-width: 1024px) {
	.carrossel-noticia-slide {
		width: calc((100% - 20px) / 2);
		min-width: calc((100% - 20px) / 2);
	}
	
	.carrossel-noticias-container {
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.carrossel-noticia-slide {
		width: 100%;
		min-width: 100%;
	}
	
	.carrossel-noticias-container {
		gap: 20px;
	}
	
	.carrossel-noticia-imagem {
		height: 200px;
	}
	
	.carrossel-noticia-conteudo {
		padding: 15px;
	}
	
	.carrossel-noticia-titulo {
		font-size: 20px;
	}
	
	.carrossel-noticias-prev,
	.carrossel-noticias-next {
		display: none !important;
	}
}

