:root {
	--dl-primary: #6b8e23;
	--dl-primary-dark: #556b2f;
	--dl-primary-light: #8bc341;
	--dl-dark: #1a1a1a;
	--dl-gray-100: #f8f9fa;
	--dl-gray-200: #e9ecef;
	--dl-gray-600: #6c757d;
	--dl-gray-800: #343a40;
	--dl-white: #ffffff;
	--dl-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--dl-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--dl-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
	--dl-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--dl-dark);
	overflow-x: hidden;
}

/* ========== HEADER MODERNO ========== */
/* Barra de Patrocinadores */
.sponsors-bar {
	background: #fff;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	padding: 10px 0;
	height: 73px;
	display: flex;
	align-items: center;
	z-index: 1001;
}

.sponsors-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 35px;
}

.sponsors-label {
	font-size: 0.7rem;
	font-weight: 800;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 2px;
	white-space: nowrap;
}

.sponsors-logos {
	display: flex;
	align-items: center;
	gap: 30px;
}

.sponsors-logos img {
	height: 60px;
	width: auto;
	transition: all 0.3s ease;
	object-fit: contain;
}

.sponsors-logos img:hover {
	transform: scale(1.05);
}

.header-top {
	padding: 0.85rem 0;
	background: #fff;
}

.header-top-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-brand-info {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.navbar-brand-modern img {
	height: 60px;
	transition: var(--dl-transition);
}

.navbar-brand-modern:hover img {
	transform: scale(1.05);
}

.header-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0px;
}

.header-info-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--dl-dark);
	font-size: 0.85rem;
	font-weight: 500;
}

.header-info-item i {
	font-size: 0.95rem;
	color: #6b8e23;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}



.btn-expositor {
	background: #00adef;
	color: white !important;
	padding: 0.6rem 1.5rem;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 173, 239, 0.25);
}

.btn-expositor:hover {
	background: #008cc2;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 173, 239, 0.4);
}

.btn-credencial-mobile {
	background: linear-gradient(135deg, #6b8e23 0%, #7ba832 50%, #8bc341 100%);
	color: white !important;
	padding: 0.4rem 0.6rem;
	border-radius: 6px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.7rem;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(107, 142, 35, 0.2);
	white-space: nowrap;
}

.btn-credencial-mobile:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

.btn-expositor-mobile {
	background: #00adef;
	color: white !important;
	padding: 0.45rem 0.8rem;
	border-radius: 6px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.7rem;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0, 173, 239, 0.2);
	white-space: nowrap;
}

.header-mobile-actions {
	background: #fff;
	padding: 10px 0;
	border-top: 1px solid #f0f0f0;
}

