/* Performance optimizations */
* {
	box-sizing: border-box;
}

/* Mobile-first optimizations for better PageSpeed */
@media (max-width: 768px) {
	/* Reduce animations on mobile for better performance */
	.reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
	
	/* Optimize carousels for mobile - KEEP TRANSITIONS FOR FUNCTIONALITY */
	.lineup-carousel__track,
	.melhores-momentos-carousel__track {
		/* Keep transitions for carousel functionality */
		transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
	}
	
	/* Reduce complex animations on mobile */
	.btn:hover,
	.speaker-card:hover,
	.highlight:hover {
		transform: none !important;
		transition: none !important;
	}
}

/* GPU acceleration for better performance */
.hero__bg,
.inicio__video,
.lineup-carousel__track,
.melhores-momentos-carousel__track,
.speaker-card,
.highlight,
.btn,
.reveal,
.popup,
.video-player,
.video-element {
	will-change: transform;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

/* Optimize animations to use GPU */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 30px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translate3d(-30px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translate3d(30px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* Optimize transitions */
.btn,
.speaker-card,
.highlight,
.lineup-carousel__btn,
.melhores-momentos-carousel__btn {
	transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

/* Reduce repaints and reflows */
.reveal {
	opacity: 0;
	transform: translate3d(0, 30px, 0);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
	body {
		-webkit-overflow-scrolling: touch;
		-webkit-text-size-adjust: 100%;
	}
	
	video {
		-webkit-playsinline: true;
	}
	
	button, input, select, textarea {
		-webkit-appearance: none;
		appearance: none;
		border-radius: 0;
	}
}

:root {
	--bg: #000000;
	--bg-elev: #050505;
	--text: #e6f1ff;
	--muted: #aab8c5;
	--primary: #00FF00;
	--primary-700: #00cc00;
	--primary-glow: 0 0 24px rgba(0, 255, 0, 0.35), 0 0 64px rgba(0,255,0,0.2);
	--border: #19222c;
	--card: #0a0a0a;
	--danger: #ff5577;
	
	/* Section-specific colors */
	--hero-bg: linear-gradient(135deg, #000000 0%, #001100 25%, #000000 50%, #001a00 75%, #000000 100%);
	--lineup-bg: linear-gradient(135deg, #000000 0%, #000a00 25%, #000000 50%, #000f00 75%, #000000 100%);
	--highlights-bg: linear-gradient(135deg, #000000 0%, #001500 25%, #000000 50%, #002000 75%, #000000 100%);
	--local-bg: linear-gradient(135deg, #000000 0%, #000800 25%, #000000 50%, #001200 75%, #000000 100%);
	--networking-bg: linear-gradient(135deg, #000000 0%, #000d00 25%, #000000 50%, #001800 75%, #000000 100%);
	--momentos-bg: linear-gradient(135deg, #000000 0%, #001200 25%, #000000 50%, #001d00 75%, #000000 100%);
	--signup-bg: linear-gradient(135deg, #000000 0%, #000f00 25%, #000000 50%, #001a00 75%, #000000 100%);
	
	/* Alternating Section Backgrounds - Intensified */
	--section-green-bg: linear-gradient(135deg, rgba(0, 255, 0, 0.25) 0%, rgba(0, 50, 0, 0.8) 20%, rgba(0, 255, 0, 0.15) 40%, rgba(0, 0, 0, 0.9) 60%, rgba(0, 255, 0, 0.2) 80%, rgba(0, 30, 0, 0.7) 100%);
	--section-black-bg: #000000;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
	background: radial-gradient(1200px 600px at 80% -20%, rgba(0,255,0,0.05), transparent 60%) , var(--bg);
	color: var(--text);
	line-height: 1.6;
	letter-spacing: 0.2px;
	padding-top: 58px;
}

img { max-width: 100%; display: block; }
.container { width: 92%; max-width: 1120px; margin: 0 auto; }
.section { padding: 96px 0; position: relative; }

/* Remover padding da seção evento para conectar com o vídeo */
@media (min-width: 1025px) {
	.section.evento {
		padding: 0 !important;
	}
	
	/* Reset completo para eliminar qualquer espaçamento entre seções */
	.inicio,
	#evento,
	.section.evento,
	.section-black.evento {
		margin: 0 !important;
		padding: 0 !important;
		border: none !important;
		outline: none !important;
	}
	
	/* Garantir que as seções se toquem perfeitamente */
	.inicio {
		position: relative;
		z-index: 1;
	}
	
	#evento {
		position: relative;
		z-index: 2;
		margin-top: 0 !important;
		top: 0 !important;
	}
}

/* Remove padding top from lineup section to connect with evento */
#lineup {
	padding-top: 0;
}

@media (max-width: 768px) {
	#lineup {
		padding-top: 0;
		padding-bottom: 60px; /* Maintain bottom padding on mobile */
	}
}
.eyebrow { color: var(--primary); letter-spacing: 1px; text-transform: uppercase; font-weight: 700; font-size: 0.9rem; }

/* Header */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(0,0,0,0.95); border-bottom: 1px solid var(--border); }
.header { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.header .container { 
	display: flex; 
	justify-content: space-between; 
	align-items: center; 
	padding: 12px 24px; 
	position: relative;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); transition: all 0.3s ease; }
.logo:hover { color: var(--primary); transform: scale(1.05); }
.logo__img { 
	height: 40px; 
	width: auto; 
	filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.3)); 
	transition: all 0.3s ease; 
	display: none; /* Hidden on desktop by default */
}
.logo:hover .logo__img { filter: drop-shadow(0 0 12px rgba(0, 255, 0, 0.5)); transform: scale(1.1); }
.logo__text { display: flex; flex-direction: row; align-items: center; gap: 8px; }
.logo__text-main { font-family: "Space Grotesk", sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--primary); text-shadow: 0 0 8px var(--primary); }
.logo__text-sub { font-size: 1.4rem; color: var(--text); font-weight: 500; }
.nav ul { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }

/* Desktop navigation centering */
@media (min-width: 769px) {
	.nav {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		white-space: nowrap;
	}
	
	.nav ul {
		flex-wrap: nowrap;
		gap: 20px;
	}
	
	.nav a {
		font-size: 0.9rem;
		white-space: nowrap;
	}
}
.nav a { color: var(--text); text-decoration: none; font-weight: 500; transition: 200ms ease; position: relative; }
.nav a:hover { color: var(--primary); }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: 200ms ease; }
.nav a:hover::after { width: 100%; }
.nav__toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px 0; transition: 200ms ease; }

/* Desktop CTA Button */
.header__cta {
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	z-index: 1001;
}

.header__cta .btn {
	font-size: 0.8rem;
	padding: 6px 12px;
	background: var(--primary);
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
	border: 2px solid var(--primary);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	border-radius: 8px;
}

.header__cta .btn:hover {
	background: transparent;
	color: var(--primary);
	box-shadow: 0 0 40px rgba(0, 255, 0, 0.8);
	transform: translateY(-3px);
}

@media (max-width: 768px) {
	.nav ul { 
		display: none !important; 
		flex-direction: column; 
		gap: 16px; 
		position: absolute; 
		top: 100%; 
		left: 0; 
		right: 0; 
		background: rgba(0,0,0,0.98); 
		padding: 24px; 
		border-top: 1px solid var(--border); 
		z-index: 1000;
	}
	
	.nav ul.is-open { 
		display: flex !important; 
	}
	.nav__toggle { 
		display: block !important; 
		margin-right: 5px;
		position: relative;
		z-index: 1002;
	}
	.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
	.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
	.logo__text-main { font-size: 1.2rem; }
	.logo__text-sub { font-size: 1.2rem; }
	
	/* Mobile logo image */
	.logo__img {
		display: block;
		height: 35px;
		width: auto;
		margin-right: 8px;
		filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.3));
	}
	
	/* Mobile CTA Button - Override desktop styles */
	.header__cta {
		position: absolute !important;
		top: 50% !important;
		left: 70% !important;
		right: auto !important;
		transform: translate(-50%, -50%) !important;
		z-index: 1001 !important;
	}
	
	.header__cta .btn {
		font-size: 0.7rem !important;
		padding: 4px 8px !important;
		border: 2px solid var(--primary) !important;
		border-radius: 8px !important;
		font-weight: 700 !important;
		text-transform: uppercase !important;
		letter-spacing: 1px !important;
		box-shadow: 0 0 30px rgba(0, 255, 0, 0.5) !important;
	}
	
	.header__cta .btn:hover {
		background: transparent !important;
		color: var(--primary) !important;
		box-shadow: 0 0 40px rgba(0, 255, 0, 0.8) !important;
		transform: translateY(-3px) !important;
	}
	
	.header__cta .btn:active {
		color: #000 !important; /* Texto preto quando clicado */
		background: #00ff00 !important;
		border-color: #00ff00 !important;
	}
	
}

/* Seção Início */
.inicio {
	position: relative;
	height: 100vh;
	min-height: 100vh;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}

/* FORÇAR: Eliminar espaçamento entre seções em TODAS as resoluções */
.inicio + #evento,
.inicio + .section.evento,
.inicio + .section-black.evento {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	position: relative !important;
	top: 0 !important;
	transform: translateY(0) !important;
}

/* Técnica de sobreposição para garantir que não haja espaço entre as seções */
.inicio {
	position: relative;
	z-index: 1;
	margin-bottom: -1px !important;
}

#evento {
	position: relative;
	z-index: 2;
	margin-top: -1px !important;
}

/* FORÇAR: Eliminar espaçamento do main e body */
main {
	margin: 0 !important;
	padding: 0 !important;
}

main > * {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

/* FORÇAR: Regra universal para TODAS as resoluções */
* {
	box-sizing: border-box;
}

/* FORÇAR: Eliminar qualquer espaçamento entre seções início e evento */
.inicio,
#evento,
.section.evento,
.section-black.evento {
	margin: 0 !important;
	padding: 0 !important;
}

.inicio + * {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Desktop - Aumentar altura da seção início */
@media (min-width: 1025px) {
	.inicio {
		height: 120vh;
		min-height: 120vh;
	}
}

.inicio__video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
	object-position: center top;
	background: #000;
	z-index: 1;
	/* Otimizações de performance */
	will-change: transform;
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	/* Garantir que o vídeo seja visível */
	opacity: 1;
	visibility: visible;
	display: block;
	/* Força aceleração de hardware */
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

/* Controle de vídeos por dispositivo */
.inicio__video--desktop {
	display: block;
}

.inicio__video--mobile {
	display: none;
}

/* Garantir que no mobile só apareça o vídeo mobile */
@media (max-width: 768px) {
	.inicio__video--desktop {
		display: none !important;
	}
	
	.inicio__video--mobile {
		display: block !important;
	}
	
	/* Ajustar seção inicio para ficar rente ao header no mobile */
	.inicio {
		margin-top: -58px !important; /* Compensa o padding-top do body */
		padding-top: 0 !important;
		height: auto;
		min-height: 100vh;
		overflow: visible !important;
	}
	
	.inicio__video--mobile {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		max-height: none;
		object-fit: contain;
		object-position: center top;
	}
}

/* Desktop - Otimização do vídeo */
@media (min-width: 1025px) {
	.inicio__video {
		object-fit: contain;
		object-position: center center;
		background: linear-gradient(135deg, #000 0%, #001a00 100%);
		height: 120vh; /* Aumentar altura para evitar corte */
		width: 100vw;
		margin: 0 auto;
		position: absolute;
		top: 0;
		left: 0;
		transform: scale(1.0);
		/* Remover controles de vídeo no desktop */
		pointer-events: none;
	}
	
	/* Ajustar o poster para aparecer totalmente */
	.inicio__video--desktop {
		object-fit: contain;
		object-position: center center;
	}
}

/* Telas grandes - Otimização adicional */
@media (min-width: 1440px) {
	.inicio__video {
		object-fit: contain;
		object-position: center center;
		background: linear-gradient(135deg, #000 0%, #001a00 100%);
		height: 120vh; /* Aumentar altura para evitar corte */
		width: 100vw;
		margin: 0 auto;
		position: absolute;
		top: 0;
		left: 0;
		transform: scale(1.0);
		/* Remover controles de vídeo no desktop */
		pointer-events: none;
	}
}

/* Mobile - Ajustes responsivos e otimizações */
@media (max-width: 1024px) {
	.inicio__video {
		object-position: center 40%;
		/* Otimizações para mobile */
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	/* FORÇAR: Eliminar espaçamento no mobile também */
	.inicio + #evento,
	.inicio + .section.evento,
	.inicio + .section-black.evento {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		position: relative !important;
		top: 0 !important;
		transform: translateY(0) !important;
	}
	
	/* Garantir que não haja espaço entre as seções */
	.inicio {
		margin-bottom: -1px !important;
	}
	
	#evento {
		margin-top: -1px !important;
	}
}

@media (max-width: 768px) {
	.inicio__video {
		/* Desabilita algumas otimizações em mobile para economizar recursos */
		will-change: auto;
		object-fit: contain;
		object-position: center center;
	}
	
	/* FORÇAR: Eliminar espaçamento em telas pequenas */
	.inicio + #evento,
	.inicio + .section.evento,
	.inicio + .section-black.evento {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		position: relative !important;
		top: 0 !important;
		transform: translateY(0) !important;
	}
	
	/* Garantir que não haja espaço entre as seções em mobile */
	.inicio {
		margin-bottom: -1px !important;
		height: 100vh !important;
		min-height: 100vh !important;
	}
	
	#evento {
		margin-top: -1px !important;
	}
}

@media (max-width: 480px) {
	.inicio__video {
		object-fit: contain;
		object-position: center center;
		width: auto;
		height: auto;
		max-width: 100vw;
		max-height: 100vh;
		transform: none;
		position: relative;
		/* Otimizações para dispositivos pequenos */
		-webkit-transform: none;
		will-change: auto;
	}
	
	/* FORÇAR: Eliminar espaçamento em telas muito pequenas */
	.inicio + #evento,
	.inicio + .section.evento,
	.inicio + .section-black.evento {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		position: relative !important;
		top: 0 !important;
		transform: translateY(0) !important;
	}
	
	/* Garantir que não haja espaço entre as seções em telas muito pequenas */
	.inicio {
		margin-bottom: -1px !important;
		height: 100vh !important;
		min-height: 100vh !important;
	}
	
	#evento {
		margin-top: -1px !important;
	}
}

/* Otimizações para dispositivos com baixa performance */
@media (prefers-reduced-motion: reduce) {
	.inicio__video {
		animation: none;
		transform: none;
		-webkit-transform: none;
	}
}

/* Otimizações para conexões lentas */
@media (max-width: 768px) and (max-height: 600px) {
	.inicio__video {
		object-fit: cover;
		object-position: center 30%;
	}
}

/* Estilos mobile da seção hero removidos */

/* Estilos de resolução da seção hero removidos */

/* Desktop - Garantir que a seção evento se conecte perfeitamente com hero */
@media (min-width: 1025px) {
	/* Remover padding-top do body para a seção início */
	.inicio {
		margin-top: -58px !important; /* Compensa o padding-top do body */
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		position: relative;
		z-index: 1;
		height: 120vh; /* Aumentar altura para evitar corte */
		min-height: 120vh;
	}
	
	/* FORÇAR: Seção evento colada na seção início */
	#evento {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		position: relative !important;
		top: 0 !important;
		transform: translateY(0) !important;
		z-index: 2;
	}
	
	/* Posicionar a seção evento exatamente no final da seção início */
	.section.evento,
	.section.evento.section-black,
	#evento.section.section-black.evento,
	.section-black.evento {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		position: relative;
		box-sizing: border-box;
		/* Conectar perfeitamente com o final do vídeo */
		top: 0;
		z-index: 2;
		/* Forçar posicionamento para eliminar qualquer gap */
		transform: translateY(0);
	}
	
	/* FORÇAR: Eliminar qualquer espaçamento entre seções */
	.inicio + #evento,
	.inicio + .section.evento,
	.inicio + .section-black.evento {
		margin-top: 0 !important;
		padding-top: 0 !important;
		position: relative !important;
		top: 0 !important;
		transform: translateY(0) !important;
	}
	
	/* Garantir que o container da seção evento também não tenha padding */
	.section.evento .container {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	
	/* Ajustar o padding do conteúdo da seção evento */
	.section.evento .evento__content {
		padding-top: 0 !important;
	}
	
	/* Garantir que o vídeo não seja cortado no desktop */
	.inicio__video--desktop {
		object-fit: contain;
		object-position: center center;
		height: 120vh; /* Aumentar altura do vídeo para acompanhar a seção */
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
	
	/* Forçar posicionamento absoluto para eliminar qualquer espaçamento */
	main {
		position: relative;
		overflow: hidden;
	}
	
	/* Garantir que não haja gap entre as seções */
	.inicio + .evento {
		margin-top: 0 !important;
		position: relative;
		top: 0 !important;
		transform: translateY(0) !important;
	}
	
	/* Remover qualquer espaçamento do elemento main */
	main > * {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
	
	/* Específico para a transição entre início e evento */
	.inicio {
		margin-bottom: 0 !important;
		padding-bottom: 0 !important;
	}
	
	#evento {
		margin-top: 0 !important;
		padding-top: 0 !important;
		position: relative;
		top: 0 !important;
	}
}

/* Background tecnológico */
.hero__tech-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	opacity: 0.4;
}

.tech-grid {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
	background-size: 50px 50px;
	animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
	0% { transform: translate(0, 0); }
	100% { transform: translate(50px, 50px); }
}

.tech-circles {
	position: absolute;
	inset: 0;
}

.tech-circle {
	position: absolute;
	border: 1px solid rgba(0, 255, 0, 0.3);
	border-radius: 50%;
	animation: circle-pulse 4s ease-in-out infinite;
}

.tech-circle:nth-child(1) {
	width: 200px;
	height: 200px;
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}

.tech-circle:nth-child(2) {
	width: 150px;
	height: 150px;
	top: 60%;
	right: 10%;
	animation-delay: 1.5s;
}

.tech-circle:nth-child(3) {
	width: 100px;
	height: 100px;
	bottom: 20%;
	left: 20%;
	animation-delay: 3s;
}

@keyframes circle-pulse {
	0%, 100% { opacity: 0.3; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.1); }
}

.tech-lines {
	position: absolute;
	inset: 0;
}

.tech-line {
	position: absolute;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.4), transparent);
	height: 1px;
	animation: line-sweep 8s linear infinite;
}

.tech-line:nth-child(1) {
	width: 300px;
	top: 20%;
	left: -300px;
	animation-delay: 0s;
}

.tech-line:nth-child(2) {
	width: 200px;
	top: 50%;
	right: -200px;
	animation-delay: 2s;
}

.tech-line:nth-child(3) {
	width: 250px;
	bottom: 30%;
	left: -250px;
	animation-delay: 4s;
}

@keyframes line-sweep {
	0% { transform: translateX(0); }
	100% { transform: translateX(100vw); }
}

.hero__matrix-bg { 
	position: absolute; 
	inset: 0; 
	overflow: hidden; 
	opacity: 0.2; 
	z-index: 1;
}

.matrix-lines { 
	position: absolute; 
	width: 2px; 
	height: 100%; 
	background: linear-gradient(180deg, transparent, var(--primary), transparent); 
	animation: matrix-fall 8s linear infinite; 
	z-index: 2;
}

.matrix-lines:nth-child(1) { 
	left: 10%; 
	animation-delay: 0s; 
	height: 80%; 
}

.matrix-lines:nth-child(2) { 
	left: 50%; 
	animation-delay: 2s; 
	height: 60%; 
}

.matrix-lines:nth-child(3) { 
	right: 15%; 
	animation-delay: 4s; 
	height: 90%; 
}

@keyframes matrix-fall { 
	0% { transform: translateY(-100%); opacity: 0; } 
	10% { opacity: 1; } 
	90% { opacity: 1; } 
	100% { transform: translateY(100vh); opacity: 0; } 
}

/* Hero content container removed - elements are now direct children */

/* Evento Section */
.evento {
	background: url('../img/Background/banner_4.webp') center center/cover no-repeat !important;
	color: var(--text);
	padding: 0;
	margin-top: 0; /* Removido margin-top para conectar perfeitamente */
	position: relative;
	height: auto;
	min-height: 140vh;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: height 0.3s ease;
}

.evento::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent !important;
	z-index: 1;
	transition: background 0.3s ease;
}

