/* ===== NAVBAR ===== */
* {
	box-sizing: border-box;
}

.navbar {
	width: 100%;
	height: 80px;
	background-color: var(--verde-oscuro);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
}

/* LOGO + TEXTO */
.logo-container {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo {
	width: 180px;
	object-fit: contain;
}

/*NOMBRE DEL USUARIO Y ROL*/
.user-info {
	color: var(--blanco);
	font-size: 0.9rem;
	margin-left: auto;
	margin-right: 20px;
	font-weight: 500;
}

/*NOMBRE DE LA CLÍNICA*/
.brand-name {
	color: var(--blanco);
	font-size: 20px;
	font-weight: bold;
}

/* HAMBURGER */
.hamburger {
	font-size: 28px;
	padding: 6px;
	color: var(--blanco);
	cursor: pointer;
	display: block;
}

/* MENÚ MÓVIL HORIZONTAL*/
/*.mobile-menu {
	position: absolute;
	top: 80px;
	right: 0;
	background-color: var(--verde-oscuro);
	width: 220px;
	display: none;
	flex-direction: column;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.mobile-menu.active {
	display: flex;
	opacity: 1;
	transform: translateY(0);
}
*/
/* MENÚ MÓVIL LATERAL */
.mobile-menu {
	position: fixed;
	top: 0;
	left: -260px;
	width: 220px;
	height: 100vh;
	background-color: var(--verde-oscuro);
	display: flex;
	flex-direction: column;
	padding-top: 90px;
	box-shadow: var(--sombra-card);
	transition: left .3s ease;
	z-index: 9998;
}

.mobile-menu a {
	padding: 18px 22px;
	font-size: 15px;
	color: var(--blanco);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	transition: background-color .2s ease;
}

.mobile-menu.active {
	left: 0;
}

.mobile-menu a:hover {
	background-color: var(--verde-medio);
}

.mobile-menu::before {
	content: "Menú";
	position: absolute;
	top: 25px;
	left: 22px;
	font-size: 18px;
	font-weight: bold;
	color: var(--blanco);
}

/* MÓVIL RESPONSIVE */
@media ( max-width :768px) {
	.navbar {
		height: 70px;
		padding: 0 16px;
	}
	.logo {
		width: 110px;
	}
	.brand-name {
		font-size: 16px;
	}
	.user-info {
		font-size: .7rem;
		max-width: 90px;
		margin-right: 10px;
		text-align: right;
		display: none;
	}
}
