.eventer-custom-header {
	padding: 40px 20px;
	background: #C8A55B url(fundo-titulo-01.jpg) no-repeat center center;
	text-align: center;
	margin: 0 0 40px;
	background-size: cover;
}

.eventer-custom-header h2 { 
	padding: 0; 
	margin: 0; 
	color: #fff; 
	font-weight: 600; 
	text-transform: uppercase; 
	font-size: 36px; 
	line-height: 120%;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.eventer-custom-grid {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 20px;
	padding: 0 15px;
	max-width: 1200px;
	margin: 0 auto;
}

.eventer-custom-grid-item {
	width: 100%;
	margin-bottom: 0;
	background: #F5F5F5;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eventer-custom-grid-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.eventer-custom-grid-item > a {
	display: flex;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.eventer-custom-grid-filler { 
	background: transparent; 
	box-shadow: none;
}

.eventer-custom-date {
	flex: 0 0 100px;
	background: #C8A55B;
	background: linear-gradient(135deg, #C8A55B 0%, #B8954B 100%);
	padding: 15px 8px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.eventer-custom-date > span { 
	display: block; 
	text-align: center; 
	color: #fff; 
	line-height: 100%; 
}

.eventer-custom-date .eventer-custom-day { 
	font-size: 48px; 
	font-weight: 700;
	margin-bottom: 5px;
}

.eventer-custom-date .eventer-custom-month { 
	font-size: 18px; 
	text-transform: uppercase; 
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 3px;
}

.eventer-custom-date .eventer-custom-year { 
	font-size: 16px; 
	opacity: 0.9;
}

.eventer-custom-info {
	flex: 1;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.eventer-custom-info > span { 
	display: block;  
}

.eventer-custom-info .eventer-custom-title { 
	min-height: auto;
	font-size: 18px; 
	font-weight: 600;
	color: #333;
	line-height: 1.4;
	margin-bottom: 15px;
}

.eventer-custom-info .eventer-custom-venue { 
	width: 100%;
	border-top: 2px solid #C8A55B; 
	text-transform: uppercase; 
	font-size: 13px;
	padding-top: 12px;
	color: #666;
	letter-spacing: 0.5px;
}


/* Grid item para página de anos */
.grid-item-ano { 
	padding: 30px 20px; 
	background: #F5F5F5;
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.grid-item-ano:hover {
	background: #fff;
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.grid-item-ano a { 
	display: block; 
	text-decoration: none;
	color: inherit;
}

.eventer-custom-month-name { 
	font-size: 32px; 
	text-transform: uppercase; 
	color: #C8A55B; 
	line-height: 100%; 
	font-weight: 700;
	margin-bottom: 15px;
}

.eventer-custom-year-name { 
	font-size: 20px; 
	border-top: 2px solid #C8A55B; 
	text-align: center;
	margin-top: 15px; 
	padding-top: 12px;
	color: #666;
	font-weight: 500;
}


/* Navegação */
.eventer-custom-grid-nav { 
	text-align: center; 
	padding: 40px 15px; 
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	max-width: 600px;
	margin: 0 auto;
}

.eventer-custom-grid-nav a { 
	text-decoration: none; 
}

.eventer-custom-grid-nav .btn-month { 
	background: #C8A55B;
	background: linear-gradient(135deg, #C8A55B 0%, #B8954B 100%);
	color: #fff; 
	border-radius: 8px; 
	text-align: center; 
	padding: 15px 20px; 
	text-transform: uppercase; 
	line-height: 130%;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(200,165,91,0.3);
}

.eventer-custom-grid-nav .btn-month:hover {
	background: #B8954B;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(200,165,91,0.4);
}

.btn-all-month { 
	display: block; 
	text-align: center; 
	padding: 12px 0; 
	margin-top: 5px; 
	grid-column: span 2;
	color: #C8A55B;
	font-weight: 600;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.btn-all-month:hover {
	color: #B8954B;
}

/* Mensagem de sem eventos */
.eventer-custom-no-events {
	text-align: center;
	padding: 60px 20px;
	font-size: 18px;
	color: #666;
	background: #F5F5F5;
	border-radius: 8px;
	margin: 20px;
}


/* Responsivo */
@media screen and (min-width: 540px) {
	.eventer-custom-header h2 {
		font-size: 42px;
	}

	.eventer-custom-grid-nav .btn-month {
		font-size: 18px;
		padding: 18px 25px;
	}
}

@media screen and (min-width: 768px) {
	.eventer-custom-grid-item {
		width: calc(50% - 10px);
	}

	.eventer-custom-date {
		flex: 0 0 110px;
	}

	.eventer-custom-info .eventer-custom-title {
		font-size: 20px;
		min-height: 80px;
	}
}

@media screen and (min-width: 1150px) {
	.eventer-custom-grid-item {
		width: calc(33.333% - 14px);
	}

	.eventer-custom-header h2 {
		font-size: 48px;
	}

	.eventer-custom-date {
		flex: 0 0 120px;
	}

	.eventer-custom-date .eventer-custom-day {
		font-size: 56px;
	}

	.eventer-custom-date .eventer-custom-month {
		font-size: 20px;
	}
}


.page-title-breadcrumbs {
    display: none;
}

.page-title-head.hgroup {
    display
: none;
}