/* Darker overlay when form is active */
.evento:has(.evento__form-container.active)::before {
	background: transparent !important;
}

/* Expand height when form is active */
.evento:has(.evento__form-container.active) {
	height: 120vh;
}

/* Additional overlay effect when form is active */
.evento:has(.evento__form-container.active)::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	z-index: 1;
	pointer-events: none;
}

.evento .container {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.evento__content {
	text-align: center; 
	max-width: 800px; 
	margin: 0 auto;
	padding: 80px 20px;
}

.evento__title-group {
	margin-bottom: 30px;
}

.evento__title {
	font-family: "Space Grotesk", sans-serif;
	font-size: 3.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.evento__title-main {
	color: var(--primary);
	text-shadow: 0 0 30px var(--primary), 0 0 60px var(--primary);
	animation: neon-pulse 2s ease-in-out infinite alternate, float 3s ease-in-out infinite;
	display: inline-block;
}

.evento__title-sub {
	color: var(--text);
	font-size: 2.2rem;
	font-weight: 600;
	display: inline-block;
	animation: float 3s ease-in-out infinite reverse;
}

.evento__slogan {
	font-size: 1.3rem;
	line-height: 1.4;
	color: var(--text);
	margin: 0 0 30px;
	text-align: center;
}

.evento__slogan .highlight {
	color: var(--primary);
	font-weight: 600;
}

.evento__details {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 30px 0;
	flex-wrap: wrap;
}

.evento__detail-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--text);
	font-size: 1.1rem;
}

.evento__icon {
	font-size: 1.5rem;
	filter: drop-shadow(0 0 10px var(--primary));
}

.evento__location-link {
	color: var(--text);
	text-decoration: none;
	transition: all 0.3s ease;
}

.evento__location-link:hover {
	color: var(--primary);
	text-shadow: 0 0 20px var(--primary);
}

.evento__tagline {
	font-size: 1.1rem;
	color: var(--muted);
	margin: 0 0 30px;
	line-height: 1.5;
}

.evento__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.btn--evento {
	font-size: 1.2rem;
	padding: 16px 32px;
	background: var(--primary);
	color: #000;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
	border: 2px solid var(--primary);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	border-radius: 8px;
}

.btn--evento:hover {
	background: transparent;
	color: var(--primary);
	box-shadow: 0 0 40px rgba(0, 255, 0, 0.8);
	transform: translateY(-3px);
}

/* Evento Form Styles */
.evento__form-container {
	background: rgba(0, 0, 0, 0.85);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	border: 1px solid rgba(0, 255, 0, 0.4);
	border-radius: 20px;
	padding: 0;
	margin-top: 30px;
	overflow: hidden;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.3s ease;
	max-height: 0;
	opacity: 0;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.2);
}

.evento__form-container.active {
	transform: scaleY(1);
	max-height: 1000px;
	opacity: 1;
	background: rgba(0, 0, 0, 0.9);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 0, 0.3);
}

.evento__form-header {
	background: linear-gradient(135deg, var(--primary), #00e600);
	color: #000;
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.evento__form-header h3 {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 600;
}

.evento__form-close {
	background: none;
	border: none;
	color: #000;
	cursor: pointer;
	padding: 5px;
	border-radius: 50%;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.evento__form-close:hover {
	background: rgba(0, 0, 0, 0.1);
	transform: rotate(90deg);
}

.evento__form {
	padding: 30px;
}

.evento__form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 25px;
}

.evento__form-group {
	display: flex;
	flex-direction: column;
}

.evento__form-group label {
	color: var(--text);
	font-weight: 500;
	margin-bottom: 8px;
	font-size: 0.9rem;
}

.evento__form-group input {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(0, 255, 0, 0.3);
	border-radius: 8px;
	padding: 12px 16px;
	color: var(--text);
	font-size: 1rem;
	transition: all 0.3s ease;
}

.evento__form-group input:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.1);
	background: rgba(255, 255, 255, 0.15);
}

.evento__form-group input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

/* Form Validation Styles */
.evento__form-group {
	position: relative;
}

/* Success styling with green neon border */
.evento__form-group input.success {
	border-color: #00ff00;
	box-shadow: 0 0 10px rgba(0, 255, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.3), 0 0 30px rgba(0, 255, 0, 0.1);
	background: rgba(0, 255, 0, 0.05);
}

/* Error styling with red neon border */
.evento__form-group input.error {
	border-color: #ff4444;
	box-shadow: 0 0 10px rgba(255, 68, 68, 0.5), 0 0 20px rgba(255, 68, 68, 0.3), 0 0 30px rgba(255, 68, 68, 0.1);
	background: rgba(255, 68, 68, 0.05);
}

.evento__checkbox-group.error {
	border-color: #ff4444;
	box-shadow: 0 0 10px rgba(255, 68, 68, 0.5), 0 0 20px rgba(255, 68, 68, 0.3), 0 0 30px rgba(255, 68, 68, 0.1);
	background: rgba(255, 68, 68, 0.05);
}

.evento__form-group .validation-message {
	position: absolute;
	bottom: -28px;
	left: 0;
	right: 0;
	font-size: 0.8rem;
	padding: 6px 8px;
	border-radius: 4px;
	margin-top: 8px;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	pointer-events: none;
	display: none; /* Hide validation messages by default */
}

.evento__form-group .validation-message.show {
	opacity: 1;
	transform: translateY(0);
}

.evento__form-group .validation-message.error {
	color: #ff4444;
	background: rgba(255, 68, 68, 0.1);
	border: 1px solid rgba(255, 68, 68, 0.3);
	box-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
}

.evento__form-group .validation-message.success {
	color: #00ff00;
	background: rgba(0, 255, 0, 0.1);
	border: 1px solid rgba(0, 255, 0, 0.3);
	box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

/* Estilo especial para mensagem de duplicidade de e-mail */
.evento__form-group .validation-message.error.duplicate {
	color: #ff6b35;
	background: rgba(255, 107, 53, 0.1);
	border: 1px solid rgba(255, 107, 53, 0.4);
	box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
	font-weight: 600;
}

/* Checkbox validation - removed visual error styling */

.evento__checkbox-group .validation-message {
	position: absolute;
	bottom: -32px;
	left: 0;
	right: 0;
	font-size: 0.8rem;
	padding: 6px 8px;
	border-radius: 4px;
	margin-top: 8px;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	pointer-events: none;
	display: none; /* Hide validation messages by default */
}

.evento__checkbox-group .validation-message.show {
	opacity: 1;
	transform: translateY(0);
}

.evento__checkbox-group .validation-message.error {
	color: #ff4444;
}

.btn--form {
	width: 100%;
	justify-content: center;
	margin-top: 10px;
}

.evento__form-checkboxes {
	margin: 25px 0;
}

.evento__checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 15px;
}

.evento__checkbox-group input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--primary);
	cursor: pointer;
}

.evento__checkbox-group label {
	color: var(--text);
	font-size: 0.9rem;
	line-height: 1.4;
	cursor: pointer;
	margin: 0;
}

.evento__checkbox-group label a {
	color: var(--primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.evento__checkbox-group label a:hover {
	color: #00e600;
	text-shadow: 0 0 10px var(--primary);
}

/* Countdown Timer Styles */
.countdown-container {
	background: rgba(0, 0, 0, 0.8);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	border: 2px solid rgba(0, 255, 0, 0.4);
	border-radius: 20px;
	padding: 30px;
	margin: 30px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.2);
	animation: countdown-glow 3s ease-in-out infinite alternate;
}

@keyframes countdown-glow {
	0% {
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.2);
		border-color: rgba(0, 255, 0, 0.4);
	}
	100% {
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 0, 0.4);
		border-color: rgba(0, 255, 0, 0.6);
	}
}

.countdown-title {
	text-align: center;
	margin-bottom: 25px;
}

.countdown-title h3 {
	color: var(--primary);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
	text-shadow: 0 0 20px var(--primary);
	animation: title-pulse 2s ease-in-out infinite alternate;
}

@keyframes title-pulse {
	0% {
		text-shadow: 0 0 20px var(--primary);
		transform: scale(1);
	}
	100% {
		text-shadow: 0 0 30px var(--primary), 0 0 40px var(--primary);
		transform: scale(1.02);
	}
}

.countdown-display {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.countdown-item {
	text-align: center;
	background: rgba(0, 255, 0, 0.1);
	border: 1px solid rgba(0, 255, 0, 0.3);
	border-radius: 15px;
	padding: 20px 15px;
	min-width: 80px;
	animation: countdown-item-float 3s ease-in-out infinite;
}

.countdown-item:nth-child(1) { animation-delay: 0s; }
.countdown-item:nth-child(3) { animation-delay: 0.5s; }
.countdown-item:nth-child(5) { animation-delay: 1s; }
.countdown-item:nth-child(7) { animation-delay: 1.5s; }

@keyframes countdown-item-float {
	0%, 100% {
		transform: translateY(0px);
		box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
	}
	50% {
		transform: translateY(-5px);
		box-shadow: 0 10px 25px rgba(0, 255, 0, 0.3);
	}
}

.countdown-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary);
	text-shadow: 0 0 15px var(--primary);
	margin-bottom: 5px;
	animation: number-flip 0.6s ease-in-out;
}

@keyframes number-flip {
	0% {
		transform: rotateX(0deg);
	}
	50% {
		transform: rotateX(90deg);
	}
	100% {
		transform: rotateX(0deg);
	}
}

.countdown-number.number-changing {
	animation: number-flip 0.6s ease-in-out, number-glow 0.6s ease-in-out;
}

@keyframes number-glow {
	0% {
		text-shadow: 0 0 15px var(--primary);
	}
	50% {
		text-shadow: 0 0 25px var(--primary), 0 0 35px var(--primary);
	}
	100% {
		text-shadow: 0 0 15px var(--primary);
	}
}

.countdown-label {
	font-size: 0.9rem;
	color: var(--text);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.countdown-separator {
	font-size: 2rem;
	color: var(--primary);
	font-weight: 800;
	text-shadow: 0 0 10px var(--primary);
	animation: separator-blink 1s ease-in-out infinite;
}

@keyframes separator-blink {
	0%, 50% {
		opacity: 1;
	}
	51%, 100% {
		opacity: 0.3;
	}
}

/* Event Day Message Styles */
.event-day-message {
	background: linear-gradient(135deg, rgba(0, 255, 0, 0.2), rgba(0, 200, 0, 0.3));
	border: 3px solid var(--primary);
	border-radius: 25px;
	padding: 40px;
	margin: 30px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	animation: event-day-celebration 2s ease-in-out infinite alternate;
}

@keyframes event-day-celebration {
	0% {
		box-shadow: 0 0 30px rgba(0, 255, 0, 0.4);
		transform: scale(1);
	}
	100% {
		box-shadow: 0 0 50px rgba(0, 255, 0, 0.6), 0 0 80px rgba(0, 255, 0, 0.3);
		transform: scale(1.02);
	}
}

.event-day-content {
	position: relative;
	z-index: 2;
}

.event-day-icon {
	font-size: 4rem;
	margin-bottom: 20px;
	animation: icon-bounce 1s ease-in-out infinite alternate;
}

@keyframes icon-bounce {
	0% {
		transform: translateY(0px) rotate(0deg);
	}
	100% {
		transform: translateY(-10px) rotate(5deg);
	}
}

.event-day-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary);
	margin: 0 0 15px;
	text-shadow: 0 0 30px var(--primary);
	animation: title-celebration 1.5s ease-in-out infinite alternate;
}

@keyframes title-celebration {
	0% {
		text-shadow: 0 0 30px var(--primary);
		transform: scale(1);
	}
	100% {
		text-shadow: 0 0 40px var(--primary), 0 0 60px var(--primary);
		transform: scale(1.05);
	}
}

.event-day-subtitle {
	font-size: 1.3rem;
	color: var(--text);
	margin: 0;
	font-weight: 500;
}

.event-day-animation {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 1;
}

.confetti {
	position: absolute;
	width: 10px;
	height: 10px;
	background: var(--primary);
	animation: confetti-fall 3s linear infinite;
}

.confetti:nth-child(1) {
	left: 10%;
	animation-delay: 0s;
	background: #ff6b6b;
}

.confetti:nth-child(2) {
	left: 30%;
	animation-delay: 0.5s;
	background: #4ecdc4;
}

.confetti:nth-child(3) {
	left: 50%;
	animation-delay: 1s;
	background: #45b7d1;
}

.confetti:nth-child(4) {
	left: 70%;
	animation-delay: 1.5s;
	background: #f9ca24;
}

.confetti:nth-child(5) {
	left: 90%;
	animation-delay: 2s;
	background: #f0932b;
}

@keyframes confetti-fall {
	0% {
		transform: translateY(-100px) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: translateY(400px) rotate(360deg);
		opacity: 0;
	}
}

/* Responsive Countdown */
@media (max-width: 768px) {
	.countdown-container {
		padding: 25px 15px 20px 15px;
		margin: 20px 0;
	}
	
	.countdown-display {
		gap: 6px;
		flex-wrap: nowrap !important;
		overflow-x: auto;
		padding: 0 5px;
	}
	
	.countdown-item {
		padding: 10px 6px;
		min-width: 55px;
		flex-shrink: 0;
		animation: none !important;
		transform: none !important;
	}
	
	.countdown-number {
		font-size: 1.6rem;
	}
	
	.countdown-separator {
		font-size: 1.2rem;
		flex-shrink: 0;
	}
	
	.countdown-title h3 {
		font-size: 1.2rem;
	}
	
	.event-day-message {
		padding: 30px 20px;
	}
	
	.event-day-title {
		font-size: 2rem;
	}
	
	.event-day-subtitle {
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.countdown-container {
		padding: 30px 15px 20px 15px !important;
		margin: 20px 0 !important;
	}
	
	.countdown-display {
		flex-direction: row !important;
		gap: 4px !important;
		flex-wrap: nowrap !important;
		justify-content: center;
		overflow-x: auto;
		padding: 0 10px;
	}
	
	.countdown-separator {
		display: block !important;
		font-size: 1rem;
		flex-shrink: 0;
	}
	
	.countdown-item {
		width: auto !important;
		min-width: 45px !important;
		padding: 8px 6px !important;
		margin: 0 !important;
		flex-shrink: 0;
		animation: none !important;
		transform: none !important;
	}
	
	.countdown-number {
		font-size: 1.3rem !important;
	}
	
	.countdown-label {
		font-size: 0.6rem !important;
	}
}

/* Responsive Evento Section */
@media (max-width: 768px) {
	.evento {
		height: auto;
		min-height: 140vh;
		background: url('../img/Background/banner_mobile3.webp') center center/cover no-repeat !important;
	}
	
	.evento:has(.evento__form-container.active) {
		min-height: 160vh; /* More height on mobile when form is open */
	}
	
	.evento__content {
		padding: 60px 15px;
	}
	
	.evento .container {
		padding: 20px 15px;
	}
	
	.evento__title {
		font-size: 2.5rem;
	}
	
	.evento__title-sub {
		font-size: 1.8rem;
	}
	
	.evento__slogan {
		font-size: 1.1rem;
	}
	
	.evento__details {
		flex-direction: column;
		gap: 15px;
		margin: 20px 0;
	}
	
	.evento__detail-item {
		font-size: 1rem;
	}
	
	.btn--evento {
		font-size: 1.1rem;
		padding: 14px 28px;
	}
	
	.evento__form-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.evento__form {
		padding: 20px;
	}
	
	.evento__form-header {
		padding: 15px 20px;
	}
	
	.evento__form-header h3 {
		font-size: 1.1rem;
	}
	
	/* Mobile checkbox fixes */
	.evento__form-checkboxes {
		margin: 20px 0;
	}
	
	.evento__checkbox-group {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 15px;
		padding: 12px;
		border-radius: 12px;
		background: rgba(0, 255, 0, 0.08);
		border: 2px solid rgba(0, 255, 0, 0.2);
		transition: all 0.3s ease;
		cursor: pointer;
		position: relative;
		user-select: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		touch-action: manipulation;
	}
	
	.evento__checkbox-group:hover {
		background: rgba(0, 255, 0, 0.12);
		border-color: rgba(0, 255, 0, 0.4);
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2);
	}
	
	.evento__checkbox-group input[type="checkbox"] {
		width: 24px;
		height: 24px;
		margin: 0;
		accent-color: var(--primary);
		cursor: pointer;
		flex-shrink: 0;
		margin-top: 1px;
		transform: scale(1.2);
		-webkit-appearance: none;
		appearance: none;
		background: rgba(255, 255, 255, 0.1);
		border: 2px solid rgba(0, 255, 0, 0.5);
		border-radius: 6px;
		position: relative;
		transition: all 0.3s ease;
	}
	
	.evento__checkbox-group input[type="checkbox"]:checked {
		background: var(--primary);
		border-color: var(--primary);
		box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
	}
	
	.evento__checkbox-group input[type="checkbox"]:checked::after {
		content: '✓';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		color: #000;
		font-size: 14px;
		font-weight: bold;
	}
	
	.evento__checkbox-group label {
		color: var(--text);
		font-size: 0.9rem;
		line-height: 1.4;
		cursor: pointer;
		margin: 0;
		flex: 1;
		user-select: none;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		pointer-events: none;
	}
	
	.evento__checkbox-group label a {
		color: var(--primary);
		text-decoration: none;
		font-weight: 600;
		text-shadow: 0 0 8px rgba(0, 255, 0, 0.3);
		pointer-events: auto;
	}
	
	.evento__checkbox-group label a:hover {
		color: #00e600;
		text-shadow: 0 0 12px rgba(0, 255, 0, 0.5);
	}
	
	/* Additional mobile checkbox enhancements */
	.evento__checkbox-group:active {
		transform: translateY(0) scale(0.98);
		background: rgba(0, 255, 0, 0.2) !important;
	}
	
	.evento__checkbox-group input[type="checkbox"]:focus {
		outline: 2px solid var(--primary);
		outline-offset: 2px;
		box-shadow: 0 0 20px rgba(0, 255, 0, 0.6);
	}
	
	/* Mobile validation messages */
	.evento__form-group .validation-message {
		bottom: -28px;
		font-size: 0.75rem;
		padding: 4px 8px;
		margin-top: 6px;
	}
	
	.evento__form-group .validation-message.error.duplicate {
		font-size: 0.7rem;
		padding: 6px 8px;
		box-shadow: 0 0 8px rgba(255, 107, 53, 0.4);
	}
	
	.evento__checkbox-group .validation-message {
		bottom: -32px;
		font-size: 0.75rem;
		padding: 4px 8px;
		margin-top: 6px;
	}
}

@media (max-width: 480px) {
	.evento {
		padding: 40px 0;
	}
	
	.evento__title {
		font-size: 2.5rem;
	}
	
	.evento__title-sub {
		font-size: 1.8rem;
	}
	
	.evento__slogan {
		font-size: 1rem;
	}
	
	.evento__tagline {
		font-size: 1rem;
	}
	
	.evento__form {
		padding: 15px;
	}
	
	.evento__form-header {
		padding: 12px 15px;
	}
	
	.evento__form-header h3 {
		font-size: 1rem;
	}
	
	.evento__form-group input {
		padding: 10px 12px;
		font-size: 0.9rem;
	}
}

.hero__title-group { 
	position: relative; 
	z-index: 3; 
	text-align: center; 
	max-width: 800px; 
	margin: 0 auto 40px; 
	padding: 40px 0;
}

.hero__title { 
	font-family: "Space Grotesk", sans-serif; 
	font-size: 4rem; 
	font-weight: 800; 
	line-height: 1; 
	margin: 0 0 20px; 
	display: flex; 
	flex-direction: column; 
	align-items: center; 
	gap: 8px; 
}

.hero__title-main { 
	color: var(--primary); 
	text-shadow: 0 0 30px var(--primary), 0 0 60px var(--primary), 0 4px 8px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.8); 
	animation: neon-pulse 2s ease-in-out infinite alternate, float 3s ease-in-out infinite; 
	display: inline-block;
}

.hero__title-sub { 
	color: var(--text); 
	font-size: 2.5rem; 
	font-weight: 600; 
	display: inline-block;
	animation: float 3s ease-in-out infinite reverse;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.9);
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

@keyframes neon-pulse { 
	0% { text-shadow: 0 0 30px var(--primary), 0 0 60px var(--primary); } 
	100% { text-shadow: 0 0 40px var(--primary), 0 0 80px var(--primary), 0 0 120px var(--primary); } 
}

