/* Estilos de header migrados del proyecto React */
.header {
	background-color: transparent; /* Fondo transparente para mostrar el body */
	position: relative;
	width: 100%;
	padding: 20px 0;
}

.headerContainer {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

/* Logo */
.logoContainer {
	display: flex;
	align-items: center;
}

.logoLink {
	display: inline-block;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.logoLink:hover {
	opacity: 0.8;
}

.logo {
	height: 60px;
	width: auto;
	display: block;
}

/* Navegación */
.navigation {
	display: flex;
	gap: 40px;
	align-items: center;
}

.navLink {
	color: #D6E0E5;
	font-size: 18px;
	font-weight: 400;
	text-decoration: none;
	transition: color 0.3s ease;
	/* Fuente actualizada */
	font-family: 'Atkinson Hyperlegible Next', 'Atkinson Hyperlegible', sans-serif;
}

.navLink:hover {
	color: #ffffff;
}

/* Botón DONA */
.donateButton {
	background-color: #FFC229;
	color: #000000;
	border: none;
	border-radius: 8px;
	padding: 12px 32px;
	font-size: 16px;
	font-weight: 700;
	/* Fuente actualizada */
	font-family: 'Atkinson Hyperlegible Next', 'Atkinson Hyperlegible', sans-serif;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.donateButton:hover {
	background-color: #FFC229;
	transform: translateY(-2px);
}

.donateButton:active {
	transform: translateY(0);
}

/* Botón hamburguesa */
.menuToggle {
	display: none;
	background: transparent;
	border: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.menuToggle:hover {
	background-color: rgba(255, 255, 255, 0.08);
}

.menuIcon {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
	transition: opacity 0.2s ease;
}

.menuIconClose {
	display: none;
}

.menuToggle.isActive .menuIconOpen {
	display: none;
}

.menuToggle.isActive .menuIconClose {
	display: block;
}

/* Responsive tablet */
@media (max-width: 1024px) {
	.headerContainer {
		padding: 0 28px;
	}

	.logo {
		height: 52px;
	}

	.navigation {
		gap: 28px;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.headerContainer {
		padding: 0 20px;
		flex-wrap: wrap;
		gap: 20px;
	}

	.menuToggle {
		display: inline-flex;
	}

	.navigation {
		/* Menú desplegable oculto por defecto en móvil */
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(12, 22, 41, 0.96);
		backdrop-filter: blur(8px);
		border-top: 1px solid rgba(255,255,255,0.08);
		padding: 14px 20px 18px;
		flex-direction: column;
		gap: 14px;
		z-index: 10;
	}

	.navigation.isOpen {
		display: flex;
	}

	.donateButton {
		order: 2;
	}

	.navLink {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	/* En móviles pequeños, mejorar clicabilidad */
	.navigation {
		gap: 16px;
	}

	.logo {
		height: 46px;
	}

	.donateButton {
		width: 100%;
		order: 3;
	}
}