.mobile-actions-wrapper {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.header-modern {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	box-shadow: var(--dl-shadow-sm);
	transition: var(--dl-transition);
}

.navbar-modern {
	padding: 0;
	background: rgba(252, 254, 244, 0.98);
	border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.navbar-modern .nav-link-modern {
	padding: 1rem 1.25rem !important;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.nav-link-modern {
	font-weight: 500;
	color: var(--dl-dark) !important;
	padding: 0.5rem 1rem !important;
	transition: var(--dl-transition);
	position: relative;
}

.nav-link-modern::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: #6b8e23;
	transition: var(--dl-transition);
	transform: translateX(-50%);
}

.nav-link-modern:hover::after,
.nav-link-modern.active::after {
	width: 80%;
}

.nav-link-modern:hover {
	color: #6b8e23 !important;
}

.btn-primary-modern {
	background: linear-gradient(135deg, #6b8e23 0%, #7ba832 50%, #8bc341 100%);
	border: none;
	color: white;
	padding: 0.625rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	transition: var(--dl-transition);
	box-shadow: 0 4px 15px rgba(107, 142, 35, 0.25);
	position: relative;
	overflow: hidden;
}

.btn-primary-modern::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn-primary-modern:hover::before {
	left: 100%;
}

.btn-primary-modern:hover {
	background: linear-gradient(135deg, #556b2f 0%, #6b8e23 50%, #7ba832 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(107, 142, 35, 0.4);
}

.navbar-toggler-modern {
	border: 1px solid #eee;
	padding: 0.35rem 0.6rem;
	border-radius: 6px;
	background: #fafafa;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.navbar-toggler-modern:active {
	background: #f0f0f0;
	transform: scale(0.95);
}

.navbar-toggler-modern:focus {
	box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	/* Fallback para navegadores modernos que suportam dynamic viewport */
	min-height: 700px;
	overflow: hidden;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.slide.active {
	opacity: 1;
}

.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(26, 26, 26, 0.6) 50%, rgba(26, 26, 26, 0.45) 100%);
}

.slide-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	z-index: 2;
	width: 90%;
	max-width: 800px;
}

.slide-content-item {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: opacity 0.8s ease, visibility 0.8s ease;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.slide-content-item.active {
	opacity: 1;
	visibility: visible;
	position: relative;
	pointer-events: auto;
}

.slide-content h1 {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1rem;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 0.8s ease-out;
}

.slide-content .subtitle {
	font-size: 1.7rem;
	font-weight: 400;
	color: #ffffff;
	margin-bottom: 1.5rem;
	opacity: 1;
	text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
	display: inline-block;
	will-change: transform, opacity;
}

/* Estado quando a frase está saindo para a esquerda */
.slide-content .subtitle.exit-left {
	transform: translateX(-100px);
	opacity: 0;
}

/* Estado preparatório: a frase surge da direita (sem transição) */
.slide-content .subtitle.prepare-right {
	transform: translateX(100px);
	opacity: 0;
	transition: none !important;
}

.slide-content .highlight-text {
	font-size: 1.25rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	opacity: 0.9;
	line-height: 1.6;
}

.slide-content .date-location {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease-out 0.4s both;
	width: 100%;
	text-align: center;
}

.slide-content .date-location span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.slide-content .btn-hero {
	background: linear-gradient(135deg, #6b8e23 0%, #7ba832 50%, #8bc341 100%);
	border: none;
	color: white;
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: 50px;
	transition: var(--dl-transition);
	animation: fadeInUp 0.8s ease-out 0.6s both;
	box-shadow: 0 4px 20px rgba(107, 142, 35, 0.4);
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.slide-content .btn-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transition: left 0.6s;
}

.slide-content .btn-hero:hover::before {
	left: 100%;
}

.slide-content .btn-hero:hover {
	background: linear-gradient(135deg, #556b2f 0%, #6b8e23 50%, #7ba832 100%);
	transform: translateY(-3px);
	box-shadow: 0 8px 35px rgba(107, 142, 35, 0.6);
}

/* Botão Fixo - Sempre acima do contador */
.btn-hero-fixed {
	position: absolute;
	bottom: 25rem;
	/* Usando rem para melhor escalonamento */
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	/* Aumentado para garantir visibilidade */
	background: linear-gradient(135deg, #6b8e23 0%, #7ba832 50%, #8bc341 100%);
	border: none;
	color: white;
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: 50px;
	transition: var(--dl-transition);
	box-shadow: 0 4px 20px rgba(107, 142, 35, 0.4);
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
	margin-left: 0;
	margin-right: 0;
	overflow: hidden;
}

.btn-hero-fixed::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transition: left 0.6s;
}

.btn-hero-fixed:hover::before {
	left: 100%;
}

.btn-hero-fixed:hover {
	background: linear-gradient(135deg, #556b2f 0%, #6b8e23 50%, #7ba832 100%);
	transform: translateX(-50%) translateY(-3px);
	box-shadow: 0 8px 35px rgba(107, 142, 35, 0.6);
}

/* Botão Galeria dentro do slide-content */
.slide-content .btn-gallery {
	background: transparent;
	border: 2px solid white;
	color: white;
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: 50px;
	transition: var(--dl-transition);
	text-decoration: none;
	display: inline-block;
	margin-top: 1.5rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	animation: fadeInUp 0.8s ease-out 0.6s both;
}

.slide-content .btn-gallery:hover {
	background: white;
	color: var(--dl-dark);
	transform: translateY(-3px);
}

.slide-content .btn-hero-secondary {
	background: transparent;
	border: 2px solid white;
	color: white;
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: 50px;
	transition: var(--dl-transition);
	animation: fadeInUp 0.8s ease-out 0.6s both;
	text-decoration: none;
	display: inline-block;
	margin-left: 1rem;
}

.slide-content .btn-hero-secondary:hover {
	background: white;
	color: var(--dl-dark);
	transform: translateY(-3px);
}

/* Countdown Timer Fixo */
.countdown-container-fixed {
	position: absolute;
	bottom: 3rem;
	/* Ajustado para dar espaço ao botão e ao fundo */
	left: 0;
	right: 0;
	z-index: 9;
	text-align: center;
	animation: fadeInUp 0.8s ease-out 0.8s both;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.countdown-container-fixed .countdown-title {
	text-align: center;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	color: white;
}

.countdown-container-fixed .countdown-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	margin: 0 auto;
	gap: 1.5rem;
	flex-wrap: nowrap;
}

.countdown-container {
	margin-top: 3rem;
	animation: fadeInUp 0.8s ease-out 0.8s both;
}

.countdown-title {
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 1.25rem;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: white;
}

.countdown-grid {
	display: flex;
	justify-content: center;
	gap: 1.25rem;
	flex-wrap: nowrap;
}

.countdown-item {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 16px;
	padding: 1.25rem 1rem;
	min-width: 90px;
	text-align: center;
	transition: var(--dl-transition);
}

.countdown-item:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-5px);
}

.countdown-number {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 0.5rem;
	color: white;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	transition: transform 0.1s ease;
}

.countdown-number.animating {
	transform: scale(1.1);
}

.countdown-label {
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.9;
	color: white;
}

.slider-controls {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 1rem;
	z-index: 3;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid white;
	cursor: pointer;
	transition: var(--dl-transition);
}

.slider-dot.active {
	background: white;
	transform: scale(1.2);
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--dl-transition);
	z-index: 3;
}

.slider-arrow:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
	left: 2rem;
}

.slider-arrow.next {
	right: 2rem;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ========== SEÇÕES DE CONTEÚDO ========== */
.section-modern {
	padding: 5rem 0;
}

/* ========== PAGE HERO (Para páginas internas) ========== */
.page-hero {
	color: white;
	padding: 3.5rem 0;
	position: relative;
	overflow: hidden;
	background-color: #4a5d23;
	background-image: url('../../verde_fundo.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-hero h1 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero .lead {
	position: relative;
	z-index: 2;
	font-size: 1.25rem;
	opacity: 0.95;
}

.page-hero .container {
	position: relative;
	z-index: 2;
}

/* ========== PAGE CONTENT ========== */
.page-content {
	padding: 4rem 0;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
	color: var(--dl-dark);
}

.section-subtitle {
	font-size: 1.125rem;
	text-align: center;
	color: var(--dl-gray-600);
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Features Cards */
.feature-card {
	background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
	border-radius: 16px;
	padding: 2.5rem;
	height: 100%;
	box-shadow: var(--dl-shadow-sm);
	transition: var(--dl-transition);
	border: 1px solid var(--dl-gray-200);
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #6b8e23 0%, #7ba832 50%, #8bc341 100%);
	opacity: 0;
	transition: opacity 0.3s;
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--dl-shadow-lg);
	background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #6b8e23 0%, #7ba832 50%, #8bc341 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 2rem;
	color: white;
	box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
	transition: var(--dl-transition);
	position: relative;
	overflow: hidden;
}

.feature-icon::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 6px 25px rgba(107, 142, 35, 0.4);
}

.feature-card:hover .feature-icon::before {
	opacity: 1;
}

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--dl-dark);
}

.feature-card p {
	color: var(--dl-gray-600);
	line-height: 1.7;
}

/* Stats Section */
.stats-section {
	color: white;
	position: relative;
	overflow: hidden;
	background-color: #4a5d23;
	background-image: url('../../verde_fundo.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.stats-section .container {
	position: relative;
	z-index: 2;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.125rem;
	opacity: 0.9;
}

/* Gallery Section */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 4/3;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: block;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--dl-transition);
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(107, 142, 35, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: var(--dl-transition);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-year-text {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
	z-index: 2;
	letter-spacing: 1px;
}

.gallery-item:hover .gallery-year-text {
	opacity: 0.9;
}

/* Location Section */
.location-section {
	background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.location-features-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	padding: 1.5rem;
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
}

.location-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	transition: var(--dl-transition);
}

.location-feature-item:hover {
	transform: none;
	box-shadow: none;
}

.location-feature-item:hover h4 {
	color: #6b8e23;
}

.location-feature-item i {
	font-size: 2rem;
	color: #6b8e23;
	flex-shrink: 0;
}

.location-feature-item h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--dl-dark);
}