.hero__slogan { 
	position: relative; 
	z-index: 3; 
	text-align: center; 
	max-width: 800px; 
	margin: 0 auto 30px; 
	font-size: 1.3rem; 
	line-height: 1.4; 
	color: var(--text); 
	text-shadow: 0 0 20px var(--primary), 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.9); 
}

.hero__slogan .highlight { 
	color: var(--primary); 
	font-weight: 600; 
}

.hero__details { 
	position: relative; 
	z-index: 3; 
	text-align: center; 
	max-width: 800px; 
	margin: 0 auto 40px; 
	display: flex; 
	justify-content: center; 
	gap: 40px; 
	flex-wrap: wrap; 
}

.hero__detail-item { 
	display: flex; 
	align-items: center; 
	gap: 12px; 
	color: var(--text); 
	font-size: 1.1rem; 
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero__icon { 
	font-size: 1.5rem; 
	filter: drop-shadow(0 0 10px var(--primary)); 
}

.hero__location-link {
	color: var(--text);
	text-decoration: none;
	transition: all 0.3s ease;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero__location-link:hover {
	color: var(--primary);
	text-shadow: 0 0 20px var(--primary), 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero__tagline { 
	position: relative; 
	z-index: 3; 
	text-align: center; 
	max-width: 800px; 
	margin: 0 auto 40px; 
	font-size: 1.1rem; 
	color: var(--muted); 
	line-height: 1.5; 
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero__cta { 
	position: relative; 
	z-index: 3; 
	text-align: center; 
	max-width: 800px; 
	margin: 0 auto; 
	display: flex; 
	flex-direction: column; 
	align-items: center; 
	gap: 20px; 
}

.btn--hero { 
	font-size: 1.2rem; 
	padding: 16px 32px; 
	background: var(--primary); 
	color: #000; 
	font-weight: 700; 
	text-transform: uppercase; 
	letter-spacing: 1px; 
	box-shadow: 0 0 30px rgba(0, 255, 0, 0.5); 
	border: 2px solid var(--primary); 
	transition: all 0.3s ease; 
}

.btn--hero:hover { 
	background: transparent; 
	color: var(--primary); 
	box-shadow: 0 0 40px rgba(0, 255, 0, 0.8); 
	transform: translateY(-3px); 
}

.hero__scroll-indicator { 
	display: flex; 
	justify-content: center; 
	margin-top: 20px; 
	text-decoration: none;
	transition: all 0.3s ease;
}

.hero__scroll-indicator:hover {
	transform: scale(1.2);
}

.scroll-arrow { 
	width: 20px; 
	height: 20px; 
	border-right: 2px solid var(--primary); 
	border-bottom: 2px solid var(--primary); 
	transform: rotate(45deg); 
	animation: scroll-bounce 2s ease-in-out infinite; 
}

@keyframes scroll-bounce { 
	0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); } 
	40% { transform: rotate(45deg) translateY(10px); } 
	60% { transform: rotate(45deg) translateY(5px); } 
}

/* Highlights Section */
.highlights {
	background: #000000 !important;
	position: relative;
}

.highlights::before,
.highlights::after {
	display: none !important;
}

.highlights > .container::before {
	display: none !important;
}

/* Form Section (Signup) - Remove background effects */
.form-section {
	background: #000000 !important;
	position: relative;
}

.form-section::before,
.form-section::after {
	display: none !important;
}

.form-section > .container::before {
	display: none !important;
}

.highlights__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin: 15px 0 140px 0;
	perspective: 1000px;
	align-items: start;
	justify-items: center;
}

.highlight {
	text-align: center;
	padding: 0;
	position: relative;
	margin-top: 80px;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
}

.highlight:nth-child(1) {
	animation-delay: 0s;
}

.highlight:nth-child(2) {
	animation-delay: 2s;
}

.highlight:nth-child(3) {
	animation-delay: 4s;
}

.highlight::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.1), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.highlight:hover {
	transform: translateY(-15px) scale(1.02);
	border-color: var(--primary);
	box-shadow: 
		0 25px 50px rgba(0, 255, 0, 0.4),
		0 0 80px rgba(0, 255, 0, 0.3),
		inset 0 0 30px rgba(0, 255, 0, 0.1);
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 30, 0, 0.4));
}

.highlight:hover::before {
	opacity: 1;
}

.highlight__content {
	position: relative;
	overflow: hidden;
	height: 280px;
	display: flex;
	flex-direction: column;
}


.highlight__icon {
	width: 100%;
	flex: 1;
	position: relative;
	transition: all 0.4s ease;
	overflow: hidden;
	border-radius: 20px;
	z-index: 1;
}

.highlight__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	border: none;
	box-shadow: none;
	transition: all 0.4s ease;
	transform: scale(1);
}

.highlight__content:hover .highlight__icon img {
	transform: scale(1.1);
	filter: brightness(1.2) contrast(1.1) saturate(1.3);
}

.highlight:hover .highlight__icon {
	transform: scale(1.1);
	filter: brightness(1.2) contrast(1.1);
}

.highlight:hover .highlight__icon img {
	transform: scale(1.1);
	filter: brightness(1.2) contrast(1.1) saturate(1.3);
}

.highlight__title {
	color: #00ff00;
	font-size: 1.8rem;
	margin: 0 0 25px 0;
	font-weight: 700;
	text-align: center;
	width: 100%;
	display: block;
	position: relative;
	z-index: 10;
}




/* Animações dinâmicas */
@keyframes highlightFloat {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-5px); }
}

@keyframes iconPulse {
	0%, 100% { 
		filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.4));
	}
	50% { 
		filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.8));
	}
}

.highlights__cta {
	text-align: center;
	margin-top: 60px;
	animation: ctaFloat 4s ease-in-out infinite;
}


@keyframes ctaFloat {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-3px); }
}

/* Local Section */
.local__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin-top: 40px;
}

.local__info h3 {
	color: var(--primary);
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 20px;
	text-shadow: 0 0 20px var(--primary);
}

.local__info p {
	color: var(--text);
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 30px;
}

.local__map {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.local__map-container {
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.local__map-container:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.local__map iframe {
	width: 100%;
	height: 300px;
	border: none;
	border-radius: 15px;
}

.local__map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
	z-index: 1;
}

.local__map-container:hover .local__map-overlay {
	opacity: 1;
}

.local__map-marker {
	color: var(--primary);
	margin-bottom: 10px;
	animation: pulse 2s ease-in-out infinite;
}

.local__map-info p {
	color: var(--text);
	font-size: 0.9rem;
	font-weight: 600;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
	margin: 0;
}

/* Hero Form Sanfona */
.hero__form-container { 
	height: 0; 
	overflow: hidden; 
	opacity: 0; 
	transform: translateY(-20px) scale(0.95); 
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55); 
	margin-top: 40px; 
	background: rgba(0, 0, 0, 0.8); 
	border: 1px solid rgba(0, 255, 0, 0.2); 
	border-radius: 16px; 
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px); 
	position: relative; 
}

.hero__form-container.is-open { 
	height: auto; 
	opacity: 1; 
	transform: translateY(0) scale(1); 
}

.hero__form-container::before { 
	content: ''; 
	position: absolute; 
	inset: 0; 
	border-radius: 16px; 
	padding: 2px; 
	background: linear-gradient(135deg, transparent, rgba(0, 255, 0, 0.3), transparent); 
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); 
	mask-composite: exclude; 
	opacity: 0; 
	transition: opacity 0.6s ease; 
}

.hero__form-container.is-open::before { 
	opacity: 1; 
}

.hero__form-header { 
	display: flex; 
	justify-content: space-between; 
	align-items: center; 
	padding: 24px 24px 0; 
	margin-bottom: 24px; 
}

.hero__form-header h3 { 
	color: var(--primary); 
	font-size: 1.4rem; 
	font-weight: 600; 
	margin: 0; 
	text-shadow: 0 0 20px var(--primary); 
}

.hero__form-close { 
	background: none; 
	border: none; 
	color: var(--muted); 
	cursor: pointer; 
	padding: 8px; 
	border-radius: 8px; 
	transition: all 0.3s ease; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
}

.hero__form-close:hover { 
	color: var(--primary); 
	background: rgba(0, 255, 0, 0.1); 
	transform: rotate(90deg); 
}

.hero__form { 
	padding: 0 24px 24px; 
}

.hero__form-grid { 
	display: grid; 
	grid-template-columns: repeat(2, 1fr); 
	gap: 20px; 
	margin-bottom: 24px; 
}

.hero__form-group { 
	display: flex; 
	flex-direction: column; 
	gap: 8px; 
}

.hero__form-group label { 
	color: var(--text); 
	font-size: 0.9rem; 
	font-weight: 500; 
}

.hero__form-group input, 
.hero__form-group select { 
	padding: 12px 16px; 
	background: rgba(255, 255, 255, 0.05); 
	border: 1px solid rgba(0, 255, 0, 0.2); 
	border-radius: 8px; 
	color: var(--text); 
	font-size: 1rem; 
	transition: all 0.3s ease; 
}

.hero__form-group input:focus, 
.hero__form-group select:focus { 
	outline: none; 
	border-color: var(--primary); 
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.2); 
	background: rgba(255, 255, 255, 0.08); 
}

.hero__form-group input::placeholder { 
	color: var(--muted); 
}

.hero__form-group select option { 
	background: var(--bg-elev); 
	color: var(--text); 
}

.btn--form { 
	width: 100%; 
	margin-top: 8px; 
}

/* Animações para campos do formulário */
.hero__form-container.is-open .hero__form-group { 
	animation: form-field-slide-in 0.6s ease forwards; 
	opacity: 0; 
	transform: translateX(-20px); 
}

.hero__form-container.is-open .hero__form-group:nth-child(1) { animation-delay: 0.1s; }
.hero__form-container.is-open .hero__form-group:nth-child(2) { animation-delay: 0.2s; }
.hero__form-container.is-open .hero__form-group:nth-child(3) { animation-delay: 0.3s; }
.hero__form-container.is-open .hero__form-group:nth-child(4) { animation-delay: 0.4s; }

@keyframes form-field-slide-in { 
	to { 
		opacity: 1; 
		transform: translateX(0); 
	} 
}

@keyframes scroll-bounce { 
	0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); } 
	40% { transform: rotate(45deg) translateY(10px); } 
	60% { transform: rotate(45deg) translateY(5px); } 
}

.hero__visual { position: relative; min-height: 320px; }
.orb { position: absolute; inset: 0; margin: auto; width: 320px; height: 320px; background: radial-gradient(circle at 30% 30%, rgba(0,255,0,0.6), rgba(0,255,0,0.15) 40%, transparent 60%), radial-gradient(circle at 70% 60%, rgba(0,255,0,0.35), transparent 60%); border-radius: 50%; filter: blur(6px); animation: float 6s ease-in-out infinite; box-shadow: 0 0 120px rgba(0,255,0,0.25);
}
.gridlines { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 1px, transparent 1px, transparent 22px), repeating-linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 1px, transparent 1px, transparent 22px); mask-image: radial-gradient(circle at center, black 40%, transparent 70%); opacity: 0.6; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Cards & sections */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.card { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); border: 1px solid var(--border); padding: 18px; border-radius: 14px; transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(0,255,0,0.25); box-shadow: var(--primary-glow); }
.card h3 { margin-top: 0; font-family: "Space Grotesk"; }
.inline-cta { margin-top: 24px; }

/* Carousel */
.carousel { position: relative; display: block; }
.carousel__control { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); color: var(--text); border: 1px solid var(--border); padding: 10px 12px; border-radius: 10px; cursor: pointer; z-index: 2; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.carousel .prev { left: 8px; }
.carousel .next { right: 8px; }
.carousel__track { overflow: hidden; position: relative; display: flex; width: 100%; touch-action: pan-y; }
.carousel__track::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px var(--border); border-radius: 12px; pointer-events: none; }
.carousel__slide { flex: 0 0 100%; min-width: 100%; transition: transform 320ms ease, opacity 220ms ease; background: #000; }
.carousel__slide img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; display: block; opacity: 0; transition: opacity 240ms ease; }
.carousel__slide.is-active img { opacity: 1; }
.gallery__links { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }

/* Lineup */
.lineup__address { margin-bottom: 48px; text-align: center; }
.lineup__address h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 16px; }
.lineup__address p { color: var(--muted); margin-bottom: 12px; }

.lineup__section { margin-bottom: 48px; text-align: center; }
.lineup__section h3 { color: var(--primary); font-size: 1.4rem; margin-bottom: 24px; text-align: center; }

/* Centralizar o título principal da seção Line-up */
#lineup .section__title { 
	text-align: center; 
	margin-top: 80px;
}

/* Centralizar cards únicos (Apresentadora e Participação Especial) */
.lineup__section:has(.speakers:only-child .speaker:only-child) .speakers {
	justify-content: center;
}

.lineup__section:has(.speakers:only-child .speaker:only-child) .speaker {
	max-width: 300px;
}

.lineup__section:has(.speakers:only-child .speaker:only-child) .speaker img {
	object-position: center;
}

/* Estilos para seções únicas (Apresentadora e Participação Especial) */
.lineup__single { text-align: center; }
.speaker-single { 
	display: flex; 
	flex-direction: column; 
	align-items: center; 
	max-width: 300px; 
	margin: 0 auto; 
	background: var(--card); 
	border: 1px solid var(--border); 
	border-radius: 12px; 
	overflow: hidden; 
	transition: all 0.3s ease;
}
.speaker-single:hover { 
	transform: translateY(-4px); 
	box-shadow: 0 8px 24px rgba(0, 255, 0, 0.15); 
	border-color: var(--primary); 
}
.speaker-single__photo { 
	width: 100%; 
	height: 300px; 
	overflow: hidden; 
}
.speaker-single__photo img { 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
	object-position: center; 
}
.speaker-single__info { 
	padding: 20px; 
	text-align: center; 
}
.speaker-single__info h4 { 
	color: var(--text); 
	font-size: 1.2rem; 
	margin: 0 0 8px; 
	font-weight: 600; 
}
.speaker-single__info p { 
	color: var(--muted); 
	font-size: 0.95rem; 
	margin: 0; 
	line-height: 1.4; 
}

/* Centralizar imagens específicas da Criss Paiva e Xanda Dias */
img[src*="imgCrissPaiva.webp"],
img[src*="imgXandaDias.webp"] {
	display: block;
	margin: 0 auto;
}

/* Centralizar todos os grids de palestrantes */
.speakers { 
	display: grid; 
	grid-template-columns: repeat(4, 1fr); 
	gap: 24px; 
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}

.speaker { 
	background: var(--card); 
	border: 1px solid var(--border); 
	border-radius: 12px; 
	overflow: hidden; 
	transition: all 0.3s ease; 
	text-align: center;
}
.speaker:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 255, 0, 0.15); border-color: var(--primary); }
.speaker img { width: 100%; height: 240px; object-fit: cover; }
.speaker__info { padding: 20px; }
.speaker__info h4 { color: var(--text); font-size: 1.1rem; margin: 0 0 8px; font-weight: 600; }
.speaker__info p { color: var(--muted); font-size: 0.9rem; margin: 0; line-height: 1.4; }

.lineup__note { text-align: center; margin-top: 32px; padding: 24px; background: rgba(0, 255, 0, 0.05); border-radius: 12px; border: 1px solid rgba(0, 255, 0, 0.1); }

@media (max-width: 1200px) {
	.speakers { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
}

@media (max-width: 960px) {
	.speakers { grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 600px; }
	.speaker img { height: 200px; }
}

@media (max-width: 768px) {
	.lineup__section { margin-bottom: 40px; }
	.lineup__section h3 { font-size: 1.3rem; }
	.speakers { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 500px; }
	.speaker img { height: 180px; }
	.speaker__info { padding: 16px; }
	.speaker__info h4 { font-size: 1rem; }
	.speaker__info p { font-size: 0.85rem; }
	
	/* Ajustar margin-top do título da seção lineup no mobile */
	#lineup .section__title { 
		margin-top: 100px;
	}
}

@media (max-width: 480px) {
	.speakers { grid-template-columns: 1fr; max-width: 300px; }
	.speaker img { height: 200px; }
	
	/* Ajustar margin-top do título da seção lineup em telas pequenas */
	#lineup .section__title { 
		margin-top: 80px;
	}
}

/* Carrossel de Line-up */
.lineup-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(0, 255, 0, 0.2);
	box-shadow: 0 10px 40px rgba(0, 255, 0, 0.1);
	margin-top: 40px;
}

.lineup-carousel__track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	touch-action: pan-x pan-y pinch-zoom;
}

.lineup-carousel__slide {
	flex: 0 0 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.lineup-carousel__content {
	width: 100%;
	padding: 40px;
	text-align: center;
}

.lineup-carousel__content h3 {
	font-size: 2rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 30px;
	text-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

/* Layout horizontal para cards de palestrantes */
.speakers-horizontal {
	display: flex;
	gap: 30px;
	justify-content: center;
	align-items: stretch;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.speaker-card {
	display: flex;
	flex-direction: column;
	background: rgba(0, 0, 0, 0.8);
	border: 1px solid rgba(0, 255, 0, 0.2);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.3s ease;
	flex: 1;
	max-width: 300px;
	min-height: 400px;
	position: relative;
}

.speaker-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 255, 0, 0.3);
	border-color: var(--primary);
}

.speaker-card__photo {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.speaker-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.3s ease;
}

.speaker-card:hover .speaker-card__photo img {
	transform: scale(1.05);
}

.speaker-card__info {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.speaker-card__info h4 {
	color: var(--text);
	font-size: 1.3rem;
	font-weight: 600;
	margin: 0 0 8px;
	line-height: 1.2;
}

.speaker-card__title {
	color: var(--primary);
	font-size: 1rem;
	font-weight: 500;
	margin: 0 0 12px;
	text-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.speaker-card__description {
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.4;
	margin: 0;
	flex: 1;
}


/* Cards vazios para manter o layout */
.speaker-card--empty {
	visibility: hidden;
	pointer-events: none;
}

.speakers-grid .speaker {
	text-align: center;
	padding: 20px;
	background: rgba(0, 255, 0, 0.05);
	border: 1px solid rgba(0, 255, 0, 0.2);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.speakers-grid .speaker:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
	border-color: var(--primary);
}

.speakers-grid .speaker__photo {
	width: 100px;
	height: 100px;
	margin: 0 auto 15px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--primary);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.speakers-grid .speaker__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.speakers-grid .speaker:hover .speaker__photo img {
	transform: scale(1.1);
}

.speakers-grid .speaker h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 8px;
}

.speakers-grid .speaker p {
	color: var(--text);
	font-size: 0.8rem;
	line-height: 1.3;
}

.speakers-grid .speaker-single {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 20px;
	background: rgba(0, 255, 0, 0.05);
	border: 1px solid rgba(0, 255, 0, 0.2);
	border-radius: 12px;
	transition: all 0.3s ease;
	max-width: 500px;
	margin: 0 auto;
}

.speakers-grid .speaker-single:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
	border-color: var(--primary);
}

.speakers-grid .speaker-single__photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--primary);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
	flex-shrink: 0;
}

.speakers-grid .speaker-single__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.speakers-grid .speaker-single:hover .speaker-single__photo img {
	transform: scale(1.1);
}

.speakers-grid .speaker-single__info h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 8px;
}

.speakers-grid .speaker-single__info p {
	color: var(--text);
	font-size: 1rem;
	line-height: 1.4;
}

/* Controles do carrossel */
.lineup-carousel__controls {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}

.lineup-carousel__btn {
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.8);
	color: var(--primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	pointer-events: all;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 255, 0, 0.3);
}

.lineup-carousel__btn:hover {
	background: rgba(0, 255, 0, 0.1);
	border-color: var(--primary);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
	transform: scale(1.1);
}

.lineup-carousel__btn--prev {
	margin-left: 20px;
}

.lineup-carousel__btn--next {
	margin-right: 20px;
}

