:root {
	--cnvs-themecolor: #00d0f9;
	--cnvs-themecolor-rgb: 10, 60, 63;
	--cnvs-owl-nav-sizes: 60px;
}

* {
	font-family: "komet", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
	font-family: "komet", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background-image: url('../images/bg_compressed.avif');
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.button,
.btn {
	text-transform: uppercase;
}

.light-blue-text {
	color: var(--cnvs-themecolor);
}

#wrapper {
	min-height: 100vh;
	background-color: transparent;
}

@media (min-width: 992px) {
	#header .primary-menu .menu-item {
		position: relative;
	}

	#header .primary-menu .menu-link {
		position: relative;
		z-index: 1;
		transition: color 0.3s ease, transform 0.3s ease;
	}

	#header .primary-menu .menu-link::before {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		width: 0;
		height: 0;
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.15);
		transform: translate(-50%, -50%) scale(0.6);
		opacity: 0;
		transition:
			width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
			height 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
			opacity 0.3s ease,
			transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
		pointer-events: none;
		filter: blur(10px);
	}

	#header .primary-menu .menu-item:hover>.menu-link,
	#header .primary-menu .menu-link:focus-visible {
		transform: translateY(-1px);
	}

	#header .primary-menu .menu-item:hover>.menu-link::before,
	#header .primary-menu .menu-link:focus-visible::before {
		width: 4em;
		height: 4em;
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

@media (min-width: 992px) {
	#header {
		margin: 0 20px;
	}

	#header-wrap .container-expofacic {
		background-color: rgba(0, 208, 249, 0.2) !important;
		backdrop-filter: blur(3px);
		max-width: 1800px;
		margin: auto;
		padding: 0 30px;
		border-radius: 65px;
		transition: max-width 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease;

		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
	}

	#header.sticky-header #header-wrap .container-expofacic {
		max-width: 100%;
		border-radius: 0;
		background-color: rgb(0 134 160 / 35%) !important;
	}
}

#logo img {
	max-height: 40px;
}


#copyrights {
	background-color: #005396 !important;
	border: 0px;
}

.bg-color-footer {
	background-color: rgba(0, 208, 249, 0.4) !important;
	border-radius: 65px;
}

.slider-banner {
	max-width: 1440px;
	margin: auto;
}

.slider-banner img {
	border-radius: 65px;
}

.bilhete-card {
	border-radius: 65px;
	background-color: rgba(0, 208, 249, 0.4);
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	transform: translateY(0) scale(1);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.bilhete-card:hover {
	background-color: rgba(0, 208, 249, 0.6);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
	transform: translateY(-4px) scale(1.03);
}

.bilhete-card img {
	border-radius: 50px;
}

.bilhete-card-image {
	width: 100%;
}

.bilhete-card-button {
	background: transparent;
	color: #fff;
	width: auto;
	padding: 0.65rem 2.5rem;
	box-shadow: 0 0 0 2px #fff;
	font-family: "komet", sans-serif;
	font-weight: 700;
	border: none;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
	position: relative;
	overflow: hidden;
}

.bilhete-card-button .bilhete-label-default,
.bilhete-card-button .bilhete-label-hover {
	display: inline-block;
}

.bilhete-card-button .bilhete-label-default {
	position: relative;
	transition: opacity 0.15s ease, transform 0.25s ease;
}

.bilhete-card-button .bilhete-label-hover {
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) translateY(6px);
	white-space: nowrap;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.bilhete-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.bilhete-card-button:hover,
.bilhete-card-button:focus {
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(0, 208, 249, 1) 100%);
	color: #005396;
	box-shadow: inset 0 0 0 2px transparent;
	transform: translateY(-1px) scale(1.03);
	outline: none;
}

.bilhete-card:hover .bilhete-card-button {
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(0, 208, 249, 1) 100%);
	color: #005396;
	box-shadow: inset 0 0 0 2px transparent;
	transform: translateY(-1px) scale(1.03);
}

.bilhete-card:hover .bilhete-card-button .bilhete-label-default,
.bilhete-card-button:hover .bilhete-label-default {
	opacity: 0;
	transform: translateY(-6px);
}

.bilhete-card:hover .bilhete-card-button .bilhete-label-hover,
.bilhete-card-button:hover .bilhete-label-hover {
	opacity: 1;
	transform: translate(-50%, -50%) translateY(0);
}