.location-feature-item p {
	color: var(--dl-gray-600);
	margin: 0;
	line-height: 1.6;
}

.location-info-card {
	background: white;
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-map {
	margin-bottom: 2rem;
	border-radius: 16px;
	overflow: hidden;
}

.location-details {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 2rem;
}

.location-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.location-detail-item i {
	font-size: 1.5rem;
	color: #6b8e23;
	flex-shrink: 0;
	margin-top: 0.25rem;
}

.location-detail-item strong {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--dl-dark);
}

.location-detail-item p {
	color: var(--dl-gray-600);
	margin: 0;
	line-height: 1.6;
}

.btn-location-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, #6b8e23 0%, #7ba832 50%, #8bc341 100%);
	color: white;
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--dl-transition);
	width: 100%;
	box-shadow: 0 4px 15px rgba(107, 142, 35, 0.25);
	position: relative;
	overflow: hidden;
}

.btn-location-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn-location-link:hover::before {
	left: 100%;
}

.btn-location-link:hover {
	background: linear-gradient(135deg, #556b2f 0%, #6b8e23 50%, #7ba832 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(107, 142, 35, 0.4);
	color: white;
}

.btn-location-link i {
	font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
	color: white;
	position: relative;
	overflow: hidden;
	background-color: #4a5d23;
	background-image: url('../../verde_fundo.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cta-content {
	position: relative;
	z-index: 2;
}

.cta-section .btn-hero {
	background: linear-gradient(135deg, #6b8e23 0%, #7ba832 50%, #8bc341 100%);
	border: none;
	color: white;
	padding: 1rem 2.5rem;
	font-size: 1.125rem;
	font-weight: 600;
	border-radius: 50px;
	transition: var(--dl-transition);
	box-shadow: 0 4px 20px rgba(107, 142, 35, 0.4);
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.cta-section .btn-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
	transition: left 0.6s;
}

.cta-section .btn-hero:hover::before {
	left: 100%;
}

.cta-section .btn-hero:hover {
	background: linear-gradient(135deg, #556b2f 0%, #6b8e23 50%, #7ba832 100%);
	transform: translateY(-3px);
	box-shadow: 0 8px 35px rgba(107, 142, 35, 0.6);
	color: white;
}

/* ========== FOOTER MODERNO ========== */
.footer-modern {
	background: var(--dl-dark);
	color: white;
	padding: 4rem 0 2rem;
}

.footer-modern h5 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.footer-modern a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--dl-transition);
	display: inline-block;
	margin-bottom: 0.75rem;
}

.footer-modern a:hover {
	color: white;
	padding-left: 5px;
}

.footer-modern .social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 0.75rem;
	font-size: 1.25rem;
	transition: var(--dl-transition);
}

.footer-modern .social-links a:hover {
	background: #6b8e23;
	transform: translateY(-3px);
	padding-left: 0;
}

.footer-modern .footer-logo {
	max-width: 180px;
	margin-bottom: 1.5rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 3rem;
	padding-top: 2rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
}

/* ========== RESPONSIVIDADE ========== */
@media (max-width: 991.98px) {
	.location-features-card {
		grid-template-columns: 1fr;
	}

	.slide-content h1 {
		font-size: 2.5rem;
	}

	.slide-content .subtitle {
		font-size: 1.45rem;
	}

	.slide-content .highlight-text {
		font-size: 1.125rem;
	}

	.slide-content .btn-hero-secondary {
		margin-left: 0;
		margin-top: 1rem;
		display: block;
	}

	.slider-arrow {
		display: none;
	}

	.section-modern {
		padding: 3rem 0;
	}

	.section-title {
		font-size: 2rem;
	}
}

/* Correção para notebooks Apple e resoluções intermediárias */
@media (min-width: 992px) and (max-width: 1600px) {
	.slide-content {
		top: 44%;
	}

	.slide-content .date-location {
		margin-bottom: 1.5rem;
		/* Reduz um pouco o espaço antes do botão */
	}

	.slide-content .btn-hero {
		margin-top: 0.5rem;
		/* Garante espaço mínimo acima do botão */
	}

	.btn-hero-fixed {
		bottom: 24rem;
	}
}

@media (max-width: 767.98px) {
	.slide-content {
		top: 40%;
	}

	.slide-content h1 {
		font-size: 2rem;
	}

	.slide-content .subtitle {
		font-size: 1.45rem;
	}

	.slide-content .date-location {
		flex-direction: column;
		gap: 1rem;
		font-size: 1rem;
		align-items: center;
		justify-content: center;
	}

	.hero-slider {
		min-height: 100vh;
	}

	.btn-hero-fixed {
		bottom: 400px;
		padding: 0.875rem 2rem;
		font-size: 1rem;
		left: 50%;
		transform: translateX(-50%);
	}

	.countdown-container-fixed {
		bottom: 100px;
	}

	.countdown-title {
		font-size: 0.9rem;
	}

	.countdown-item {
		min-width: 75px;
		padding: 1rem 0.75rem;
	}

	.countdown-number {
		font-size: 1.75rem;
	}

	.countdown-label {
		font-size: 0.7rem;
	}
}

@media (max-width: 991.98px) {
	.header-info {
		display: none;
	}
}

@media (max-width: 575.98px) {
	.header-info {
		display: none;
	}

	.navbar-brand-modern img {
		height: 40px;
	}

	.slide-content {
		top: 50%;
	}

	.slide-content h1 {
		font-size: 1.75rem;
	}

	.slide-content .subtitle {
		font-size: 1.25rem;
	}

	.slide-content .date-location {
		font-size: 0.9rem;
		align-items: center;
		justify-content: center;
	}

	.btn-hero-fixed {
		bottom: 380px;
		padding: 0.75rem 1.75rem;
		font-size: 0.95rem;
		left: 50%;
		transform: translateX(-50%);
	}

	.countdown-container-fixed {
		bottom: 80px;
	}

	.countdown-title {
		font-size: 0.8rem;
	}

	.countdown-container-fixed {
		padding: 0 10px;
	}

	.countdown-container-fixed .countdown-grid {
		gap: 0.4rem;
		flex-wrap: nowrap;
	}

	.countdown-grid {
		gap: 0.4rem;
		flex-wrap: nowrap;
	}

	.countdown-item {
		min-width: 60px;
		max-width: 60px;
		padding: 0.75rem 0.4rem;
		flex-shrink: 0;
	}

	.countdown-number {
		font-size: 1.3rem;
	}

	.countdown-label {
		font-size: 0.6rem;
	}

	.gallery-year-text {
		font-size: 1.1rem;
		bottom: 15px;
	}
}

/* Telas muito pequenas (iPhone SE e similares) */
@media (max-width: 400px) {
	.slide-content {
		top: 50%;
		/* Mais espaço para evitar sobreposição com header */
	}

	/* Ajustes para telas curtas (como Macbook) para evitar sobreposição no hero */
	/* Apenas para desktop/tablet, não mobile */
	@media (min-width: 768px) and (max-height: 900px) {
		.slide-content {
			top: 35%;
		}

		.slide-content h1 {
			font-size: 2.2rem;
			margin-bottom: 0.2rem;
		}

		.slide-content .subtitle {
			font-size: 1rem;
			margin-bottom: 0.5rem;
		}

		.slide-content .date-location {
			margin-bottom: 0.5rem;
			gap: 0.75rem;
			font-size: 0.85rem;
		}

		.countdown-container-fixed {
			bottom: 0.5rem;
		}
	}

	@media (min-width: 768px) and (max-height: 780px) {
		.slide-content {
			top: 25%;
			/* Sobe MUITO mais */
		}

		.slide-content h1 {
			font-size: 1.8rem;
			margin-bottom: 0.15rem;
		}

		.slide-content .subtitle {
			font-size: 0.85rem;
			margin-bottom: 0.4rem;
		}

		.slide-content .date-location {
			font-size: 0.75rem;
			margin-bottom: 0.4rem;
			gap: 0.4rem;
		}

		.btn-hero {
			padding: 0.45rem 1.3rem;
			font-size: 0.85rem;
		}

		.countdown-container-fixed {
			bottom: 0.15rem;
		}

		.countdown-item {
			padding: 0.3rem 0.25rem;
			min-width: 55px;
		}

		.countdown-number {
			font-size: 1.2rem;
		}

		.countdown-title {
			font-size: 0.65rem;
			margin-bottom: 0.25rem;
		}
	}

	@media (min-width: 768px) and (max-height: 650px) {
		.slide-content {
			top: 22%;
			/* Posição extremamente alta */
		}

		.slide-content h1 {
			font-size: 1.4rem;
		}

		.slide-content .subtitle,
		.slide-content .date-location {
			display: none;
			/* Esconde para salvar o botão */
		}

		.btn-hero {
			padding: 0.35rem 1rem;
			font-size: 0.8rem;
			margin-top: 0.4rem;
		}

		.countdown-container-fixed {
			bottom: 0;
		}

		.countdown-item {
			padding: 0.25rem 0.2rem;
			min-width: 45px;
		}

		.countdown-number {
			font-size: 1rem;
		}

		.countdown-label {
			font-size: 0.45rem;
		}

		.countdown-title {
			display: none;
		}
	}

	.location-features-card {
		grid-template-columns: 1fr;
		padding: 1.25rem;
		gap: 1rem;
	}

	.location-feature-item {
		gap: 0.875rem;
	}

	.location-feature-item i {
		font-size: 1.5rem;
	}

	.location-feature-item h4 {
		font-size: 1rem;
	}

	.location-feature-item p {
		font-size: 0.9rem;
	}

	.location-info-card {
		padding: 1.5rem;
	}

	.location-map iframe {
		height: 300px;
	}

	.header-top {
		padding: 0.5rem 0;
	}

	.header-brand-info {
		gap: 0.75rem;
		flex: 1;
		justify-content: space-between;
		margin-right: 10px;
	}

	.navbar-brand-modern img {
		height: 45px;
	}

	.header-actions {
		gap: 0.75rem;
	}

	.language-selector {
		padding-right: 8px;
		gap: 5px;
	}

	.language-selector img {
		width: 18px;
	}

	.btn-expositor {
		padding: 0.4rem 0.75rem;
		font-size: 0.75rem;
	}

	.navbar-modern .navbar-collapse {
		background: #fff;
		margin: 10px -15px 0;
		padding: 15px;
		border-radius: 0 0 12px 12px;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	}

	.navbar-modern .nav-link-modern {
		padding: 0.85rem 1rem !important;
		border-bottom: 1px solid #f8f9fa;
		text-align: center;
	}

	.navbar-modern .nav-item:last-child .nav-link-modern {
		border-bottom: none;
	}


	.sponsors-bar {
		height: auto;
		padding: 10px 0;
	}

	.sponsors-wrapper {
		flex-direction: column;
		gap: 8px;
	}

	.sponsors-logos {
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
	}

	.sponsors-logos img {
		height: 35px;
		/* Ajuste para logos maiores no mobile também */
	}
}

/* ========== HEADER PADRONIZADO (HEADER1.PHP) ========== */
.header-modern {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	box-shadow: var(--dl-shadow-sm);
	font-family: 'Inter', sans-serif;
}

.header-top {
	padding: 0rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: #333333;
	color: #ffffff;
}

.header-top-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-brand-info {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.navbar-brand-modern img {
	height: 60px;
	transition: var(--dl-transition);
}

.header-info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.header-info-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: #e0e0e0;
	line-height: 1.2;
}

.header-info-item i {
	color: var(--dl-primary);
	font-size: 1rem;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

/* Seletor de Idiomas Refinado */
.language-dropdown {
	position: relative;
	display: inline-block;
}

.language-current {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 4px;
	background: transparent;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #fff;
}

.language-current:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
}

.language-current img {
	width: 22px;
	height: auto;
	border-radius: 2px;
}

.language-current i {
	font-size: 0.75rem;
	color: #ccc;
}

.language-options {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	min-width: 140px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	border-radius: 12px;
	padding: 8px 0;
	z-index: 1100;
	margin-top: 8px;
	border: 1px solid #eee;
	overflow: hidden;
}

.language-options.show {
	display: block;
	animation: dropdownFadeIn 0.2s ease;
}

.language-options a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	color: #333;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.2s ease;
}