/* Indicadores */
.lineup-carousel__indicators {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.lineup-carousel__indicator {
	width: 12px;
	height: 12px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 255, 0, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.lineup-carousel__indicator.active {
	background: var(--primary);
	box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
	transform: scale(1.2);
}

.lineup-carousel__indicator:hover {
	background: var(--primary);
	transform: scale(1.1);
}

/* Responsividade do carrossel */
@media (max-width: 1024px) {
	.speakers-horizontal {
		gap: 20px;
		padding: 0 15px;
	}
	
	.speaker-card {
		max-width: 250px;
		min-height: 350px;
	}
	
	.speaker-card__photo {
		height: 180px;
	}
	
	.speaker-card__info {
		padding: 20px;
	}
	
	.speaker-card__info h4 {
		font-size: 1.2rem;
	}
	
	.speaker-card__title {
		font-size: 0.9rem;
	}
	
	.speaker-card__description {
		font-size: 0.85rem;
	}
	
	.lineup-carousel__content {
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.speakers-horizontal {
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}
	
	.speaker-card {
		max-width: 400px;
		width: 100%;
		min-height: 200px;
		flex-direction: row;
	}
	
	.speaker-card__photo {
		width: 150px;
		height: 150px;
		flex-shrink: 0;
	}
	
	.speaker-card__info {
		padding: 20px;
		justify-content: center;
	}
	
	.speaker-card__info h4 {
		font-size: 1.1rem;
	}
	
	.speaker-card__title {
		font-size: 0.9rem;
	}
	
	.speaker-card__description {
		font-size: 0.8rem;
	}
	
	.lineup-carousel__content {
		padding: 20px;
	}
	
	.lineup-carousel__content h3 {
		font-size: 1.5rem;
	}
	
	.lineup-carousel__controls {
		opacity: 0.1; /* Praticamente invisível */
		top: 20%; /* Movido mais para cima */
	}
	
	.lineup-carousel__btn {
		width: 40px;
		height: 40px;
		opacity: 0.1; /* Praticamente invisível */
	}
	
	.lineup-carousel__btn--prev {
		margin-left: 10px;
	}
	
	.lineup-carousel__btn--next {
		margin-right: 10px;
	}
}

@media (max-width: 480px) {
	.speakers-horizontal {
		padding: 0 10px;
	}
	
	.speaker-card {
		max-width: 100%;
		min-height: 180px;
	}
	
	.speaker-card__photo {
		width: 120px;
		height: 120px;
	}
	
	.speaker-card__info {
		padding: 15px;
	}
	
	.speaker-card__info h4 {
		font-size: 1rem;
	}
	
	.speaker-card__title {
		font-size: 0.8rem;
	}
	
	.speaker-card__description {
		font-size: 0.75rem;
	}
	
	.lineup-carousel__content {
		padding: 15px;
	}
	
	.lineup-carousel__content h3 {
		font-size: 1.3rem;
		margin-bottom: 20px;
	}
}




.btn--fex1 {
	background: var(--primary);
	color: #000000;
	border: 2px solid var(--primary);
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn--fex1:hover {
	background: transparent;
	color: var(--primary);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
	transform: translateY(-2px);
}

.btn--fex2 {
	background: transparent;
	color: var(--text);
	border: 2px solid var(--border);
	font-weight: 600;
	padding: 12px 24px;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.btn--fex2:hover {
	background: var(--primary);
	color: #000000;
	border-color: var(--primary);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
	transform: translateY(-2px);
}


.momento-card {
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(0, 255, 0, 0.2);
	border-radius: 16px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.momento-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0, 255, 0, 0.2);
	border-color: var(--primary);
	background: rgba(0, 0, 0, 0.8);
}

.momento-card__icon {
	width: 60px;
	height: 60px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.momento-card__icon span {
	color: #000000;
	font-size: 1.5rem;
	font-weight: 700;
}

.momento-card__title {
	color: var(--text);
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 10px;
}

.momento-card__subtitle {
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.4;
	margin: 0;
}

/* Video Carousel */

.momentos__video-track {
	position: relative;
	width: 100%;
	max-width: 400px;
	height: 600px;
	overflow: hidden;
	touch-action: pan-y pinch-zoom;
	margin: 0 auto;
	border-radius: 20px;
}

.momentos__video-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.3s ease;
	will-change: opacity;
}

.momentos__video-slide.active {
	opacity: 1;
}

.momentos__video-slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	background: #000;
}

.momentos__video-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	padding: 30px 20px 20px;
	color: white;
}

.momentos__video-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--primary);
	text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.momentos__video-description {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.4;
}

/* Video Controls */
.momentos__video-controls {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	z-index: 10;
	pointer-events: none;
}

.momentos__video-btn {
	background: rgba(0, 0, 0, 0.7);
	border: 2px solid rgba(0, 255, 0, 0.5);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: all !important;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	position: relative;
	z-index: 15;
}

.momentos__video-btn:hover {
	background: rgba(0, 255, 0, 0.2);
	border-color: var(--primary);
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.momentos__video-btn svg {
	width: 20px;
	height: 20px;
}

/* Play Control - Centered with Hover Effect */
.momentos__video-controls-top {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 15;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

/* Aparece sempre no hover, independente do estado do vídeo */
.momentos__video-carousel:hover .momentos__video-controls-top {
	opacity: 1;
	pointer-events: all;
}

.momentos__video-carousel:not(:hover) .momentos__video-controls-top {
	opacity: 0;
	pointer-events: none;
}

	/* Play control positioned in center of video */

.momentos__video-sound-control {
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 15;
}

.momentos__sound-btn {
	background: rgba(0, 0, 0, 0.7);
	border: 2px solid rgba(0, 255, 0, 0.5);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	cursor: pointer;
	transition: all 0.3s ease;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.momentos__sound-btn:hover {
	background: rgba(0, 255, 0, 0.2);
	border-color: var(--primary);
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.momentos__sound-btn svg {
	width: 20px;
	height: 20px;
}

.momentos__play-btn {
	background: rgba(0, 0, 0, 0.7);
	border: 2px solid rgba(0, 255, 0, 0.5);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	cursor: pointer;
	transition: all 0.3s ease;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.momentos__play-btn:hover {
	background: rgba(0, 255, 0, 0.2);
	border-color: var(--primary);
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

.momentos__play-btn svg {
	width: 20px;
	height: 20px;
}

/* Video Indicators */
.momentos__video-indicators {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.momentos__video-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: 2px solid rgba(0, 255, 0, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: all !important;
	position: relative;
	z-index: 15;
}

.momentos__video-indicator.active {
	background: var(--primary);
	border-color: var(--primary);
	box-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

.momentos__video-indicator:hover {
	background: rgba(0, 255, 0, 0.7);
	border-color: var(--primary);
}

/* Responsividade para Reviva os Momentos */
@media (max-width: 1024px) {
	.highlights__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
		margin: 40px 0;
		align-items: start;
		justify-items: center;
	}
	
	.highlight__content {
		height: 260px;
	}
	
	.highlight__icon {
		flex: 1;
		position: relative;
	}
	
	.highlight__title {
		font-size: 1.4rem;
		margin-bottom: 20px;
	}
	
	.local__content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.momentos__cards {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.momentos__title {
		font-size: 2.5rem;
	}
	
	.momentos__video-track {
		max-width: 350px;
		height: 500px;
	}
	
	.momentos__video-btn {
		width: 45px;
		height: 45px;
	}
	
	.momentos__video-btn svg {
		width: 18px;
		height: 18px;
	}
	
	.momentos__video-carousel {
		padding-bottom: 120px;
	}
	
	.momentos__video-sound-control {
		bottom: 20px;
		right: 15px;
	}
	
	.momentos__sound-btn {
		width: 45px;
		height: 45px;
		bottom: 15px;
		right: 15px;
	}
	
	.momentos__sound-btn svg {
		width: 18px;
		height: 18px;
	}
	
	.momentos__play-btn {
		width: 50px;
		height: 50px;
	}
	
	.momentos__play-btn svg {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 768px) {
	.momentos__title {
		font-size: 2rem;
	}
	
	.momentos__video-track {
		max-width: 300px;
		height: 400px;
	}
	
	.momentos__video-controls {
		padding: 0 15px;
		opacity: 0.1; /* Praticamente invisível */
		top: 20%; /* Movido mais para cima */
	}
	
	.momentos__video-btn {
		width: 40px;
		height: 40px;
		opacity: 0.1; /* Praticamente invisível */
	}
	
	.momentos__video-btn svg {
		width: 16px;
		height: 16px;
	}
	
	.momentos__video-carousel {
		padding-bottom: 120px;
	}
	
	.momentos__video-sound-control {
		bottom: 20px;
		right: 10px;
	}
	
	.momentos__sound-btn {
		width: 40px;
		height: 40px;
		bottom: 10px;
		right: 10px;
	}
	
	.momentos__sound-btn svg {
		width: 16px;
		height: 16px;
	}
	
	.momentos__play-btn {
		width: 45px;
		height: 45px;
	}
	
	.momentos__play-btn svg {
		width: 18px;
		height: 18px;
	}
	
	.momentos__video-info {
		padding: 20px 15px 15px;
	}
	
	.momentos__video-title {
		font-size: 1.2rem;
	}
	
	.momentos__video-description {
		font-size: 0.9rem;
	}
	
	.momentos__subtitle {
		font-size: 1rem;
	}
	
	.momentos__buttons {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}
	
	.btn--fex1,
	.btn--fex2 {
		width: 100%;
		max-width: 300px;
	}
	
	.momentos__cards {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.momento-card {
		padding: 25px 20px;
	}
}

@media (max-width: 480px) {
	.momentos__title {
		font-size: 1.8rem;
	}
	
	.momento-card__icon {
		width: 50px;
		height: 50px;
	}
	
	.momento-card__icon span {
		font-size: 1.2rem;
	}
	
	.momento-card__title {
		font-size: 1.1rem;
	}
	
	.momento-card__subtitle {
		font-size: 0.85rem;
	}
}

/* Networking Section */
.networking { 
	position: relative; 
	overflow: hidden; 
}

.networking::before {
	content: '';
	position: absolute;
	inset: 0;
	background: transparent;
	pointer-events: none;
}

.networking__content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.networking__text {
	z-index: 2;
}

.networking__features {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-bottom: 40px;
}

.networking__feature {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.6);
	border: 1px solid rgba(0, 255, 0, 0.2);
	border-radius: 12px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.networking__feature:hover {
	transform: translateX(10px);
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(0, 255, 0, 0.2);
	background: rgba(0, 0, 0, 0.8);
}

.feature__icon {
	font-size: 2rem;
	filter: drop-shadow(0 0 15px var(--primary));
	flex-shrink: 0;
}

.networking__feature h3 {
	color: var(--primary);
	font-size: 1.2rem;
	margin: 0 0 8px;
	font-weight: 600;
	white-space: nowrap;
}

.networking__feature p {
	color: var(--muted);
	margin: 0;
	line-height: 1.5;
	font-size: 0.95rem;
}

.networking__cta {
	margin-top: 20px;
}

.networking__visual {
	position: relative;
	z-index: 2;
}

.networking__image-container {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
	border: 2px solid rgba(0, 255, 0, 0.3);
}

.networking__image {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.networking__image-container:hover .networking__image {
	transform: scale(1.05);
}

.networking__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
	padding: 40px 30px 30px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.networking__image-container:hover .networking__overlay {
	transform: translateY(0);
}

.overlay__content h3 {
	color: var(--primary);
	font-size: 1.4rem;
	margin: 0 0 10px;
	font-weight: 600;
	text-shadow: 0 0 20px var(--primary);
}

.overlay__content p {
	color: var(--text);
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Efeitos tecnológicos para a seção */
.networking::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--primary), transparent);
	animation: scan-line 3s ease-in-out infinite;
}

@keyframes scan-line {
	0%, 100% { opacity: 0; transform: translateX(-100%); }
	50% { opacity: 1; transform: translateX(100%); }
}

@media (max-width: 1024px) {
	.networking__content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.networking__visual {
		order: -1;
	}
}

@media (max-width: 768px) {
	.networking__features {
		gap: 20px;
	}
	
	.networking__feature {
		padding: 16px;
	}
	
	.feature__icon {
		font-size: 1.5rem;
	}
	
	.networking__overlay {
		padding: 30px 20px 20px;
	}
	
	.overlay__content h3 {
		font-size: 1.2rem;
	}
	
	/* Remove hyperlink from CEP on mobile */
	.local__info p {
		color: var(--text) !important;
		text-decoration: none !important;
	}
	
	.local__info p strong {
		color: var(--primary) !important;
	}
}

/* Form */
.form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 12px; }
.form__row { display: flex; flex-direction: column; gap: 8px; }
.form label { color: var(--muted); }
.form input, .form select { background: var(--bg-elev); color: var(--text); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; font-size: 1rem; }
.form input:focus, .form select:focus { outline: none; border-color: rgba(0,255,0,0.45); box-shadow: var(--primary-glow); }
.form__actions { grid-column: 1 / -1; display: flex; gap: 16px; align-items: center; }
.form__hint { color: var(--muted); margin: 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border: none; border-radius: 8px; font-family: inherit; font-size: 1rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--primary), var(--primary-700)); color: #021812; box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 255, 0, 0.3); }
.btn:active { transform: translateY(0); }
.btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transform: translateX(-100%); transition: transform 0.6s ease; }
.btn:hover::before { transform: translateX(100%); }

.btn--ghost { background: transparent; color: var(--primary); border: 1px solid var(--primary); box-shadow: 0 2px 8px rgba(0, 255, 0, 0.1); }
.btn--ghost:hover { background: rgba(0, 255, 0, 0.1); color: var(--text); box-shadow: 0 4px 16px rgba(0, 255, 0, 0.2); }

.btn--small { padding: 8px 16px; font-size: 0.9rem; }

.btn .ripple { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.6); transform: scale(0); animation: ripple 0.6s linear; pointer-events: none; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Reveal variants */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 420ms ease, transform 420ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-anim="up"] { transform: translateY(18px); }
.reveal[data-anim="left"] { transform: translateX(-18px); }
.reveal[data-anim="right"] { transform: translateX(18px); }

/* Mobile fallback - show all elements immediately */
@media (max-width: 768px) {
	.highlights__grid {
		grid-template-columns: 1fr;
		gap: 25px;
		margin: 40px 0;
		align-items: start;
		justify-items: center;
	}
	
	.highlight__content {
		height: 220px;
		animation: none; /* Remove floating animation on mobile */
	}
	
	.highlight__icon {
		flex: 1;
		position: relative;
	}
	
	.highlight__title {
		font-size: 1.5rem;
		margin-bottom: 20px;
	}
	
	.highlight__content p {
		font-size: 0.95rem;
	}
	
	.highlights__cta {
		margin-top: 40px;
		animation: none; /* Remove floating animation on mobile */
	}
	
	
	.reveal {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}
	
	/* Ensure all sections are visible */
	section {
		opacity: 1 !important;
		visibility: visible !important;
	}
	
	/* Ensure all containers are visible */
	.container {
		opacity: 1 !important;
		visibility: visible !important;
	}
	
	/* Ensure all content is visible */
	.hero__content,
	.evento__content,
	.lineup__content,
	.highlights__content,
	.local__content,
	.networking__content,
	.form-section__content {
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
	}
}

.reveal[data-anim="scale"] { transform: scale(0.96); }
.reveal.is-visible[data-anim="left"],
.reveal.is-visible[data-anim="right"],
.reveal.is-visible[data-anim="up"],
.reveal.is-visible[data-anim="scale"] { transform: none; }

/* Optional stagger via CSS variable */
.reveal { transition-delay: var(--reveal-delay, 0ms); }

/* iOS/Safari specific fixes */
@supports (-webkit-touch-callout: none) {
	/* iOS Safari specific styles */
	.hero__content {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	
	.speaker-card {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

/* Responsive */
@media (max-width: 960px) {
	.hero__grid { grid-template-columns: 1fr; min-height: 480px; }
	.hero__visual { order: -1; height: 340px; }
	.speakers { grid-template-columns: repeat(2, 1fr); }
	.benefits { grid-template-columns: 1fr; }
	.form { grid-template-columns: 1fr; }
	.footer__grid { grid-template-columns: 1fr; }
	.nav ul { display: none; position: absolute; right: 4%; top: 58px; flex-direction: column; background: var(--bg-elev); border: 1px solid var(--border); padding: 10px; border-radius: 10px; }
	.nav__toggle { display: inline-block; }
	.carousel__control { 
		padding: 8px 10px; 
		opacity: 0.1; /* Praticamente invisível */
		top: 20%; /* Movido mais para cima */
	}
	.hero__content { padding: 14px; border-radius: 14px; }
	/* keep main subject centered on mobile to avoid cropping faces */
	.hero__bg { object-position: 50% 40%; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
	.btn:hover, .btn:active { transform: none !important; box-shadow: var(--primary-glow); }
} 

/* Skeleton Screen Styles */
.skeleton { 
	background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%); 
	background-size: 200% 100%; 
	animation: skeleton-loading 1.5s infinite; 
	border-radius: 8px; 
}

@keyframes skeleton-loading { 
	0% { background-position: 200% 0; } 
	100% { background-position: -200% 0; } 
}

.skeleton-header { height: 80px; width: 100%; margin-bottom: 20px; }
.skeleton-video { height: 100vh; width: 100%; }
.skeleton-title { height: 40px; width: 60%; margin: 20px 0; }
.skeleton-subtitle { height: 24px; width: 80%; margin: 10px 0; }
.skeleton-text { height: 16px; width: 100%; margin: 8px 0; }
.skeleton-text.short { width: 60%; }
.skeleton-text.medium { width: 80%; }
.skeleton-card { height: 300px; width: 100%; margin: 20px 0; }
.skeleton-speaker { height: 250px; width: 200px; margin: 10px; display: inline-block; }
.skeleton-button { height: 50px; width: 200px; margin: 20px 0; }
.skeleton-image { height: 200px; width: 200px; border-radius: 50%; }
.skeleton-video-thumb { height: 200px; width: 100%; margin: 10px 0; }

/* Skeleton containers */
.skeleton-container { padding: 20px; }
.skeleton-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.skeleton-flex { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }

/* Mobile skeleton optimizations */
@media (max-width: 768px) {
	.skeleton-container { padding: 15px; }
	.skeleton-grid { grid-template-columns: 1fr; gap: 15px; }
	.skeleton-flex { flex-direction: column; gap: 15px; }
	.skeleton-speaker { width: 100%; max-width: 250px; }
	.skeleton-title { width: 80%; }
	.skeleton-subtitle { width: 90%; }
}

/* Hide real content initially */
.content-hidden { 
	opacity: 0 !important; 
	visibility: hidden !important; 
}

.skeleton-visible { 
	opacity: 1 !important; 
	visibility: visible !important; 
}

/* Avatar utilities */
.avatar--sm { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); display: block; }
@media (max-width: 960px) {
	.avatar--sm { width: 48px; height: 48px; }
} 

/* Popup modals */
.popup { 
	position: fixed; 
	inset: 0; 
	z-index: 10000; 
	display: none; 
	place-items: center; 
	background: rgba(0,0,0,0.8); 
	-webkit-backdrop-filter: blur(4px); 
	backdrop-filter: blur(4px); 
}

.popup.is-active { 
	display: grid; 
	animation: popup-fade-in 0.4s ease; 
}

.popup--success .popup__content {
	background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
	border: 2px solid var(--primary);
	border-radius: 20px;
	padding: 0;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	position: relative;
	transform: scale(0.7) translateY(50px);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(0, 255, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.popup--success.is-active .popup__content {
	transform: scale(1) translateY(0);
}

.popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.popup__content { 
	background: var(--bg-elev); 
	border: 1px solid var(--border); 
	border-radius: 16px; 
	padding: 24px; 
	max-width: 420px; 
	width: 90%; 
	text-align: center; 
	position: relative; 
	transform: scale(0.9); 
	animation: popup-scale-in 0.3s ease; 
}

.popup__icon { 
	width: 64px; 
	height: 64px; 
	margin: 0 auto 16px; 
	border-radius: 50%; 
	display: grid; 
	place-items: center; 
	font-size: 2rem; 
}

.popup__checkmark {
	display: inline-block;
	animation: checkmark-bounce 0.6s ease-out 0.3s both;
}

@keyframes checkmark-bounce {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.popup__icon.success { 
	background: linear-gradient(180deg, var(--primary), var(--primary-700)); 
	color: #021812; 
}

.popup__icon.error { 
	background: linear-gradient(180deg, var(--danger), #cc4455); 
	color: white; 
}

/* Disable browser validation styling */
input:invalid {
	box-shadow: none !important;
	outline: none !important;
}

input:invalid:focus {
	box-shadow: none !important;
	outline: none !important;
}

/* Email error popup specific styling - same as general error popup */
#emailErrorPopup {
	z-index: 10001 !important;
}

#emailErrorPopup.is-active {
	display: grid !important;
	animation: popup-fade-in 0.4s ease !important;
}

#emailErrorPopup .popup__content {
	background: linear-gradient(135deg, #0a0a0a, #1a1a1a) !important;
	border: 2px solid #ff4444 !important;
	border-radius: 20px !important;
	padding: 0 !important;
	max-width: 500px !important;
	width: 90% !important;
	position: relative !important;
	transform: scale(0.7) translateY(50px) !important;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(255, 68, 68, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
	overflow: hidden !important;
}

#emailErrorPopup.is-active .popup__content {
	transform: scale(1) translateY(0) !important;
}

#emailErrorPopup .popup__icon.error { 
	background: linear-gradient(180deg, var(--danger), #cc4455); 
	color: white; 
}

#emailErrorPopup .popup__title {
	color: #ff4444 !important;
	font-size: 2rem !important;
	font-weight: 800 !important;
	text-shadow: 0 0 20px rgba(255, 68, 68, 0.5) !important;
	animation: title-glow 0.8s ease-out 0.5s both !important;
}

#emailErrorPopup .popup__error-item {
	background: rgba(255, 68, 68, 0.1);
	border: 1px solid rgba(255, 68, 68, 0.3);
	border-radius: 8px;
	padding: 15px;
	margin: 15px 0;
	color: #ff4444;
	font-weight: 600;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 8px;
}

#emailErrorPopup .popup__error-item::before {
	content: "✗";
	color: #ff4444;
	font-weight: bold;
}

/* Enrollment closed popup styling - FEX Experience Identity */
#enrollmentClosedPopup {
	z-index: 10002 !important;
}

#enrollmentClosedPopup.is-active {
	display: grid !important;
	animation: popup-fade-in 0.6s ease !important;
}

#enrollmentClosedPopup .popup__content {
	background: linear-gradient(135deg, #000000, #0a0a0a, #1a1a1a) !important;
	border: 2px solid var(--primary) !important;
	border-radius: 24px !important;
	padding: 0 !important;
	max-width: 600px !important;
	width: 95% !important;
	max-height: 90vh !important;
	position: relative !important;
	transform: scale(0.8) translateY(60px) !important;
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
	box-shadow: 
		0 25px 50px rgba(0, 0, 0, 0.8),
		0 0 40px rgba(0, 255, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
	overflow: hidden !important;
	display: flex !important;
	flex-direction: column !important;
}

#enrollmentClosedPopup.is-active .popup__content {
	transform: scale(1) translateY(0) !important;
}

/* Animated Background Elements */
.popup__bg-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.popup__bg-circle {
	position: absolute;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 255, 0, 0.1), transparent);
	animation: float-bg 6s ease-in-out infinite;
}

.popup__bg-circle--1 {
	width: 120px;
	height: 120px;
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.popup__bg-circle--2 {
	width: 80px;
	height: 80px;
	top: 60%;
	right: 15%;
	animation-delay: 2s;
}

.popup__bg-circle--3 {
	width: 100px;
	height: 100px;
	bottom: 20%;
	left: 20%;
	animation-delay: 4s;
}

@keyframes float-bg {
	0%, 100% {
		transform: translateY(0px) scale(1);
		opacity: 0.3;
	}
	50% {
		transform: translateY(-20px) scale(1.1);
		opacity: 0.6;
	}
}

/* Icon Styling */
#enrollmentClosedPopup .popup__icon {
	flex-shrink: 0;
	padding: 20px;
	text-align: center;
	background: rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.popup__closed-icon {
	position: relative;
	display: inline-block;
	animation: icon-entrance 0.8s ease-out 0.3s both;
}

.popup__icon-bg {
	position: relative;
	z-index: 2;
}

.popup__icon-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: 100px;
	border: 2px solid var(--primary);
	border-radius: 50%;
	animation: pulse-ring 2s ease-out infinite;
}

@keyframes icon-entrance {
	0% {
		transform: scale(0) rotate(180deg);
		opacity: 0;
	}
	50% {
		transform: scale(1.2) rotate(90deg);
		opacity: 0.8;
	}
	100% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
}

@keyframes pulse-ring {
	0% {
		transform: translate(-50%, -50%) scale(0.8);
		opacity: 1;
	}
	100% {
		transform: translate(-50%, -50%) scale(1.4);
		opacity: 0;
	}
}

/* Title Styling */
#enrollmentClosedPopup .popup__title {
	text-align: center;
	margin-bottom: 20px;
	flex-shrink: 0;
}

.popup__title-main {
	display: block;
	color: var(--primary) !important;
	font-size: 2.2rem !important;
	font-weight: 900 !important;
	text-shadow: 0 0 30px rgba(0, 255, 0, 0.6) !important;
	animation: title-glow 1s ease-out 0.8s both !important;
	margin-bottom: 8px;
}

.popup__title-sub {
	display: block;
	color: #888 !important;
	font-size: 1.1rem !important;
	font-weight: 500 !important;
	animation: subtitle-fade 0.8s ease-out 1.2s both !important;
}

@keyframes title-glow {
	0% {
		opacity: 0;
		transform: translateY(20px);
		text-shadow: 0 0 0px rgba(0, 255, 0, 0);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
		text-shadow: 0 0 30px rgba(0, 255, 0, 0.6);
	}
}

@keyframes subtitle-fade {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Scrollable Content Area */
#enrollmentClosedPopup .popup__text {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	max-height: calc(90vh - 120px);
}

#enrollmentClosedPopup .popup__text::-webkit-scrollbar {
	width: 8px;
}

#enrollmentClosedPopup .popup__text::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 4px;
}

