.header {
    width: 100%;
    max-width: 1392px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto 8px auto; /* Center the header */
    
    position: fixed;
    top: 4;
    left: 0;
    right: 0;
    z-index: 18;
	background-color: #e8edf8 !important; /* Forzar el color de fondo */
	font-family: var(--font-bagoss-regular);

}

.header svg {
	min-width: 100px;
}

.navigation_actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-l, 24px);
	margin-right: 32px;
}

.navigation_actions > a {
	color: var(--text-text-default, #1f2733);
	font-size: 18px;
	font-style: normal;
	
	line-height: 24px; /* 133.333% */
	letter-spacing: 0.18px;
	position: relative;
}

.navigation_actions > a::before {
	transition: 300ms;
	height: 2px;
	content: '';
	position: absolute;
	background-color: #1f2733;
}

.navigation_actions > a::before {
	width: 0%;
	bottom: -10px;
}

.navigation_actions > a:hover::before {
	width: 100%;
}

.auth_actions {
	display: flex;
    align-items: center;
    gap: 16px; /* Space between the buttons */
}



.text-button {
	font-family: var(--font-bagoss-medium);
  	font-size: 16px;
  	font-style: normal;
  	font-weight: 500px;
  	line-height: 20px;
  	letter-spacing: 0.32px;
    background: none;
	margin-left: 43px;
    border: none;
    color: #1D53BF;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease-in-out;
}

text-button a {
    color: #1D53BF;
    text-decoration: none;
}

.text-button:hover {
    transform: translateY(-3px);
}



.main-button {
    background: #1D53BF;
    color: #e8edf8 ;

    padding: 9px 28px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.main-button:hover {
    background: #1543a1;
    transform: translateY(-3px);
}

.main-button a {
    color:#e8edf8;
    text-decoration: none;
}

.main-button a:hover {
    text-decoration: none;
}


.mobile_menu {
	display: none;
	cursor: pointer;
}



.dropdown {
	width: max-content;
	background-color: #e8edf8 !important; /* Forzar el color de fondo */
	border-radius: 8px;
	color: #1f2733;
	padding: 8px 12px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: absolute;
	top: 43px;
	right: 0;
	z-index: 12;
}

@media (max-width: 1024px) {
	.navigation_actions > a {
		display: none;
	}

	.auth_actions > button:first-child {
		display: none;
	}

	.mobile_menu {
		display: flex;
		align-items: center;
		gap: 8px;
		margin-left: 1.5rem;
		position: relative;
	}

	.burger_text {
		color: var(--text-text-emphasized, #1d53bf);
		font-family: var(--font-bagoss);
		font-size: 18px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px; /* 133.333% */
		letter-spacing: 0.18px;
	}
}

@media (max-width: 568px) {
	.burger_text {
		display: none;
	}
}
