header {
	background-color: rgba(255, 255, 255, 0.363);
	padding: 10px 50px;
	position: sticky;
	top: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

header img {
	margin-right: 10px;
}

.nombre-pagina {
	font-size: 24px;
	font-weight: bold;
	color: rgba(51, 51, 51, 0.8);
}

.logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-link:hover .nombre-pagina {
	cursor: pointer;
}

.nav-center-no-bulma {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.nav-right-no-bulma {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
}

.vuelos {
	font-family: 'Inter', sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: bold;
	color: black;
}

.paises {
	font-family: 'Inter', sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: bold;
	color: black;
}

nav {
	display: flex;
	align-items: center;
}

nav a {
	text-decoration: none;
	color: rgba(51, 51, 51, 0.6);
	font-size: 15px;
	padding: 10px 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
}

nav a i {
	margin-right: 5px;
}

nav a:hover {
	color: black;
	transition: 0.3s;
}

.dropdown.is-hoverable {
    display: flex;
    align-items: center;
}

.dropdown-menu {
    min-width: 150px;
    max-width: 100%;
    white-space: nowrap;
}

.dropdown-trigger {
    font-family: 'Inter', sans-serif;
    font-optical-sizing: auto;
	font-weight: 700;
    font-style: bold;
	cursor: pointer;
	color: rgba(51, 51, 51, 0.6);
	font-size: 15px;
}

.dropdown-trigger:hover {
    color: black;
	transition: 0.3s;
}

.boton-registro {
	background-color: rgb(72, 95, 199);
	border: none;
	border-radius: 5px;
	transition: 0.3s;
	font-family: 'Inter', sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: bold;
	color: white;
}

.boton-registro:hover {
	background-color: rgb(12, 41, 110);
	color: white;
}