#enrollmentClosedPopup .popup__text::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 4px;
	transition: all 0.3s ease;
}

#enrollmentClosedPopup .popup__text::-webkit-scrollbar-thumb:hover {
	background: #00ff00;
	box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

/* Message Styling */
.popup__message {
	background: linear-gradient(135deg, rgba(0, 255, 0, 0.05), rgba(0, 255, 0, 0.02));
	border: 1px solid rgba(0, 255, 0, 0.2);
	border-radius: 16px;
	padding: 24px;
	margin: 20px 0;
	color: #e0e0e0;
	font-weight: 400;
	text-align: left;
	line-height: 1.7;
	animation: message-slide 0.8s ease-out 1.4s both;
}

@keyframes message-slide {
	0% {
		opacity: 0;
		transform: translateX(-30px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.popup__message-intro {
	font-size: 1.1rem;
	color: var(--primary);
	font-weight: 600;
	margin-bottom: 16px;
	text-align: center;
}

.popup__message-content p {
	margin: 12px 0;
	color: #d0d0d0;
}

.popup__message-content strong {
	color: #fff;
	font-weight: 700;
}

/* Features Grid */
.popup__features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	margin: 20px 0;
}

.popup__feature {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(0, 255, 0, 0.08);
	border: 1px solid rgba(0, 255, 0, 0.15);
	border-radius: 12px;
	transition: all 0.3s ease;
	animation: feature-fade 0.6s ease-out both;
}

.popup__feature:nth-child(1) { animation-delay: 1.6s; }
.popup__feature:nth-child(2) { animation-delay: 1.8s; }
.popup__feature:nth-child(3) { animation-delay: 2.0s; }

.popup__feature:hover {
	background: rgba(0, 255, 0, 0.12);
	border-color: rgba(0, 255, 0, 0.25);
	transform: translateX(5px);
}

.popup__feature-icon {
	font-size: 1.5rem;
	filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.4));
}

@keyframes feature-fade {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Event Info */
.popup__event-info {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(0, 255, 0, 0.1);
	border-radius: 12px;
	padding: 16px;
	margin: 20px 0;
}

.popup__info-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid rgba(0, 255, 0, 0.1);
	animation: info-slide 0.5s ease-out both;
}

.popup__info-item:last-child {
	border-bottom: none;
}

.popup__info-item:nth-child(1) { animation-delay: 2.2s; }
.popup__info-item:nth-child(2) { animation-delay: 2.4s; }
.popup__info-item:nth-child(3) { animation-delay: 2.6s; }

.popup__info-label {
	color: var(--primary);
	font-weight: 600;
	font-size: 0.95rem;
}

.popup__info-value {
	color: #fff;
	font-weight: 500;
}

@keyframes info-slide {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Message Footer */
.popup__message-footer {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 255, 0, 0.1);
	text-align: center;
	animation: footer-fade 0.6s ease-out 2.8s both;
}

.popup__link {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.popup__link:hover {
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 255, 0, 0.6);
}

@keyframes footer-fade {
	0% {
		opacity: 0;
		transform: translateY(15px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Footer Styling */
#enrollmentClosedPopup .popup__footer {
	flex-shrink: 0;
	padding: 20px;
	background: rgba(0, 0, 0, 0.5);
	border-top: 1px solid rgba(0, 255, 0, 0.2);
}

/* Button Styling */
.popup__btn {
	background: linear-gradient(135deg, var(--primary), #00cc00) !important;
	color: #000 !important;
	border: 2px solid var(--primary) !important;
	box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4) !important;
	font-weight: 700 !important;
	font-size: 1.1rem !important;
	padding: 16px 32px !important;
	border-radius: 12px !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	transition: all 0.3s ease !important;
	animation: button-bounce 0.8s ease-out 3.2s both !important;
	width: 100% !important;
	justify-content: center !important;
}

.popup__btn:hover {
	background: linear-gradient(135deg, #00ff00, var(--primary)) !important;
	transform: translateY(-3px) !important;
	box-shadow: 0 8px 25px rgba(0, 255, 0, 0.5) !important;
}

.popup__btn-icon {
	font-size: 1.2rem;
	animation: icon-sparkle 2s ease-in-out infinite;
}

@keyframes button-bounce {
	0% {
		opacity: 0;
		transform: translateY(20px) scale(0.9);
	}
	50% {
		transform: translateY(-5px) scale(1.05);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes icon-sparkle {
	0%, 100% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(1.2) rotate(180deg);
	}
}

/* Responsive adjustments for enrollment popup */
@media (max-width: 768px) {
	#enrollmentClosedPopup .popup__content {
		max-width: 95% !important;
		max-height: 95vh !important;
		width: 95% !important;
	}
	
	#enrollmentClosedPopup .popup__text {
		max-height: calc(95vh - 140px);
		padding: 15px;
	}
	
	.popup__title-main {
		font-size: 1.8rem !important;
	}
	
	.popup__title-sub {
		font-size: 1rem !important;
	}
	
	.popup__message {
		padding: 16px;
		margin: 15px 0;
	}
	
	.popup__feature {
		padding: 10px 12px;
	}
	
	.popup__event-info {
		padding: 12px;
	}
	
	.popup__btn {
		padding: 14px 24px !important;
		font-size: 1rem !important;
	}
}

@media (max-width: 480px) {
	#enrollmentClosedPopup .popup__content {
		max-height: 98vh !important;
		border-radius: 16px !important;
	}
	
	#enrollmentClosedPopup .popup__text {
		max-height: calc(98vh - 120px);
		padding: 12px;
	}
	
	.popup__title-main {
		font-size: 1.6rem !important;
	}
	
	.popup__message {
		padding: 12px;
		margin: 12px 0;
	}
	
	.popup__feature {
		padding: 8px 10px;
		font-size: 0.9rem;
	}
	
	.popup__event-info {
		padding: 10px;
	}
	
	.popup__info-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
	
	.popup__btn {
		padding: 12px 20px !important;
		font-size: 0.95rem !important;
	}
}

.popup__title { 
	font-family: "Space Grotesk"; 
	font-size: 1.4rem; 
	margin: 0 0 12px; 
}

.popup--success .popup__title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--primary);
	text-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
	animation: title-glow 0.8s ease-out 0.5s both;
}