.bilhete-header-button {
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(0, 208, 249, 1) 100%);
	color: #005396;
	padding: 0.55rem 1.9rem;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
	font-family: "komet", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 700;
	border: none;
	border-radius: 999px;
	transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.18s ease-out;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	white-space: nowrap;
	transform: scale(1);
}

.bilhete-header-button:hover,
.bilhete-header-button:focus {
	background: #005396;
	color: #fff;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
	transform: scale(1.03);
	outline: none;
}

@keyframes pulseWhiteBoxShadow {
	0% {
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(255, 255, 255, 0.55);
	}

	70% {
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05), 0 0 0 16px rgba(255, 255, 255, 0);
	}

	100% {
		box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05), 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.pulse-white-boxshadow {
	animation: pulseWhiteBoxShadow 2s infinite ease-out;
}

@media (prefers-reduced-motion: reduce) {
	.pulse-white-boxshadow {
		animation: none;
	}
}

@media (max-width: 991.98px) {
	.bilhete-header-button {
		padding: 0.45rem 1.4rem;
		font-size: 0.85rem;
	}
}


.is-expanded-menu #header.transparent-header.floating-header .container-expofacic {
	backdrop-filter: blur(15px);
}

.slider-banner-img {
	display: block;
	height: auto;
	width: auto;
	margin: 0 auto;
}

.social-icons-footer .social-icon {
	background-color: rgba(255, 255, 255, 0.4);
	border: 0;
	border-radius: 10px;
	transition: all 0.3s ease;
}

.social-icons-footer .social-icon:hover {
	background-color: rgb(255, 255, 255);
}


.social-icons-footer .social-icon i {
	color: #005396;
}

.first-menu-footer .menu-item a {
	font-family: "komet", sans-serif;
	font-weight: 700;
	color: #fff !important;
	text-transform: uppercase;
}

.second-menu-footer .menu-item a {
	font-family: "komet", sans-serif;
	font-weight: 500;
	color: #fff !important;
	opacity: 0.4;
	transition: all 0.3s ease;
}

.first-menu-footer li,
.second-menu-footer li {
	list-style-type: none;
}

.second-menu-footer .menu-item a:hover {
	opacity: 1;
}

.slider-element .owl-dots {
	position: relative;
}

.owl-carousel .owl-dots .owl-dot {
	background-color: #002b6e !important;
	width: 12px !important;
	height: 12px !important;
	border: 0 !important
}

.owl-carousel {
	border-radius: 65px !important;
}

.slider-element {
	overflow: visible !important;
}

.logo-footer {
	max-height: 100px;
}

.owl-next {
	right: 0 !important;
}

.me-parallax-clip {
	display: inline-block;
}

.me-parallax {
	will-change: transform;
	transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.02s;
}

@media (prefers-reduced-motion: reduce) {
	.me-parallax {
		transition: none;
		transform: none !important;
	}
}

.contactos-image {
	text-align: center;
}

.contactos-image img {
	max-height: 150px;
	margin-bottom: 20px;
}

.contactos-image-title {
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 0;
}

.contactos-image-description {
	color: #fff;
	font-size: 0.95rem;
	line-height: 1.45;
}

.contactos-image-description:hover {
	color: #fff;
	opacity: 0.4;
	text-decoration: underline;
}

/* Viewport = header + conteúdo + footer; o conteúdo cresce e o footer fica no fundo */
body.page-contactos #wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

body.page-contactos #content.contactos-page {
	flex: 1 1 auto;
	min-height: 0;
}

.termos-page-content {
	padding: 0 0 2rem;
}

.termos-intro {
	font-size: 1.05rem;
	line-height: 1.65;
}

.termos-heading {
	font-size: 1.35rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	letter-spacing: 0.02em;
}

.termos-heading:first-of-type {
	margin-top: 0;
}

.termos-text {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.termos-text:last-of-type {
	margin-bottom: 0;
}

.termos-list {
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
	line-height: 1.7;
}

.termos-list li {
	margin-bottom: 0.35rem;
}

.termos-page-content a.light-blue-text {
	text-decoration: underline;
	transition: opacity 0.2s ease;
}

.termos-page-content a.light-blue-text:hover {
	opacity: 0.9;
}

.stats-card {
	background: linear-gradient(135deg, rgba(0, 208, 249, 0.5) 0%, rgba(0, 83, 150, 0.5) 100%);
	border-radius: 35px;
	padding: 2rem;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.stats-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.4);
}