.language-options a:hover {
	background: #f8f9fa;
	color: var(--dl-primary);
}

.language-options img {
	width: 20px;
	height: auto;
	border-radius: 2px;
}

@keyframes dropdownFadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.btn-login {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff !important;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: var(--dl-transition);
	opacity: 0.9;
}

.btn-login:hover {
	opacity: 1;
	color: var(--dl-primary) !important;
}

.btn-login i {
	font-size: 1.2rem;
}

/* Dropdown do Usuário */
.user-dropdown {
	position: relative;
	display: inline-block;
}

.user-current {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 4px;
	background: transparent;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
}

.user-current:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
}

.user-current i.bi-person-circle {
	font-size: 1.1rem;
	color: var(--dl-primary-light);
}

.user-options {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	min-width: 180px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	padding: 8px 0;
	z-index: 1100;
	margin-top: 10px;
	border: 1px solid #eee;
	overflow: hidden;
}

.user-options.show {
	display: block;
	animation: dropdownFadeIn 0.2s ease;
}

.user-options a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 18px;
	color: #444;
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.2s ease;
}

.user-options a:hover {
	background: #f8f9fa;
	color: var(--dl-primary);
}

.user-options i {
	font-size: 1rem;
	opacity: 0.7;
}

.btn-expositor {
	background: #00adef;
	color: white !important;
	padding: 0.6rem 1.5rem;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 173, 239, 0.25);
}