@keyframes title-glow {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.popup__subtitle {
	font-size: 1.1rem;
	color: var(--text);
	margin: 0 0 20px;
	font-weight: 500;
	animation: subtitle-fade 0.8s ease-out 0.7s both;
}

@keyframes subtitle-fade {
	0% {
		opacity: 0;
		transform: translateY(15px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.popup__message { 
	color: var(--muted); 
	margin: 0 0 20px; 
	line-height: 1.5; 
}

.popup--success .popup__message {
	line-height: 1.6;
	font-size: 1rem;
	animation: message-fade 0.8s ease-out 0.9s both;
}

/* Scrollable content area for success popup */
.popup--success .popup__text {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	max-height: calc(90vh - 120px);
}

.popup--success .popup__text::-webkit-scrollbar {
	width: 8px;
}

.popup--success .popup__text::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 4px;
}

.popup--success .popup__text::-webkit-scrollbar-thumb {
	background: var(--primary);
	border-radius: 4px;
	transition: all 0.3s ease;
}

.popup--success .popup__text::-webkit-scrollbar-thumb:hover {
	background: #00ff00;
	box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

@keyframes message-fade {
	0% {
		opacity: 0;
		transform: translateY(15px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.popup__details {
	background: rgba(0, 255, 0, 0.05);
	border: 1px solid rgba(0, 255, 0, 0.2);
	border-radius: 12px;
	padding: 20px;
	margin: 0 0 30px;
	text-align: left;
	animation: details-fade 0.8s ease-out 1.1s both;
}

@keyframes details-fade {
	0% {
		opacity: 0;
		transform: translateY(15px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.popup__details p {
	margin: 0 0 12px;
	font-size: 0.9rem;
	line-height: 1.5;
}

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

.popup__details strong {
	color: var(--primary);
}

.popup__footer {
	padding: 0 40px 40px;
	text-align: center;
	animation: footer-fade 0.8s ease-out 1.3s both;
}

@keyframes footer-fade {
	0% {
		opacity: 0;
		transform: translateY(15px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.popup__btn {
	background: var(--primary);
	color: #000;
	border: none;
	border-radius: 25px;
	padding: 12px 30px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.popup__btn:hover {
	background: #00e600;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
}

.popup__close { 
	position: absolute; 
	top: 16px; 
	right: 16px; 
	background: transparent; 
	color: var(--muted); 
	border: none; 
	font-size: 1.5rem; 
	cursor: pointer; 
	padding: 4px; 
	border-radius: 6px; 
	transition: 200ms ease; 
}

.popup--success .popup__close {
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.2);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	top: 20px;
	right: 20px;
}

.popup__close:hover { 
	color: var(--text); 
	background: rgba(255,255,255,0.04); 
}

.popup--success .popup__close:hover {
	background: rgba(255, 68, 68, 0.2);
	border-color: #ff4444;
	color: #ff4444;
	transform: rotate(90deg);
}

/* Error popup styles */
.popup--error .popup__content {
	background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
	border: 2px solid #ff4444;
	border-radius: 20px;
	padding: 0;
	max-width: 500px;
	width: 90%;
	position: relative;
	transform: scale(0.7) translateY(50px);
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 
		0 20px 40px rgba(0, 0, 0, 0.5),
		0 0 30px rgba(255, 68, 68, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.popup--error.is-active .popup__content {
	transform: scale(1) translateY(0);
}

.popup--error .popup__title {
	font-size: 2rem;
	font-weight: 800;
	color: #ff4444;
	text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
	animation: title-glow 0.8s ease-out 0.5s both;
}

.popup__error-icon {
	display: inline-block;
	animation: error-bounce 0.6s ease-out 0.3s both;
}

@keyframes error-bounce {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.popup__errors {
	background: rgba(255, 68, 68, 0.05);
	border: 1px solid rgba(255, 68, 68, 0.2);
	border-radius: 12px;
	padding: 20px;
	margin: 20px 0;
	text-align: left;
	animation: details-fade 0.8s ease-out 1.1s both;
}

.popup__errors ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.popup__errors li {
	padding: 8px 0;
	color: #ffffff;
	font-size: 0.95rem;
	line-height: 1.5;
	position: relative;
	padding-left: 25px;
}

.popup__errors li::before {
	content: '✗';
	position: absolute;
	left: 0;
	color: #ff4444;
	font-weight: bold;
	font-size: 1.1rem;
}

.popup--error .popup__close {
	background: rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.2);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	top: 20px;
	right: 20px;
}

.popup--error .popup__close:hover {
	background: rgba(255, 68, 68, 0.2);
	border-color: #ff4444;
	color: #ff4444;
	transform: rotate(90deg);
}

.popup--error .popup__btn {
	background: #ff4444;
	color: #fff;
	border: 2px solid #ff4444;
	box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.popup--error .popup__btn:hover {
	background: #ff6666;
	border-color: #ff6666;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
}

@keyframes popup-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes popup-scale-in { from { transform: scale(0.9); } to { transform: scale(1); } }

/* Maps link styling */
.maps-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); text-decoration: none; font-weight: 600; padding: 8px 12px; border-radius: 8px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.maps-link:hover { color: var(--text); background: rgba(0, 255, 0, 0.1); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 255, 0, 0.2); }
.maps-link:active { transform: translateY(0); }
.maps-link::before { content: '📍'; font-size: 1.2em; transition: transform 0.3s ease; }
.maps-link:hover::before { transform: scale(1.2) rotate(5deg); }
.maps-link::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent); transform: translateX(-100%); transition: transform 0.6s ease; }
.maps-link:hover::after { transform: translateX(100%); } 

/* Scroll to top button */
.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--primary);
	color: #000;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 255, 0, 0.3);
	transition: all 0.3s ease;
	z-index: 1000;
}

.scroll-to-top:hover {
	background: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 6px 25px rgba(0, 255, 0, 0.4);
}

.scroll-to-top.show {
	display: flex;
}

/* Footer */
.footer { background: var(--bg-elev); border-top: 1px solid var(--border); padding: 48px 0 24px; margin-top: 80px; }
.footer__content { display: grid; grid-template-columns: 1fr auto auto; gap: 40px; margin-bottom: 32px; }
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__brand-text { display: flex; flex-direction: row; gap: 8px; align-items: center; }
.footer__brand-main { font-family: "Space Grotesk", sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--primary); text-shadow: 0 0 8px var(--primary); }
.footer__brand-sub { font-size: 1.4rem; color: var(--text); font-weight: 500; }
.footer__tagline { color: var(--muted); font-size: 0.9rem; margin: 0; }
.footer__realizacoes h4 { color: var(--primary); font-size: 1.1rem; margin: 0 0 16px; font-weight: 600; }
.footer__realizacoes ul { list-style: none; padding: 0; margin: 0; }
.footer__realizacoes li { margin-bottom: 8px; }
.footer__realizacoes a { color: var(--muted); text-decoration: none; transition: color 0.3s ease; }
.footer__realizacoes a:hover { color: var(--primary); }
.footer__social { display: flex; gap: 16px; }
.social-link { display: flex; align-items: center; gap: 8px; color: var(--muted); text-decoration: none; padding: 8px 12px; border-radius: 8px; transition: all 0.3s ease; }
.social-link:hover { color: var(--primary); background: rgba(0, 255, 0, 0.05); transform: translateY(-2px); }
.social-link svg { transition: transform 0.3s ease; }
.social-link:hover svg { transform: scale(1.1); }
.footer__bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer__legal-links { display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer__legal { color: var(--muted); font-size: 0.85rem; margin: 0; }
.footer__privacy-link { color: var(--primary); text-decoration: none; font-size: 0.85rem; transition: all 0.3s ease; }
.footer__privacy-link:hover { color: #00e600; text-shadow: 0 0 10px var(--primary); }

/* Cookie Consent Popup */
.cookie-consent {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 20, 0, 0.95));
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 255, 0, 0.3);
	border-radius: 20px;
	padding: 0;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 255, 0, 0.1);
}

.cookie-consent.show {
	transform: translateY(0);
	opacity: 1;
}

.cookie-consent.hide {
	transform: translateY(100px);
	opacity: 0;
}

.cookie-consent__content {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
}

.cookie-consent__icon {
	flex-shrink: 0;
	color: var(--primary);
	animation: cookiePulse 2s ease-in-out infinite;
}

@keyframes cookiePulse {
	0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px var(--primary)); }
	50% { transform: scale(1.1); filter: drop-shadow(0 0 20px var(--primary)); }
}

.cookie-consent__text {
	flex: 1;
}

.cookie-consent__text h3 {
	color: var(--primary);
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 8px 0;
	text-shadow: 0 0 10px var(--primary);
}

.cookie-consent__text p {
	color: var(--text);
	font-size: 0.9rem;
	line-height: 1.4;
	margin: 0;
}

.cookie-consent__text a {
	color: var(--primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

.cookie-consent__text a:hover {
	color: #00e600;
	text-shadow: 0 0 10px var(--primary);
}

.cookie-consent__actions {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-consent__btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.cookie-consent__btn::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 ease;
}

.cookie-consent__btn:hover::before {
	left: 100%;
}

.cookie-consent__btn--accept {
	background: linear-gradient(135deg, var(--primary), #00e600);
	color: #000;
	box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.cookie-consent__btn--accept:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
}

.cookie-consent__btn--decline {
	background: rgba(255, 255, 255, 0.1);
	color: var(--text);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent__btn--decline:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

/* Cookie Floating Button */
.cookie-floating-btn {
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 9999;
}

.cookie-floating-btn__button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(0, 255, 0, 0.2);
	border: 1px solid rgba(0, 255, 0, 0.4);
	color: var(--primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 255, 0, 0.2);
	transition: all 0.3s ease;
	animation: float 4s ease-in-out infinite;
	backdrop-filter: blur(10px);
}

.cookie-floating-btn__button:hover {
	transform: translateY(-2px) scale(1.05);
	background: rgba(0, 255, 0, 0.3);
	box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.cookie-floating-btn__button:active {
	transform: translateY(-1px) scale(1.05);
}

/* Scroll to Top Button */
.scroll-to-top-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10000;
	display: none;
}

.scroll-to-top-btn__button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(0, 255, 0, 0.2);
	border: 1px solid rgba(0, 255, 0, 0.4);
	color: var(--primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 255, 0, 0.2);
	transition: all 0.3s ease;
	animation: float 4s ease-in-out infinite;
	backdrop-filter: blur(10px);
}

.scroll-to-top-btn__button:hover {
	transform: translateY(-2px) scale(1.05);
	background: rgba(0, 255, 0, 0.3);
	box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.scroll-to-top-btn__button:active {
	transform: translateY(-1px) scale(1.05);
}
@media (max-width: 768px) {
	.footer__content { grid-template-columns: 1fr; gap: 24px; text-align: center; }
	.footer__social { justify-content: center; }
	.footer__brand-text { justify-content: center; }
	
	.cookie-consent {
		bottom: 10px;
		left: 10px;
		right: 10px;
	}
	
	.cookie-consent__content {
		flex-direction: column;
		text-align: center;
		gap: 15px;
		padding: 15px;
	}
	
	.cookie-consent__actions {
		width: 100%;
		justify-content: center;
	}
	
	.cookie-consent__btn {
		flex: 1;
		justify-content: center;
	}
	
	/* Mobile improvements */
	.hero { 
		padding: 0 0 60px !important; /* Remove padding superior para encostar no header */
		margin-top: 0 !important;
		top: 0 !important;
		position: relative !important;
		z-index: 1 !important;
	}
	.hero__title { font-size: 2rem; line-height: 1.2; }
	.hero__subtitle { font-size: 1.1rem; }
	.hero__content { padding: 20px; margin: 0 16px; }
	
	.section { padding: 40px 0; }
	.section__title { font-size: 1.8rem; }
	
	.carousel { margin: 0 -16px; }
	.carousel__slide img { aspect-ratio: 4/3; }
	
	.speakers { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.speaker img { height: 180px; }
	
	.form { padding: 24px; }
	.form__grid { grid-template-columns: 1fr; gap: 16px; }
	
	.btn { padding: 12px 20px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
	.container { padding: 0 16px; }
	
	.hero__title { font-size: 1.8rem; }
	.hero__subtitle { font-size: 1rem; }
	
	.section__title { font-size: 1.6rem; }
	
	.speakers { grid-template-columns: 1fr; }
	.speaker img { height: 200px; }
	
	.carousel__slide img { aspect-ratio: 3/2; }
} 

/* Modal dos palestrantes */
.speaker-modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	padding: 20px;
}

.speaker-modal.is-active {
	display: flex;
	animation: modal-fade-in 0.3s ease;
}

.speaker-modal__content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
	border: 2px solid var(--primary);
	background: #000;
}

.speaker-modal__close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.8);
	color: var(--primary);
	border: 2px solid var(--primary);
	border-radius: 50%;
	cursor: pointer;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.speaker-modal__close:hover {
	background: var(--primary);
	color: #000;
	transform: scale(1.1);
}

.speaker-modal__content img {
	width: 100%;
	height: auto;
	display: block;
}

@keyframes modal-fade-in {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Futuristic Background Animations */
@keyframes quantum-particles {
	0%, 100% { 
		transform: translate(0, 0) rotate(0deg);
		opacity: 0.3;
	}
	25% { 
		transform: translate(20px, -30px) rotate(90deg);
		opacity: 0.8;
	}
	50% { 
		transform: translate(-15px, -60px) rotate(180deg);
		opacity: 0.5;
	}
	75% { 
		transform: translate(30px, -20px) rotate(270deg);
		opacity: 0.9;
	}
}

@keyframes neural-network {
	0% { 
		stroke-dashoffset: 1000;
		opacity: 0.2;
	}
	50% { 
		opacity: 0.8;
	}
	100% { 
		stroke-dashoffset: 0;
		opacity: 0.3;
	}
}

@keyframes hologram-scan {
	0% { 
		transform: translateX(-100%);
		opacity: 0;
	}
	50% { 
		opacity: 1;
	}
	100% { 
		transform: translateX(100%);
		opacity: 0;
	}
}

@keyframes circuit-flow {
	0% { 
		stroke-dashoffset: 200;
		opacity: 0.4;
	}
	50% { 
		opacity: 1;
	}
	100% { 
		stroke-dashoffset: 0;
		opacity: 0.4;
	}
}

@keyframes data-stream {
	0% { 
		transform: translateY(-100vh);
		opacity: 0;
	}
	10% { 
		opacity: 1;
	}
	90% { 
		opacity: 1;
	}
	100% { 
		transform: translateY(100vh);
		opacity: 0;
	}
}

@keyframes quantum-field {
	0%, 100% { 
		transform: scale(1) rotate(0deg);
		opacity: 0.1;
	}
	25% { 
		transform: scale(1.2) rotate(90deg);
		opacity: 0.3;
	}
	50% { 
		transform: scale(0.8) rotate(180deg);
		opacity: 0.2;
	}
	75% { 
		transform: scale(1.1) rotate(270deg);
		opacity: 0.4;
	}
}

@keyframes ai-pulse {
	0%, 100% { 
		box-shadow: 0 0 20px rgba(0, 255, 0, 0.2), 0 0 40px rgba(0, 255, 0, 0.1);
		transform: scale(1);
	}
	50% { 
		box-shadow: 0 0 40px rgba(0, 255, 0, 0.6), 0 0 80px rgba(0, 255, 0, 0.3);
		transform: scale(1.05);
	}
}

/* Section-Specific Futuristic Backgrounds */
.hero {
	background: var(--hero-bg);
	position: relative;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

/* Estilos da seção hero removidos */

@media (max-width: 1024px) {
	.hero__bg-btn {
		width: 45px;
		height: 45px;
	}
	
	.hero__bg-btn svg {
		width: 18px;
		height: 18px;
	}
	
	.hero__bg-indicators {
		bottom: 25px;
	}
	
	.hero__bg-indicator {
		width: 10px;
		height: 10px;
	}
}

@media (max-width: 768px) {
	.hero__bg-controls {
		padding: 0 15px;
		opacity: 0.05; /* Quase transparente */
		top: 15%; /* Subido mais */
	}
	
	.hero__bg-btn {
		width: 40px;
		height: 40px;
		opacity: 0.05; /* Quase transparente */
	}
	
	.hero__bg-btn svg {
		width: 16px;
		height: 16px;
	}
	
	.hero__bg-indicators {
		bottom: 20px;
		gap: 10px;
	}
	
	.hero__bg-indicator {
		width: 8px;
		height: 8px;
	}
}

@media (max-width: 480px) {
	.hero__bg-controls {
		padding: 0 10px;
	}
	
	.hero__bg-btn {
		width: 35px;
		height: 35px;
	}
	
	.hero__bg-btn svg {
		width: 14px;
		height: 14px;
	}
	
	.hero__bg-indicators {
		bottom: 15px;
		gap: 8px;
	}
	
	.hero__bg-indicator {
		width: 6px;
		height: 6px;
	}
}

#lineup {
	background: var(--lineup-bg);
	position: relative;
	overflow: hidden;
}

#lineup::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 30%, rgba(0, 255, 0, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 70% 70%, rgba(0, 255, 0, 0.06) 0%, transparent 50%);
	animation: neural-network 12s ease-in-out infinite;
	pointer-events: none;
}

#lineup::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(90deg, transparent 0%, rgba(0, 255, 0, 0.03) 50%, transparent 100%);
	animation: hologram-scan 6s ease-in-out infinite;
	pointer-events: none;
}

#highlights {
	background: var(--highlights-bg);
	position: relative;
	overflow: hidden;
}

#highlights::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 25% 25%, rgba(0, 255, 0, 0.12) 0%, transparent 50%),
		radial-gradient(circle at 75% 75%, rgba(0, 255, 0, 0.08) 0%, transparent 50%);
	animation: ai-pulse 10s ease-in-out infinite;
	pointer-events: none;
}

#highlights::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(0deg, transparent 0%, rgba(0, 255, 0, 0.02) 50%, transparent 100%);
	animation: data-stream 8s linear infinite;
	pointer-events: none;
}

#local {
	background: var(--local-bg);
	position: relative;
	overflow: hidden;
}

#local::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.06) 0%, transparent 70%);
	animation: quantum-particles 15s ease-in-out infinite;
	pointer-events: none;
}

#local::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(45deg, transparent 48%, rgba(0, 255, 0, 0.01) 49%, rgba(0, 255, 0, 0.01) 51%, transparent 52%);
	background-size: 40px 40px;
	animation: circuit-flow 25s linear infinite;
	pointer-events: none;
}

#networking {
	background: var(--networking-bg);
	position: relative;
	overflow: hidden;
}

#networking::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 40% 40%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 60% 60%, rgba(0, 255, 0, 0.07) 0%, transparent 50%);
	animation: neural-network 14s ease-in-out infinite;
	pointer-events: none;
}

#networking::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(135deg, transparent 0%, rgba(0, 255, 0, 0.03) 50%, transparent 100%);
	animation: hologram-scan 7s ease-in-out infinite;
	pointer-events: none;
}

#momentos {
	background: var(--momentos-bg);
	position: relative;
	overflow: hidden;
}

#momentos::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 35% 35%, rgba(0, 255, 0, 0.09) 0%, transparent 50%),
		radial-gradient(circle at 65% 65%, rgba(0, 255, 0, 0.06) 0%, transparent 50%);
	animation: quantum-field 11s ease-in-out infinite;
	pointer-events: none;
}

#momentos::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(0deg, transparent 0%, rgba(0, 255, 0, 0.02) 50%, transparent 100%);
	animation: data-stream 9s linear infinite;
	pointer-events: none;
}

#signup {
	background: var(--signup-bg);
	position: relative;
	overflow: hidden;
}

#signup::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.08) 0%, transparent 60%);
	animation: ai-pulse 13s ease-in-out infinite;
	pointer-events: none;
}

#signup::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(45deg, transparent 48%, rgba(0, 255, 0, 0.02) 49%, rgba(0, 255, 0, 0.02) 51%, transparent 52%);
	background-size: 50px 50px;
	animation: circuit-flow 30s linear infinite;
	pointer-events: none;
}

/* Ajustar posição do botão na seção de inscrição */
.signup__cta {
	margin-top: 40px;
}

/* Melhorias no formulário mobile */
@media (max-width: 768px) {
	.hero__form-container {
		margin: 0 20px;
	}
	
	/* Ajustar posição do botão na seção de inscrição no mobile */
	.signup__cta {
		margin-top: 30px;
	}
		max-width: calc(100vw - 40px);
	}
	
	.hero__form-header {
		padding: 20px;
	}
	
	.hero__form-header h3 {
		font-size: 1.3rem;
		line-height: 1.3;
	}
	
	.hero__form {
		padding: 20px;
	}
	
	/* Força layout vertical no mobile */
	.hero__form-grid {
		display: flex !important;
		flex-direction: column !important;
		grid-template-columns: 1fr !important;
		gap: 20px !important;
	}
	
	.hero__form-group {
		margin-bottom: 0;
		width: 100% !important;
		flex: 1 1 auto !important;
	}
	
	.hero__form-group label {
		font-size: 0.9rem;
		margin-bottom: 8px;
		display: block !important;
		text-align: left;
		font-weight: 500;
	}
	
	.hero__form-group input,
	.hero__form-group select {
		padding: 14px 16px;
		font-size: 16px; /* Evita zoom no iOS */
		border-radius: 8px;
		width: 100% !important;
		box-sizing: border-box;
		border: 1px solid rgba(0, 255, 0, 0.3);
		background: rgba(0, 0, 0, 0.8);
		color: var(--text);
		transition: all 0.3s ease;
	}
	
	.hero__form-group input:focus,
	.hero__form-group select:focus {
		border-color: var(--primary);
		box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
		outline: none;
	}
	
	.hero__form-group input::placeholder {
		color: var(--muted);
	}
	
	.btn--form {
		padding: 16px 24px;
		font-size: 1rem;
		width: 100% !important;
		margin-top: 20px;
		border-radius: 8px;
		font-weight: 600;
		letter-spacing: 0.5px;
	}
	
	/* Ajustes específicos para telas muito pequenas */
	@media (max-width: 480px) {
		.hero__form-container {
			margin: 0 15px;
			max-width: calc(100vw - 30px);
		}
		
		/* Ajustar posição do botão na seção de inscrição em telas pequenas */
		.signup__cta {
			margin-top: 25px;
		}
		
		.hero__form-header,
		.hero__form {
			padding: 15px;
		}
		
		.hero__form-header h3 {
			font-size: 1.2rem;
		}
		
		.hero__form-group input,
		.hero__form-group select {
			padding: 12px 14px;
		}
	}
}

/* Melhorias na responsividade geral */
@media (max-width: 1024px) {
	.hero__content {
		padding: 30px;
	}
	
	.hero__title-main {
		font-size: 3.5rem;
	}
	
	.hero__title-sub {
		font-size: 2rem;
	}
}

@media (max-width: 768px) {
	.hero__content {
		padding: 25px 20px;
		margin: 0 15px;
	}
	
	.hero__title-main {
		font-size: 2.8rem;
	}
	
	.hero__title-sub {
		font-size: 1.6rem;
	}
	
	.hero__slogan {
		font-size: 1.1rem;
		line-height: 1.4;
	}
	
	.hero__detail-item {
		font-size: 0.9rem;
	}
	
	.hero__tagline {
		font-size: 0.85rem;
	}
	
	/* Ajustes específicos para o formulário no mobile */
	.hero__form-container {
		position: relative;
		z-index: 10;
	}
	
	.hero__form-container::before {
		display: none; /* Remove o efeito de borda no mobile */
	}
	
	.hero__form-header {
		border-radius: 12px 12px 0 0;
	}
	
	.hero__form {
		border-radius: 0 0 12px 12px;
	}
	
	/* Garante que os campos fiquem em coluna única no mobile */
	.hero__form-grid {
		display: flex !important;
		flex-direction: column !important;
		gap: 16px !important;
	}
	
	.hero__form-group {
		width: 100% !important;
	}
	
	.hero__form-group label {
		text-align: left;
		margin-bottom: 6px;
		font-weight: 500;
	}
	
	.hero__form-group input,
	.hero__form-group select {
		border: 1px solid rgba(0, 255, 0, 0.3);
		background: rgba(0, 0, 0, 0.8);
		color: var(--text);
		transition: all 0.3s ease;
	}
	
	.hero__form-group input:focus,
	.hero__form-group select:focus {
		border-color: var(--primary);
		box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
		outline: none;
	}
	
	.hero__form-group input::placeholder {
		color: var(--muted);
	}
	
	.btn--form {
		margin-top: 20px;
		border-radius: 8px;
		font-weight: 600;
		letter-spacing: 0.5px;
	}
}

/* New Futuristic Animations for Alternating Sections */
@keyframes quantum-entanglement {
	0% { 
		opacity: 0; 
		transform: translateX(-100px) scale(0.5); 
	}
	50% { 
		opacity: 1; 
		transform: translateX(0) scale(1); 
	}
	100% { 
		opacity: 0; 
		transform: translateX(100px) scale(0.5); 
	}
}

@keyframes neural-synapse {
	0%, 100% { 
		opacity: 0.2; 
		transform: scale(0.8) rotate(0deg); 
	}
	25% { 
		opacity: 0.6; 
		transform: scale(1.2) rotate(90deg); 
	}
	50% { 
		opacity: 0.4; 
		transform: scale(1) rotate(180deg); 
	}
	75% { 
		opacity: 0.8; 
		transform: scale(1.3) rotate(270deg); 
	}
}

@keyframes quantum-field {
	0% { 
		background-position: 0% 0%; 
		opacity: 0.2; 
		transform: scale(1) rotate(0deg);
	}
	25% { 
		background-position: 50% 25%; 
		opacity: 0.4; 
		transform: scale(1.05) rotate(90deg);
	}
	50% { 
		background-position: 100% 100%; 
		opacity: 0.6; 
		transform: scale(1.1) rotate(180deg);
	}
	75% { 
		background-position: 25% 75%; 
		opacity: 0.4; 
		transform: scale(1.05) rotate(270deg);
	}
	100% { 
		background-position: 0% 0%; 
		opacity: 0.2; 
		transform: scale(1) rotate(360deg);
	}
}

@keyframes ai-matrix {
	0% { 
		transform: translateY(-100vh) rotate(0deg) scale(0.8); 
		opacity: 0; 
	}
	10% { 
		opacity: 0.8; 
		transform: translateY(-80vh) rotate(36deg) scale(1);
	}
	25% { 
		opacity: 1; 
		transform: translateY(-50vh) rotate(90deg) scale(1.1);
	}
	50% { 
		opacity: 0.9; 
		transform: translateY(0vh) rotate(180deg) scale(1);
	}
	75% { 
		opacity: 1; 
		transform: translateY(50vh) rotate(270deg) scale(1.1);
	}
	90% { 
		opacity: 0.8; 
		transform: translateY(80vh) rotate(324deg) scale(1);
	}
	100% { 
		transform: translateY(100vh) rotate(360deg) scale(0.8); 
		opacity: 0; 
	}
}

@keyframes quantum-tunnel {
	0% { 
		transform: scale(0) rotate(0deg); 
		opacity: 0; 
	}
	50% { 
		transform: scale(1.5) rotate(180deg); 
		opacity: 0.8; 
	}
	100% { 
		transform: scale(0) rotate(360deg); 
		opacity: 0; 
	}
}

@keyframes quantum-pulse {
	0%, 100% { 
		opacity: 0.3; 
		transform: scale(1) rotate(0deg);
		filter: hue-rotate(0deg);
	}
	25% { 
		opacity: 0.6; 
		transform: scale(1.1) rotate(90deg);
		filter: hue-rotate(90deg);
	}
	50% { 
		opacity: 0.8; 
		transform: scale(1.2) rotate(180deg);
		filter: hue-rotate(180deg);
	}
	75% { 
		opacity: 0.6; 
		transform: scale(1.1) rotate(270deg);
		filter: hue-rotate(270deg);
	}
}

/* Alternating Section Styles */
.section-green {
	background: var(--section-green-bg);
	position: relative;
	overflow: hidden;
}

.section-green::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 20% 20%, rgba(0, 255, 0, 0.2) 0%, transparent 60%),
		radial-gradient(circle at 80% 80%, rgba(0, 255, 0, 0.15) 0%, transparent 60%),
		radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.1) 0%, transparent 70%),
		linear-gradient(45deg, transparent 20%, rgba(0, 255, 0, 0.08) 40%, transparent 60%),
		linear-gradient(-45deg, transparent 30%, rgba(0, 255, 0, 0.06) 50%, transparent 70%);
	animation: quantum-field 6s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}

.section-green::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 3px,
			rgba(0, 255, 0, 0.08) 3px,
			rgba(0, 255, 0, 0.08) 6px
		),
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 4px,
			rgba(0, 255, 0, 0.05) 4px,
			rgba(0, 255, 0, 0.05) 8px
		);
	animation: neural-synapse 4s linear infinite;
	pointer-events: none;
	z-index: 2;
}

