* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f2f2f2;
}

/* Encabezado principal */
.encabezado-principal {
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #111111, #333333);
    border-bottom: 5px solid #b30000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Contenedor */
.encabezado-contenedor {
    width: 100%;
    height: 100%;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Secciones */
.encabezado-izquierda,
.encabezado-centro,
.encabezado-derecha {
    display: flex;
    align-items: center;
}

.encabezado-izquierda {
    width: 25%;
    justify-content: flex-start;
}

.encabezado-centro {
    width: 50%;
    justify-content: center;
}

.encabezado-derecha {
    width: 25%;
    justify-content: flex-end;
    gap: 12px;
}

/* Botón menú */
.btn-menu {
    width: 45px;
    height: 45px;
    background-color: #b30000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 26px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-menu:hover {
    background-color: #8a0000;
    transform: scale(1.05);
}

/* Logo */
.logo-empresa {
    max-height: 65px;
    max-width: 260px;
    object-fit: contain;
    background: transparent;
}

/* Usuario */
.foto-perfil {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #b30000;
    background-color: white;
}

.foto-perfil.defecto {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b30000;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.usuario-info {
    display: flex;
    flex-direction: column;
    color: white;
}

.nombre-usuario {
    font-size: 15px;
    font-weight: bold;
}

.rol-usuario {
    font-size: 13px;
    color: #d4d4d4;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .encabezado-contenedor {
        padding: 0 12px;
    }

    .encabezado-izquierda {
        width: 20%;
    }

    .encabezado-centro {
        width: 60%;
    }

    .encabezado-derecha {
        width: 20%;
    }

    .logo-empresa {
        max-height: 55px;
        max-width: 180px;
    }

    .usuario-info {
        display: none;
    }

    .btn-menu {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }
}