.btn-expositor:hover {
	background: #008cc2;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 173, 239, 0.4);
}

/* Menu de Navegação */
.navbar-modern {
	padding: 0;
	background: #fcfef4;
	border-top: 1px solid rgba(0, 0, 0, 0.03);
	font-family: 'Inter', sans-serif;
}

.nav-link-modern {
	padding: 1rem 1.25rem !important;
	color: #333 !important;
	font-weight: 500;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: var(--dl-transition);
	position: relative;
}

.nav-link-modern:hover,
.nav-link-modern.active {
	color: var(--dl-primary) !important;
}

.nav-link-modern::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--dl-primary);
	transition: var(--dl-transition);
	transform: none;
}

.nav-link-modern:hover::after,
.nav-link-modern.active::after {
	width: 100%;
}

.btn-primary-modern {
	background: var(--dl-primary);
	color: white !important;
	padding: 0.6rem 1.5rem;
	border-radius: 8px;
	font-weight: 700;
	text-decoration: none;
	transition: var(--dl-transition);
	display: inline-block;
}

.btn-primary-modern:hover {
	background: var(--dl-primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(107, 142, 35, 0.3);
}

/* Patrocinadores */
.sponsors-bar {
	background: #fff;
	padding: 10px 0;
	height: 73px;
	display: flex;
	align-items: center;
	z-index: 1001;
	overflow: hidden;
}

.sponsors-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	width: 100%;
}