/* Additional quantum effect for green sections */
.section-green > .container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 15% 15%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 85% 85%, rgba(0, 255, 0, 0.08) 0%, transparent 50%);
	animation: quantum-pulse 5s ease-in-out infinite;
	pointer-events: none;
	z-index: 3;
}


.section-black {
	background: var(--section-black-bg);
	position: relative;
	overflow: hidden;
}

/* Override section-black background for evento section */
.section-black.evento {
	background: url('../img/Background/banner_4.webp') center center/cover no-repeat !important;
	height: auto;
	min-height: 140vh;
	margin-top: 0; /* Removido para conectar perfeitamente */
	padding-top: 0;
	padding-bottom: 80px;
	transition: height 0.3s ease;
}

/* Expand height when form is active */
.section-black.evento:has(.evento__form-container.active) {
	height: 120vh;
}

@media (max-width: 768px) {
	.section-black.evento {
		background: url('../img/Background/banner_mobile3.webp') center center/cover no-repeat !important;
		min-height: 140vh;
		padding-bottom: 60px;
	}
	
	.section-black.evento:has(.evento__form-container.active) {
		min-height: 160vh; /* More height on mobile when form is open */
	}
}

.section-black::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	pointer-events: none;
}

/* Override section-black overlay for evento section */
.section-black.evento::before {
	background: transparent !important;
}

/* Override section-black after pseudo-element for evento section */
.section-black.evento::after {
	background: transparent !important;
}

.section-black::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	pointer-events: none;
	z-index: 2;
}

/* Additional AI effect for black sections */
.section-black > .container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent;
	pointer-events: none;
	z-index: 3;
}

/* Override container overlay for evento section */
.section-black.evento > .container::before {
	display: none !important;
}

/* Reviva os Momentos Section */
.section-black.reviva-momentos {
	background: #000 !important;
	height: 100vh;
	transition: height 0.3s ease;
	position: relative;
	overflow: hidden;
}

/* Elegant Animation Background */
.reviva-momentos::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 25% 25%, rgba(0, 255, 0, 0.08) 0%, transparent 25%),
		radial-gradient(circle at 75% 75%, rgba(0, 255, 0, 0.06) 0%, transparent 25%),
		radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.04) 0%, transparent 30%);
	animation: elegantFloat 8s ease-in-out infinite;
	z-index: 1;
	pointer-events: none;
}

.reviva-momentos::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(0, 255, 0, 0.02) 60deg, transparent 120deg, rgba(0, 255, 0, 0.02) 180deg, transparent 240deg, rgba(0, 255, 0, 0.02) 300deg, transparent 360deg);
	animation: elegantRotate 20s linear infinite;
	z-index: 1;
	pointer-events: none;
}

/* Elegant Animation Keyframes */
@keyframes elegantFloat {
	0%, 100% {
		opacity: 0.4;
		transform: translateY(0px) scale(1);
	}
	33% {
		opacity: 0.7;
		transform: translateY(-10px) scale(1.02);
	}
	66% {
		opacity: 0.5;
		transform: translateY(5px) scale(0.98);
	}
}

@keyframes elegantRotate {
	0% {
		transform: rotate(0deg) scale(1);
		opacity: 0.3;
	}
	50% {
		transform: rotate(180deg) scale(1.1);
		opacity: 0.6;
	}
	100% {
		transform: rotate(360deg) scale(1);
		opacity: 0.3;
	}
}

.reviva-momentos__content {
	position: relative;
	z-index: 2;
}

/* Elegant Floating Particles */
.reviva-momentos__content::before {
	content: '';
	position: absolute;
	top: 10%;
	left: 10%;
	width: 4px;
	height: 4px;
	background: rgba(0, 255, 0, 0.4);
	border-radius: 50%;
	animation: floatParticle1 12s ease-in-out infinite;
	pointer-events: none;
}

.reviva-momentos__content::after {
	content: '';
	position: absolute;
	top: 20%;
	right: 15%;
	width: 3px;
	height: 3px;
	background: rgba(0, 255, 0, 0.3);
	border-radius: 50%;
	animation: floatParticle2 15s ease-in-out infinite;
	pointer-events: none;
}

@keyframes floatParticle1 {
	0%, 100% {
		transform: translateY(0px) translateX(0px);
		opacity: 0.4;
	}
	25% {
		transform: translateY(-20px) translateX(10px);
		opacity: 0.8;
	}
	50% {
		transform: translateY(-10px) translateX(-5px);
		opacity: 0.6;
	}
	75% {
		transform: translateY(-30px) translateX(15px);
		opacity: 0.9;
	}
}

@keyframes floatParticle2 {
	0%, 100% {
		transform: translateY(0px) translateX(0px);
		opacity: 0.3;
	}
	33% {
		transform: translateY(-25px) translateX(-10px);
		opacity: 0.7;
	}
	66% {
		transform: translateY(-15px) translateX(8px);
		opacity: 0.5;
	}
}

.reviva-momentos__videos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	margin-top: 3rem;
}

.reviva-momentos__video {
	background: rgba(0, 0, 0, 0.85);
	border-radius: 16px;
	padding: 0;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 255, 0, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.reviva-momentos__video::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
		linear-gradient(225deg, rgba(0, 255, 0, 0.03) 0%, transparent 50%);
	border-radius: 24px;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.reviva-momentos__video::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, transparent, rgba(0, 255, 0, 0.1), transparent);
	border-radius: 26px;
	opacity: 0;
	transition: opacity 0.4s ease;
	z-index: -1;
}

.reviva-momentos__video:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		0 25px 50px rgba(0, 0, 0, 0.4),
		0 0 40px rgba(0, 255, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	border-color: rgba(0, 255, 0, 0.4);
}

.reviva-momentos__video:hover::before {
	opacity: 1;
}

.reviva-momentos__video:hover::after {
	opacity: 1;
}

.reviva-momentos__video h3 {
	color: #00ff00;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-align: center;
	font-family: 'Space Grotesk', sans-serif;
	text-shadow: 
		0 0 20px rgba(0, 255, 0, 0.3),
		0 0 40px rgba(0, 255, 0, 0.1);
	position: relative;
	z-index: 2;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
	line-height: 1.3;
	flex-shrink: 0;
	min-height: 3.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.reviva-momentos__video:hover h3 {
	color: #ffffff;
	text-shadow: 
		0 0 30px rgba(255, 255, 255, 0.5),
		0 0 60px rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.reviva-momentos__video:hover .video-title {
	color: #ffffff !important;
	text-shadow: 
		0 0 30px rgba(255, 255, 255, 0.5),
		0 0 60px rgba(255, 255, 255, 0.2);
}

.video-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	flex: 1;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 15px;
	background: #000;
	pointer-events: auto;
	/* Garantir que o iframe seja visível */
	opacity: 1;
	visibility: visible;
	display: block;
	z-index: 1;
}

/* Mobile YouTube Video Fix */
@media (max-width: 768px) {
	.video-container {
		position: relative;
		width: 100%;
		height: 0;
		padding-bottom: 56.25%;
		border-radius: 15px;
		overflow: hidden;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		cursor: pointer;
	}
	
	.video-container iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: none;
		border-radius: 15px;
		background: #000;
		pointer-events: auto !important;
		touch-action: manipulation !important;
		z-index: 2;
		opacity: 1;
		visibility: visible;
		display: block;
	}
	
	.youtube-iframe {
		pointer-events: auto !important;
		touch-action: manipulation !important;
		z-index: 2;
	}
	
	/* Mobile Play Button Overlay - REMOVED */
	.video-container .mobile-play-overlay {
		display: none !important;
	}
}

/* Fallback for video loading issues */
.video-container::before {
	content: 'Carregando vídeo...';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 1rem;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.video-container.loading::before {
	opacity: 1;
}

.video-container.loaded::before {
	opacity: 0;
}

/* Carrossel de Reviva os Momentos */
.reviva-momentos-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(0, 255, 0, 0.2);
	box-shadow: 0 10px 40px rgba(0, 255, 0, 0.1);
	margin-top: 40px;
}

/* Estilos específicos para vídeos do carrossel Reviva os Momentos */
.reviva-momentos-carousel .reviva-momentos__video {
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}

.reviva-momentos-carousel .video-container {
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
	border: 3px solid rgba(0, 255, 0, 0.8);
	transition: all 0.3s ease;
	position: relative;
	overflow: visible;
	background: rgba(0, 255, 0, 0.1);
}

/* Borda neon base - sempre visível */
.reviva-momentos-carousel .video-container::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	background: linear-gradient(45deg, 
		#00ff00 0%, 
		#00ff88 25%, 
		#00ff00 50%, 
		#00ff88 75%, 
		#00ff00 100%);
	border-radius: 16px;
	opacity: 0.7;
	z-index: -1;
	animation: neonPulse 2s ease-in-out infinite;
	filter: blur(1px);
}

/* Borda neon secundária para mais intensidade */
.reviva-momentos-carousel .video-container::after {
	content: '';
	position: absolute;
	top: -6px;
	left: -6px;
	right: -6px;
	bottom: -6px;
	background: linear-gradient(45deg, 
		#00ff00 0%, 
		#88ff00 25%, 
		#00ff00 50%, 
		#88ff00 75%, 
		#00ff00 100%);
	border-radius: 18px;
	opacity: 0.4;
	z-index: -2;
	animation: neonPulse 2.5s ease-in-out infinite reverse;
	filter: blur(2px);
}

/* Hover - efeito mais forte e estável */
.reviva-momentos-carousel .video-container:hover {
	transform: scale(1.03) translateY(-5px);
	border-color: #00ff00;
	border-width: 4px;
	box-shadow: 
		0 15px 35px rgba(0, 0, 0, 0.6),
		0 0 30px #00ff00,
		0 0 60px #00ff00,
		0 0 90px rgba(0, 255, 0, 0.5);
	background: rgba(0, 255, 0, 0.2);
}

/* Garantir que o texto fique branco no hover do container */
.reviva-momentos-carousel .video-container:hover h3 {
	color: #ffffff !important;
	text-shadow: 
		0 0 30px rgba(255, 255, 255, 0.5),
		0 0 60px rgba(255, 255, 255, 0.2);
}

.reviva-momentos-carousel .video-container:hover .video-title {
	color: #ffffff !important;
	text-shadow: 
		0 0 30px rgba(255, 255, 255, 0.5),
		0 0 60px rgba(255, 255, 255, 0.2);
}

.reviva-momentos-carousel .video-container:hover::before {
	opacity: 1;
	animation: neonGlow 1s ease-in-out infinite;
	filter: blur(0.5px);
}

.reviva-momentos-carousel .video-container:hover::after {
	opacity: 0.8;
	animation: neonGlow 1.2s ease-in-out infinite;
	filter: blur(1px);
}

/* Animação de pulso neon - mais suave */
@keyframes neonPulse {
	0%, 100% {
		opacity: 0.6;
		transform: scale(1);
	}
	50% {
		opacity: 0.9;
		transform: scale(1.01);
	}
}

/* Animação de brilho neon no hover - simplificada */
@keyframes neonGlow {
	0%, 100% {
		opacity: 0.8;
		transform: scale(1);
	}
	50% {
		opacity: 1;
		transform: scale(1.02);
	}
}

/* Modal de Vídeo */
.video-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* Quando modal está ativo, pausar animações do carrossel */
body.modal-active .reviva-momentos-carousel__track {
	animation-play-state: paused !important;
}

body.modal-active .reviva-momentos-carousel__controls {
	pointer-events: none;
	opacity: 0.3;
}

body.modal-active .reviva-momentos-carousel__indicators {
	pointer-events: none;
	opacity: 0.3;
}

.video-modal.active {
	display: flex;
	opacity: 1;
}

.video-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(5px);
}