.stats-number {
	font-size: clamp(1.5rem, 5vw, 2rem);
	color: #fff;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.75rem;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.stats-label {
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	opacity: 0.95;
}

.numbers-expositores {
	width: auto;
	height: 130px;
}

.expo-metrics-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
}

.expo-metrics-image {
	max-height: 200px;
	width: auto;
	max-width: calc((100% - 3rem) / 3);
	object-fit: contain;
}

.sector-card {
	background-color: rgba(0, 208, 249, 0.4);
	border-radius: 45px;
	padding: 2.5rem 2rem;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	border: 2px solid transparent;
}

.sector-card:hover {
	background-color: rgba(0, 208, 249, 0.5);
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
}

.sector-title {
	font-size: 1.125rem;
	font-weight: 500;
}


.expo-step-form {
	background-color: transparent;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.expo-steps-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 0.9rem;
}

.expo-step-dot {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(0, 83, 150, 0.35);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.45rem;
	font-weight: 700;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.expo-step-dot.is-active,
.expo-step-dot.is-done {
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(0, 208, 249, 1) 100%);
	color: #005396;
	border-color: transparent;
}

.expo-step-dot.is-active {
	transform: scale(1.06);
}

.expo-step-title {
	font-size: 1.35rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1.5rem;
}

.expo-step-content {
	display: none;
}

.expo-step-content.is-active {
	display: block;
}

.expo-step-label {
	display: block;
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.35rem;
}

.expo-step-input {
	width: 100%;
	min-height: 52px;
	border-radius: 999px;
	border: 0;
	outline: 0;
	background: rgb(67 198 233 / 50%);
	color: #fff;
	padding: 0.7rem 1.25rem;
}

.expo-step-input::placeholder {
	color: #fff;
	opacity: 1;
	font-weight: 700;
}

.expo-step-input::-webkit-input-placeholder {
	color: #fff;
	opacity: 1;
	font-weight: 700;
}

.expo-step-input::-moz-placeholder {
	color: #fff;
	opacity: 1;
	font-weight: 700;
}

.expo-step-input:-ms-input-placeholder {
	color: #fff;
	opacity: 1;
	font-weight: 700;
}

.expo-step-input::-ms-input-placeholder {
	color: #fff;
	opacity: 1;
	font-weight: 700;
}

.expo-step-textarea {
	min-height: 140px;
	border-radius: 22px;
	resize: vertical;
}

select.expo-step-input {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.25rem center;
	background-size: 12px;
	padding-right: 3rem;
	cursor: pointer;
}

select.expo-step-input option {
	background: #1a1a1a;
	color: #fff;
	padding: 0.5rem;
}

.expo-step-check {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	color: #fff;
	font-weight: 500;
}

.expo-step-check input {
	margin-top: 0.2rem;
}

.expo-step-check a {
	color: #fff;
	text-decoration: underline;
}

.expo-step-note {
	background: rgba(67, 198, 233, 0.22);
	border-radius: 18px;
	padding: 0.85rem 1rem;
	font-weight: 600;
	line-height: 1.45;
}

.expo-step-summary {
	background: rgba(67, 198, 233, 0.2);
	border-radius: 20px;
	padding: 1rem;
}

.expo-step-summary-row {
	color: #fff;
	padding: 0.35rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.expo-step-summary-row:last-child {
	border-bottom: 0;
}

.expo-step-summary-label {
	font-weight: 700;
}

.expo-step-summary-empty {
	color: #fff;
	opacity: 0.85;
}

.expo-energy-group {
	display: flex;
	flex-direction: column;
}

.expo-energy-head {
	background: #0f5a97;
	color: #fff;
	border-radius: 999px;
	padding: 0.55rem 1rem;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 700;
}

.expo-energy-option {
	display: grid;
	grid-template-columns: 30px 1fr auto;
	align-items: center;
	gap: 0.65rem;
	background: rgba(67, 198, 233, 0.3);
	border-radius: 999px;
	padding: 12px;
	transition: background 0.2s ease, transform 0.2s ease;
}

.expo-energy-option:has(input:checked) {
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(0, 208, 249, 1) 100%);
}

.expo-energy-option:has(input:checked) .expo-energy-label,
.expo-energy-option:has(input:checked) .expo-energy-price {
	color: #005396;
}