.sponsors-label {
	font-size: 0.7rem;
	font-weight: 800;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 2px;
	white-space: nowrap;
}

.sponsors-logos {
	display: flex;
	align-items: center;
	overflow: hidden;
	flex: 1;
}

.sponsors-logos a {
	display: block;
	transition: var(--dl-transition);
}

.sponsors-logos a:hover {
	transform: scale(1.05);
}

.sponsors-logos img {
	height: 70px;
	display: block;
}

.sponsors-track {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	width: max-content;
	padding-right: 2.5rem;
}

.sponsors-logos:hover .sponsors-track {
	animation-play-state: paused;
}

@media (max-width: 991.98px) {

	.header-info,
	.sponsors-label {
		display: none;
	}

	.header-brand-info {
		gap: 1rem;
	}

	.navbar-brand-modern img {
		height: 45px;
	}

	.nav-link-modern {
		text-align: center;
		border-bottom: 1px solid #f5f5f5;
	}

	.nav-link-modern::after {
		display: none;
	}

	.sponsors-bar {
		height: 80px;
	}

	.sponsors-logos img {
		height: 60px;
	}
}

/* ========== AVISO DE ORIENTAÇÃO ========== */
/* Overlay que aparece quando o usuário vira o celular para landscape */
.orientation-warning {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 99999;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: white;
	text-align: center;
	padding: 2rem;
}

.orientation-warning i {
	font-size: 4rem;
	color: #8bc341;
	margin-bottom: 1.5rem;
	animation: rotatePhone 2s ease-in-out infinite;
}

.orientation-warning h2 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.orientation-warning p {
	font-size: 1rem;
	opacity: 0.8;
}

@keyframes rotatePhone {

	0%,
	100% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(90deg);
	}
}

/* Mostra o aviso apenas em celulares landscape (inclui iPhone Pro Max e similares) */
@media (max-width: 926px) and (orientation: landscape) {
	.orientation-warning {
		display: flex;
	}
}