.video-modal__container {
	position: relative;
	width: 90%;
	max-width: 1200px;
	height: 80%;
	max-height: 675px;
	margin: auto;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
	border: 2px solid rgba(0, 255, 0, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.video-modal.active .video-modal__container {
	transform: scale(1);
}

.video-modal__close {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.8);
	border: 2px solid rgba(0, 255, 0, 0.6);
	border-radius: 50%;
	color: #00ff00;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10001;
	transition: all 0.3s ease;
}

.video-modal__close:hover {
	background: rgba(0, 255, 0, 0.2);
	border-color: #00ff00;
	transform: scale(1.1);
}

.video-modal__content {
	width: 100%;
	height: 100%;
	position: relative;
}

.video-modal__content iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Estilos para vídeo local no modal */
.modal-video-container {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
}

.modal-video-container video {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	background: #000;
	display: block;
}

/* Responsividade do Modal */
@media (max-width: 768px) {
	.video-modal__container {
		width: 95%;
		height: 70%;
		max-height: 400px;
	}
	
	.video-modal__close {
		width: 35px;
		height: 35px;
		top: 10px;
		right: 10px;
	}
}

@media (max-width: 480px) {
	.video-modal__container {
		width: 98%;
		height: 60%;
		max-height: 300px;
	}
}

/* Controles de Tempo Personalizados - Melhores Momentos */
.time-controls-container {
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 255, 0, 0.3);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.progress-container:hover {
	background: rgba(255, 255, 255, 0.4);
	height: 8px;
}

.progress-container:active {
	height: 10px;
}

.progress-container:hover .time-indicator {
	opacity: 1 !important;
	transform: translateX(-50%) scale(1.2);
}

.time-indicator {
	transition: all 0.3s ease;
}

.time-indicator:hover {
	transform: translateX(-50%) scale(1.3);
	box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.progress-bar {
	box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.time-display {
	text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
	font-family: 'Inter', sans-serif;
}

/* Estilos para quando está arrastando */
.progress-container.dragging {
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
}

.progress-container.dragging .time-indicator {
	opacity: 1 !important;
	transform: translateX(-50%) scale(1.4);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
}

/* Estilos para overlay clicável do YouTube */
.video-click-overlay {
	transition: background 0.2s ease;
}

.video-click-overlay:hover {
	background: rgba(0, 255, 0, 0.05);
}

.video-click-overlay:active {
	background: rgba(0, 255, 0, 0.1);
}

/* Estilos específicos para mobile */
@media (max-width: 768px) {
	.video-click-overlay {
		touch-action: manipulation;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	
	/* Garantir que o scroll funcione na seção Reviva os Momentos */
	.reviva-momentos-carousel {
		touch-action: pan-y;
		-webkit-overflow-scrolling: touch;
	}
	
	.reviva-momentos-carousel__content {
		touch-action: pan-y;
	}
	
	/* Permitir scroll vertical no container */
	.reviva-momentos-carousel__track {
		touch-action: pan-y;
	}
	
	/* Garantir que toda a seção permita scroll */
	.section.reviva-momentos {
		touch-action: pan-y;
		-webkit-overflow-scrolling: touch;
	}
	
	/* Container da seção */
	.reviva-momentos .container {
		touch-action: pan-y;
	}
	
	/* Vídeos individuais */
	.reviva-momentos__video {
		touch-action: pan-y;
	}
	
	/* Video containers */
	.video-container {
		touch-action: pan-y;
	}
}

/* Responsividade dos controles de tempo */
@media (max-width: 768px) {
	.time-controls-container {
		padding: 6px 10px;
		bottom: 8px;
		left: 8px;
		right: 8px;
	}
	
	.time-display {
		font-size: 11px;
		min-width: 70px;
	}
	
	.time-indicator {
		width: 14px;
		height: 14px;
		top: -5px;
	}
}

@media (max-width: 480px) {
	.time-controls-container {
		padding: 5px 8px;
		bottom: 6px;
		left: 6px;
		right: 6px;
	}
	
	.time-display {
		font-size: 10px;
		min-width: 60px;
	}
	
	.time-indicator {
		width: 12px;
		height: 12px;
		top: -4px;
	}
}

.reviva-momentos-carousel__track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	touch-action: pan-y pinch-zoom;
}

.reviva-momentos-carousel__slide {
	flex: 0 0 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.reviva-momentos-carousel__content {
	width: 100%;
	padding: 20px;
	text-align: center;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: start;
}

/* Controles do carrossel */
.reviva-momentos-carousel__controls {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}

.reviva-momentos-carousel__btn {
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.8);
	color: var(--primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	pointer-events: all;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 255, 0, 0.3);
}

.reviva-momentos-carousel__btn:hover {
	background: rgba(0, 255, 0, 0.1);
	border-color: var(--primary);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
	transform: scale(1.1);
}

.reviva-momentos-carousel__btn--prev {
	margin-left: 20px;
}

.reviva-momentos-carousel__btn--next {
	margin-right: 20px;
}

/* Indicadores */
.reviva-momentos-carousel__indicators {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.reviva-momentos-carousel__indicator {
	width: 12px;
	height: 12px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 255, 0, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.reviva-momentos-carousel__indicator.active {
	background: var(--primary);
	box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
	transform: scale(1.2);
}

.reviva-momentos-carousel__indicator:hover {
	background: var(--primary);
	transform: scale(1.1);
}

/* Card vazio para manter layout */
.reviva-momentos__video--empty {
	visibility: hidden;
}

/* Responsive Design for Reviva os Momentos */
@media (max-width: 1200px) {
	.reviva-momentos-carousel__content {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
		padding: 15px;
	}
}

@media (max-width: 1024px) {
	.reviva-momentos-carousel__content {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		padding: 20px;
	}
}

@media (max-width: 768px) {
	.section-black.reviva-momentos {
		height: auto;
		min-height: 100vh;
		padding: 2rem 0 4rem 0;
	}
	
	.reviva-momentos__videos {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-top: 1.5rem;
		padding: 0 1rem;
	}
	
	.reviva-momentos__video {
		padding: 1rem;
		margin-bottom: 1rem;
	}
	
	.reviva-momentos__video h3 {
		font-size: 1.25rem;
		margin-bottom: 0.75rem;
	}
	
	.video-container {
		padding-bottom: 56.25%; /* Maintain proper 16:9 aspect ratio */
	}
	
	.reviva-momentos-carousel__content {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px;
	}
	
	.reviva-momentos-carousel__controls {
		opacity: 0.1;
		top: 20%;
	}
	
	.reviva-momentos-carousel__btn {
		width: 40px;
		height: 40px;
		opacity: 0.1;
	}
	
	.reviva-momentos-carousel__btn--prev {
		margin-left: 10px;
	}
	
	.reviva-momentos-carousel__btn--next {
		margin-right: 10px;
	}
	
	/* Ajustes para borda neon no mobile */
	.reviva-momentos-carousel .video-container {
		border: 2px solid rgba(0, 255, 0, 0.6);
		background: rgba(0, 255, 0, 0.05);
	}
	
	.reviva-momentos-carousel .video-container::before {
		top: -3px;
		left: -3px;
		right: -3px;
		bottom: -3px;
		border-radius: 14px;
		opacity: 0.5;
	}
	
	.reviva-momentos-carousel .video-container::after {
		top: -4px;
		left: -4px;
		right: -4px;
		bottom: -4px;
		border-radius: 16px;
		opacity: 0.3;
	}
	
	.reviva-momentos-carousel .video-container:hover {
		transform: scale(1.02) translateY(-3px);
		border-width: 3px;
	}
}

@media (max-width: 480px) {
	.reviva-momentos__video {
		padding: 1rem;
	}
	
	.reviva-momentos__video h3 {
		font-size: 1.1rem;
	}
}

/* Carrossel de Melhores Momentos */
.melhores-momentos-carousel {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(0, 255, 0, 0.2);
	box-shadow: 0 10px 40px rgba(0, 255, 0, 0.1);
	margin-top: 40px;
}

/* Estilos específicos para vídeos do carrossel Melhores Momentos */
.melhores-momentos-carousel .melhores-momentos__video {
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}

.melhores-momentos-carousel .video-container {
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
	border: 3px solid rgba(0, 255, 0, 0.8);
	transition: all 0.3s ease;
	position: relative;
	overflow: visible;
	background: rgba(0, 255, 0, 0.1);
}

.melhores-momentos-carousel .video-player {
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
	border: 3px solid rgba(0, 255, 0, 0.8);
	transition: all 0.3s ease;
	position: relative;
	overflow: visible;
	background: rgba(0, 255, 0, 0.1);
}

/* Borda neon base - sempre visível */
.melhores-momentos-carousel .video-container::before,
.melhores-momentos-carousel .video-player::before {
	content: '';
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	background: linear-gradient(45deg, 
		#00ff00 0%, 
		#00ff88 25%, 
		#00ff00 50%, 
		#00ff88 75%, 
		#00ff00 100%);
	border-radius: 16px;
	opacity: 0.7;
	z-index: -1;
	animation: neonPulse 2s ease-in-out infinite;
	filter: blur(1px);
}

/* Borda neon secundária para mais intensidade */
.melhores-momentos-carousel .video-container::after,
.melhores-momentos-carousel .video-player::after {
	content: '';
	position: absolute;
	top: -6px;
	left: -6px;
	right: -6px;
	bottom: -6px;
	background: linear-gradient(45deg, 
		#00ff00 0%, 
		#88ff00 25%, 
		#00ff00 50%, 
		#88ff00 75%, 
		#00ff00 100%);
	border-radius: 18px;
	opacity: 0.4;
	z-index: -2;
	animation: neonPulse 2.5s ease-in-out infinite reverse;
	filter: blur(2px);
}

/* Hover - efeito mais forte e estável */
.melhores-momentos-carousel .video-container:hover,
.melhores-momentos-carousel .video-player:hover {
	transform: scale(1.03) translateY(-5px);
	border-color: #00ff00;
	border-width: 4px;
	box-shadow: 
		0 15px 35px rgba(0, 0, 0, 0.6),
		0 0 30px #00ff00,
		0 0 60px #00ff00,
		0 0 90px rgba(0, 255, 0, 0.5);
	background: rgba(0, 255, 0, 0.2);
}

/* Garantir que o texto fique branco no hover do container */
.melhores-momentos-carousel .video-container:hover h3,
.melhores-momentos-carousel .video-player:hover h3 {
	color: #ffffff !important;
	text-shadow: 
		0 0 30px rgba(255, 255, 255, 0.5),
		0 0 60px rgba(255, 255, 255, 0.2);
}

.melhores-momentos-carousel .video-container:hover .video-title,
.melhores-momentos-carousel .video-player:hover .video-title {
	color: #ffffff !important;
	text-shadow: 
		0 0 30px rgba(255, 255, 255, 0.5),
		0 0 60px rgba(255, 255, 255, 0.2);
}

.melhores-momentos-carousel .video-container:hover::before,
.melhores-momentos-carousel .video-player:hover::before {
	opacity: 1;
	animation: neonGlow 1s ease-in-out infinite;
	filter: blur(0.5px);
}

.melhores-momentos-carousel .video-container:hover::after,
.melhores-momentos-carousel .video-player:hover::after {
	opacity: 0.8;
	animation: neonGlow 1.2s ease-in-out infinite;
	filter: blur(1px);
}

.melhores-momentos-carousel__track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	touch-action: pan-x pan-y pinch-zoom;
}

.melhores-momentos-carousel__slide {
	flex: 0 0 100%;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.melhores-momentos-carousel__content {
	width: 100%;
	padding: 20px;
	text-align: center;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: start;
}

/* Controles do carrossel */
.melhores-momentos-carousel__controls {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
	z-index: 10;
}

.melhores-momentos-carousel__btn {
	width: 50px;
	height: 50px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.8);
	color: var(--primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	pointer-events: all;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 255, 0, 0.3);
}

.melhores-momentos-carousel__btn:hover {
	background: rgba(0, 255, 0, 0.1);
	border-color: var(--primary);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
	transform: scale(1.1);
}

.melhores-momentos-carousel__btn--prev {
	margin-left: 20px;
}

.melhores-momentos-carousel__btn--next {
	margin-right: 20px;
}

/* Indicadores */
.melhores-momentos-carousel__indicators {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.melhores-momentos-carousel__indicator {
	width: 12px;
	height: 12px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 255, 0, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.melhores-momentos-carousel__indicator.active {
	background: var(--primary);
	box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
	transform: scale(1.2);
}

.melhores-momentos-carousel__indicator:hover {
	background: var(--primary);
	transform: scale(1.1);
}

/* Card vazio para manter layout */
.melhores-momentos__video--empty {
	visibility: hidden;
}

/* Responsive Design for Melhores Momentos */
@media (max-width: 1200px) {
	.melhores-momentos-carousel__content {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
		padding: 15px;
	}
}

@media (max-width: 1024px) {
	.melhores-momentos-carousel__content {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
		padding: 20px;
	}
}

@media (max-width: 768px) {
	.melhores-momentos-carousel__content {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 20px;
	}
	
	.melhores-momentos-carousel__controls {
		opacity: 0.1;
		top: 20%;
	}
	
	.melhores-momentos-carousel__btn {
		width: 40px;
		height: 40px;
		opacity: 0.1;
	}
	
	.melhores-momentos-carousel__btn--prev {
		margin-left: 10px;
	}
	
	.melhores-momentos-carousel__btn--next {
		margin-right: 10px;
	}
	
	/* Fix scroll issue on mobile for melhores momentos carousel */
	.melhores-momentos-carousel {
		touch-action: pan-y;
		-webkit-overflow-scrolling: touch;
	}
	
	.melhores-momentos-carousel__track {
		touch-action: pan-x pan-y;
		-webkit-overflow-scrolling: touch;
	}
	
	.melhores-momentos-carousel__content {
		touch-action: pan-y;
		-webkit-overflow-scrolling: touch;
	}
	
	/* Ensure the section allows scroll */
	.section.melhores-momentos {
		touch-action: pan-y;
		-webkit-overflow-scrolling: touch;
		overflow: visible !important;
	}
	
	/* Container of the section */
	.melhores-momentos .container {
		touch-action: pan-y;
		-webkit-overflow-scrolling: touch;
		overflow: visible !important;
	}
	
	/* Force scroll to work on mobile */
	.section-black.melhores-momentos {
		overflow: visible !important;
		touch-action: pan-y !important;
		-webkit-overflow-scrolling: touch !important;
	}
	
	/* Otimizações para mobile - reduzir efeitos pesados */
	.melhores-momentos-carousel .video-container,
	.melhores-momentos-carousel .video-player {
		border: 1px solid rgba(0, 255, 0, 0.4);
		background: rgba(0, 255, 0, 0.02);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
		transition: none;
		animation: none;
		will-change: auto;
		contain: layout style;
	}
	
	/* Desabilitar pseudo-elementos pesados no mobile */
	.melhores-momentos-carousel .video-container::before,
	.melhores-momentos-carousel .video-player::before,
	.melhores-momentos-carousel .video-container::after,
	.melhores-momentos-carousel .video-player::after {
		display: none;
	}
	
	/* Desabilitar hover effects no mobile */
	.melhores-momentos-carousel .video-container:hover,
	.melhores-momentos-carousel .video-player:hover {
		transform: none;
		border-width: 1px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	}
	
	/* Otimizar vídeos locais */
	.melhores-momentos-carousel .video-element {
		will-change: auto;
		contain: layout style paint;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	
	/* Reduzir animações de background */
	.melhores-momentos::before,
	.melhores-momentos::after {
		animation: none;
		opacity: 0.3;
	}
}

/* Melhores Momentos Section */
.section-black.melhores-momentos {
	background: #000 !important;
	height: auto;
	padding: 0.5rem 0;
	position: relative;
	overflow: visible;
}

/* Elegant Animation Background for Melhores Momentos */
.melhores-momentos::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 30% 20%, rgba(0, 255, 0, 0.06) 0%, transparent 30%),
		radial-gradient(circle at 70% 80%, rgba(0, 255, 0, 0.04) 0%, transparent 30%),
		radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.03) 0%, transparent 35%);
	animation: elegantFloat 10s ease-in-out infinite;
	z-index: 1;
	pointer-events: none;
}

.melhores-momentos::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		conic-gradient(from 90deg at 50% 50%, transparent 0deg, rgba(0, 255, 0, 0.015) 45deg, transparent 90deg, rgba(0, 255, 0, 0.015) 135deg, transparent 180deg, rgba(0, 255, 0, 0.015) 225deg, transparent 270deg, rgba(0, 255, 0, 0.015) 315deg, transparent 360deg);
	animation: elegantRotate 25s linear infinite;
	z-index: 1;
	pointer-events: none;
}

.melhores-momentos__content {
	position: relative;
	z-index: 2;
}

.melhores-momentos__videos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
	margin-top: 0.25rem;
}

.melhores-momentos__video {
	background: rgba(0, 0, 0, 0.8);
	border-radius: 20px;
	padding: 0.5rem;
	backdrop-filter: blur(20px);
	border: 1px solid rgba(0, 255, 0, 0.2);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	/* Performance optimizations */
	transform: translateZ(0);
	will-change: transform;
	contain: layout style paint;
	-webkit-transform: translateZ(0);
}

.melhores-momentos__video::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
		linear-gradient(225deg, rgba(0, 255, 0, 0.03) 0%, transparent 50%);
	border-radius: 24px;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.melhores-momentos__video:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		0 25px 50px rgba(0, 0, 0, 0.4),
		0 0 40px rgba(0, 255, 0, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	border-color: rgba(0, 255, 0, 0.4);
}

.melhores-momentos__video:hover h3 {
	color: #ffffff;
	text-shadow: 
		0 0 30px rgba(255, 255, 255, 0.5),
		0 0 60px rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.melhores-momentos__video:hover .video-title {
	color: #ffffff !important;
	text-shadow: 
		0 0 30px rgba(255, 255, 255, 0.5),
		0 0 60px rgba(255, 255, 255, 0.2);
}

.melhores-momentos__video:hover::before {
	opacity: 1;
}

/* Video Player Styles */
.video-player {
	position: relative;
	width: 100%;
	border-radius: 16px;
	overflow: hidden;
	background: #000;
	/* Performance optimizations */
	transform: translateZ(0);
	will-change: transform;
	contain: layout style paint;
	-webkit-transform: translateZ(0);
}

.video-element {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	/* Performance optimizations */
	transform: translateZ(0);
	will-change: transform;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	/* Garantir que o vídeo seja visível */
	opacity: 1;
	visibility: visible;
	background: #000;
	-webkit-perspective: 1000;
	perspective: 1000;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.video-controls {
	position: relative;
	bottom: auto;
	left: auto;
	transform: none;
	display: flex;
	gap: 0.5rem;
	opacity: 1; /* Always visible */
	transition: opacity 0.3s ease;
	z-index: 10;
	justify-content: center;
	margin-top: 0.5rem;
}

.video-player:hover .video-controls {
	opacity: 1; /* Keep visible on hover */
}

.control-btn {
	background: rgba(0, 0, 0, 0.8);
	border: 1px solid rgba(0, 255, 0, 0.3);
	border-radius: 8px;
	padding: 0.75rem;
	color: #00ff00;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.control-btn:hover {
	background: rgba(0, 255, 0, 0.1);
	border-color: rgba(0, 255, 0, 0.6);
	transform: scale(1.05);
	box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.control-btn:active {
	transform: scale(0.95);
}

.video-title {
	color: #00ff00;
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 0.5rem;
	text-align: center;
	font-family: 'Space Grotesk', sans-serif;
	text-shadow: 
		0 0 20px rgba(0, 255, 0, 0.3),
		0 0 40px rgba(0, 255, 0, 0.1);
	letter-spacing: 0.5px;
	position: relative;
	z-index: 2;
}

/* Desktop specific optimizations */
@media (min-width: 1025px) {
	.section-black.melhores-momentos {
		padding: 0.25rem 0;
	}
	
	.melhores-momentos__videos {
		margin-top: 0.125rem;
		gap: 0.375rem;
	}
	
	.melhores-momentos__video {
		padding: 0.375rem;
		/* Enhanced performance for desktop */
		backdrop-filter: blur(10px);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	
	.video-element {
		/* Desktop video optimizations */
		image-rendering: optimizeSpeed;
		image-rendering: -webkit-optimize-contrast;
		image-rendering: crisp-edges;
	}
	
	.video-controls {
		margin-top: 0.375rem;
	}
	
	.video-title {
		margin-top: 0.375rem;
	}
}

/* Responsive Design for Melhores Momentos */
@media (max-width: 1024px) {
	.melhores-momentos__videos {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
	}
	
	.melhores-momentos__video {
		padding: 0.5rem;
	}
}

@media (max-width: 768px) {
	.melhores-momentos__videos {
		grid-template-columns: 1fr;
		gap: 0.5rem;
		margin-top: 0.5rem;
	}
	
	.melhores-momentos__video {
		padding: 0.5rem;
	}
	
	.video-title {
		font-size: 1.1rem;
		margin-top: 0.5rem;
	}
	
	.control-btn {
		padding: 0.5rem;
	}
}

@media (max-width: 480px) {
	.melhores-momentos__video {
		padding: 0.5rem;
		will-change: auto;
		contain: layout style;
		animation: none;
		transition: none;
	}
	
	.video-title {
		font-size: 1rem;
		margin-top: 0.25rem;
	}
	
	/* Force scroll to work on small mobile screens */
	.section-black.melhores-momentos {
		overflow: visible !important;
		touch-action: pan-y !important;
		-webkit-overflow-scrolling: touch !important;
	}
	
	.section.melhores-momentos {
		overflow: visible !important;
		touch-action: pan-y !important;
		-webkit-overflow-scrolling: touch !important;
	}
	
	.melhores-momentos .container {
		overflow: visible !important;
		touch-action: pan-y !important;
		-webkit-overflow-scrolling: touch !important;
	}
	
	/* Otimizações adicionais para telas muito pequenas */
	.melhores-momentos-carousel {
		margin-top: 20px;
	}
	
	.melhores-momentos-carousel__content {
		padding: 15px;
		gap: 15px;
	}
	
	.melhores-momentos-carousel .video-container,
	.melhores-momentos-carousel .video-player {
		border: 1px solid rgba(0, 255, 0, 0.3);
		background: transparent;
		box-shadow: none;
	}
	
	/* Desabilitar completamente animações de background */
	.melhores-momentos::before,
	.melhores-momentos::after {
		display: none;
	}
}

/* Performance Optimizations */
* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Video Performance Optimizations */
video {
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000;
	perspective: 1000;
	will-change: transform;
}

/* Optimize video rendering */
.video-element:not(:hover) {
	will-change: auto;
}

.video-element:hover {
	will-change: transform;
}

body {
	text-rendering: optimizeLegibility;
}

img {
	will-change: auto;
}

.lazy-image {
	opacity: 1;
	transition: opacity 0.3s ease;
}

.lazy-image.loaded {
	opacity: 1;
}

/* GPU Acceleration for animations */
.hero,
.header,
.reviva-momentos,
.melhores-momentos,
.highlight {
	will-change: transform;
	transform: translateZ(0);
}

/* Optimize scroll performance */
.section {
	contain: layout style paint;
}

/* Reduce paint complexity */
.reviva-momentos::before,
.reviva-momentos::after,
.melhores-momentos::before,
.melhores-momentos::after {
	will-change: transform, opacity;
}

/* Correção específica para iPhone 15 Pro e dispositivos similares */
@media (max-width: 430px) and (max-height: 950px) {
	/* Forçar seções rentes no iPhone 15 Pro */
	.inicio {
		margin: 0 !important;
		padding: 0 !important;
		height: 100vh !important;
		min-height: 100vh !important;
		position: relative !important;
		top: 0 !important;
		transform: translateY(0) !important;
	}
	
	#evento {
		margin: 0 !important;
		padding: 0 !important;
		position: relative !important;
		top: 0 !important;
		transform: translateY(0) !important;
	}
	
	/* Eliminar qualquer gap entre as seções */
	.inicio + #evento,
	.inicio + .section.evento,
	.inicio + .section-black.evento {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		position: relative !important;
		top: 0 !important;
		transform: translateY(0) !important;
	}
	
	/* Garantir que o main não tenha espaçamento */
	main {
		margin: 0 !important;
		padding: 0 !important;
	}
	
	main > * {
		margin: 0 !important;
		padding: 0 !important;
	}
	
	/* Container da seção evento sem padding */
	.section.evento .container {
		padding-top: 0 !important;
		margin-top: 0 !important;
	}
	
	/* Forçar vídeo da seção inicio sem margens */
	.inicio__video {
		margin: 0 !important;
		padding: 0 !important;
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: auto !important;
		max-height: none !important;
		object-fit: contain !important;
		object-position: center top !important;
	}
}

/* SOLUÇÃO ULTRA-AGRESSIVA: COLAR TUDO */
@media (min-width: 1200px) and (max-width: 1400px) and (min-height: 700px) and (max-height: 800px) {
	/* FORÇAR: Reset total de todos os elementos */
	* {
		margin: 0 !important;
		padding: 0 !important;
		box-sizing: border-box !important;
	}
	
	/* FORÇAR: HTML e Body zerados */
	html, body {
		margin: 0 !important;
		padding: 0 !important;
		background: #000000 !important;
		overflow-x: hidden !important;
	}
	
	/* FORÇAR: Header fixo no topo */
	.header {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		z-index: 1000 !important;
		margin: 0 !important;
		padding: 0 !important;
		height: auto !important;
	}
	
	/* FORÇAR: Main zerado */
	main {
		margin: 0 !important;
		padding: 0 !important;
		background: #000000 !important;
		position: relative !important;
		top: 0 !important;
	}
	
	/* FORÇAR: Seção inicio colada no topo */
	.inicio {
		width: 100vw !important;
		height: calc(100vw * 2160 / 5070) !important;
		min-height: calc(100vw * 2160 / 5070) !important;
		max-height: calc(100vw * 2160 / 5070) !important;
		margin: 0 !important;
		padding: 0 !important;
		position: relative !important;
		top: -10px !important;
		left: 0 !important;
		right: 0 !important;
		transform: translateY(-10px) !important;
		background: #000000 !important;
		overflow: hidden !important;
		z-index: 1 !important;
		/* FORÇAR: Colar no header */
		margin-top: -10px !important;
		padding-top: 0 !important;
		/* FORÇAR: Altura exata do vídeo */
		box-sizing: border-box !important;
	}
	
	/* FORÇAR: Seção evento colada e subida para cobrir verde */
	#evento {
		margin: 0 !important;
		padding: 0 !important;
		position: relative !important;
		top: -50px !important;
		background: #000000 !important;
		transform: translateY(-50px) !important;
		margin-top: -50px !important;
		z-index: 2 !important;
	}
	
	/* FORÇAR: Vídeo preenchendo tudo e colado no topo */
	.inicio__video {
		position: absolute !important;
		top: -15px !important;
		left: 0 !important;
		width: 100% !important;
		height: calc(100% + 15px) !important;
		object-fit: cover !important;
		object-position: center top !important;
		margin: 0 !important;
		padding: 0 !important;
		background: #000000 !important;
		z-index: 1 !important;
		/* FORÇAR: Colar no topo da seção */
		margin-top: -15px !important;
		padding-top: 0 !important;
		transform: translateY(-15px) !important;
	}
	
	/* FORÇAR: Seção inicio colada no header */
	.header + .inicio,
	.header + section#inicio {
		margin-top: -15px !important;
		padding-top: 0 !important;
		position: relative !important;
		top: -15px !important;
		transform: translateY(-15px) !important;
	}
	
	/* FORÇAR: Main colado no header */
	main {
		margin-top: 0 !important;
		padding-top: 0 !important;
		position: relative !important;
		top: 0 !important;
	}
	
	/* FORÇAR: Segunda seção cobrindo verde */
	.inicio + #evento,
	section#inicio + #evento {
		margin-top: -50px !important;
		padding-top: 0 !important;
		position: relative !important;
		top: -50px !important;
		transform: translateY(-50px) !important;
		z-index: 2 !important;
		background: #000000 !important;
	}
	
	/* FORÇAR: Container da segunda seção */
	#evento .container {
		margin-top: 0 !important;
		padding-top: 50px !important;
		background: #000000 !important;
	}
	
	/* FORÇAR: Container da primeira seção com altura exata */
	.inicio .container {
		height: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
		background: #000000 !important;
		overflow: hidden !important;
		box-sizing: border-box !important;
	}
	
	/* FORÇAR: Todos os elementos da primeira seção */
	.inicio * {
		margin: 0 !important;
		padding: 0 !important;
		box-sizing: border-box !important;
	}
	
	/* Mostrar vídeo em dispositivos móveis */
	.inicio__video {
		display: block !important;
	}
	
	/* Background de fallback caso o vídeo não carregue */
	.inicio {
		background-image: url('assets/img/Background/banner_2.webp') !important;
		background-size: contain !important;
		background-position: center center !important;
		background-repeat: no-repeat !important;
	}
}