.expo-energy-option input[type="radio"],
.expo-energy-option input[type="checkbox"] {
	appearance: none;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.7);
	background: transparent;
	position: relative;
	cursor: pointer;
}

.expo-energy-option input[type="radio"]:checked::after,
.expo-energy-option input[type="checkbox"]:checked::after {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: #0f5a97;
}

.expo-energy-label,
.expo-energy-price {
	color: #fff;
	font-weight: 700;
	border-radius: 0;
	padding: 0;
	line-height: 1.1;
}

.expo-energy-price {
	min-width: 96px;
	text-align: center;
}

.expo-energy-option-inline {
	margin-top: 0.15rem;
}

.expo-energy-extra {
	margin-top: 40px;
}

.expo-step-actions {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.expo-step-btn-prev[disabled] {
	opacity: 0.5;
	pointer-events: none;
}

.expo-step-btn-submit {
	display: none;
}

.expo-step-btn-regulamento {
	background: rgba(67, 198, 233, 0.5);
	color: #fff;
	border: none;
	box-shadow: none;
	padding: 0.55rem 1.9rem;
	font-weight: 700;
	transition: background 0.2s ease, transform 0.2s ease;
	flex: 0 0 100%;
	max-width: max-content;
	margin-inline: auto;
}

.expo-step-btn-regulamento:hover,
.expo-step-btn-regulamento:focus {
	background: rgba(67, 198, 233, 0.65);
	color: #fff;
	transform: scale(1.02);
}

@media (max-width: 576px) {
	:root {
		--cnvs-owl-nav-sizes: 28px;
	}
}

@media (min-width: 992px) {
	.slider-banner {
		max-width: min(1440px, calc(100% - 140px));
	}
}

@media (min-width: 992px) and (max-width: 1200px) {
	.slider-element .owl-nav [class*=owl-] {
		left: 0 !important;
	}

	.slider-element .owl-nav .owl-next {
		right: 0 !important;
	}
}



@media (max-width: 992px) {
	:root {
		--cnvs-owl-nav-sizes: 40px;
	}

	.slider-element {
		padding-inline: 0;
	}

	.slider-element .owl-nav [class*=owl-] {
		left: 5px !important;
	}

	.slider-element .owl-nav .owl-next {
		right: 5px !important;
	}

	#header {
		padding: 10px;
		background-color: rgba(0, 208, 249, 0.1);
		backdrop-filter: blur(10px);
	}

	.owl-carousel .owl-dots .owl-dot {
		width: 8px !important;
		height: 8px !important;
	}

	.content-wrap {
		padding: 40px 0;
	}

	.menu-link {
		--cnvs-primary-menu-padding-y: 5px;
		font-size: 14px;
	}

	#header .menu-link {
		font-size: 12px;
		padding: 10px 0px;
		font-weight: 500;
	}

	.owl-carousel {
		border-radius: 0px !important;
	}

	.slider-banner img {
		border-radius: 20px;
	}

	.logo-footer {
		max-height: 40px;
	}

	#footer .footer-widgets-wrap {
		padding: 30px 0;
	}

	.expo-step-form {
		padding: 0;
		border-radius: 0;
	}

	.expo-step-actions .text-center {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
	}

	.expo-step-actions .expo-step-btn-prev,
	.expo-step-actions .expo-step-btn-next,
	.expo-step-actions .expo-step-btn-submit,
	.expo-step-actions .expo-step-btn-regulamento {
		width: min(100%, 280px) !important;
		min-height: 46px;
		padding: 0.6rem 1.2rem !important;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-inline: auto;
	}

	.expo-step-title {
		font-size: 1.1rem;
	}

	.expo-step-label {
		font-size: 0.95rem;
	}

	.expo-step-dot {
		width: 38px;
		height: 38px;
		font-size: 1.2rem;
	}

	.contactos-image img {
		border-radius: 24px;
	}

	.bilhete-header-button {
		background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(0, 208, 249, 1) 100%);
		color: #005396;
		box-shadow: 0;
		outline: none;
	}

	.numbers-expositores {
		width: auto;
		height: 120px;
	}

	.expo-metrics-image {
		height: 100px;
	}

	.stats-card {
		border-radius: 30px;
		padding: 1.5rem;
	}


	.sector-card {
		border-radius: 30px;
		padding: 2rem 1.5rem;
	}

	.sector-title {
		font-size: 1rem;
	}
	.contactos-image img {
		max-height: 100px;
		margin-bottom: 20px;
	}
}